/** \file LocalPluginOptions.h \brief To bind the options of the plugin, into unique group options \author alpha_one_x86 \version 0.3 \date 2010 \licence GPL3, see the file COPYING */ #ifndef LOCALPLUGINOPTIONS_H #define LOCALPLUGINOPTIONS_H #include #include "interface/OptionInterface.h" #include "OptionEngine.h" /** \brief To store the options That's allow to have mutualised way to store the options. Then the plugins just keep Ultracopier manage it, the portable version will store on the disk near the application, and the normal version will keep at the normal location. \see OptionEngine::OptionEngine() */ class LocalPluginOptions : public OptionInterface { Q_OBJECT public: explicit LocalPluginOptions(const QString &group); ~LocalPluginOptions(); /// \brief To add option group to options bool addOptionGroup(const QList > &KeysList); /*/// \brief To remove option group to options, removed to the load plugin bool removeOptionGroup();*/ /// \brief To get option value QVariant getOptionValue(const QString &variableName); /// \brief To set option value void setOptionValue(const QString &variableName,const QVariant &value); protected: //for the options OptionEngine *options; QString group; bool groupOptionAdded; /*public slots:-> disabled because the value will not externaly changed, then useless notification void newOptionValue(QString group,QString variable,QVariant value);*/ }; #endif // LOCALPLUGINOPTIONS_H