/*****************************************************************************/ /* test.h - Change the properties to be the same of first selected */ /* */ /* Copyright (C) 2011 Rallaz, rallazz@gmail.com */ /* */ /* This library is free software, licensed under the terms of the GNU */ /* General Public License as published by the Free Software Foundation, */ /* either version 2 of the License, or (at your option) any later version. */ /* You should have received a copy of the GNU General Public License */ /* along with this program. If not, see . */ /*****************************************************************************/ #ifndef SAMEPROP_H #define SAMEPROP_H #include "qc_plugininterface.h" class LC_SameProp : public QObject, QC_PluginInterface { Q_OBJECT Q_INTERFACES(QC_PluginInterface) public: virtual PluginCapabilities getCapabilities() const; virtual QString name() const; virtual void execComm(Document_Interface *doc, QWidget *parent, QString cmd); }; #endif // SAMPLE_H