Checking in current work on settings dialogs. We will move away from SettingsInterface
[quassel.git] / src / plugins / plugin.h
index 6c4ef44..72268f6 100644 (file)
@@ -61,16 +61,20 @@ Q_DECLARE_INTERFACE(CorePluginInterface,
  * the application's settings dialog.
  * This is also used by built-in settings dialogs.
  */
+/*
 class SettingsInterface {
   public:
+    virtual ~SettingsInterface() {};
     virtual QString category() = 0;
     virtual QString title() = 0; 
     virtual QWidget *settingsWidget() = 0;
+    virtual void applyChanges() = 0;
 
 };
 
 Q_DECLARE_INTERFACE(SettingsInterface,
                     "eu.quassel.plugins.SettingsInterface/1.0");
+*/
 
 /** Plugins implementing this interface will be provided with the raw text the users enters.
  * The output they generate is in turn treated like generic user input. Note that the order in