X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fplugins%2Fplugin.h;h=cea5e5475c29ade687c93ba74a91a4cc5d2658b7;hp=6c4ef4424c3d956c2f1f1e9399e741b18f81fc3e;hb=dcba0652ac1275877b98b06d6482924ee6df0cd1;hpb=077d44f36d2f5c730283ef6be839aea7dd073d56 diff --git a/src/plugins/plugin.h b/src/plugins/plugin.h index 6c4ef442..cea5e547 100644 --- a/src/plugins/plugin.h +++ b/src/plugins/plugin.h @@ -1,11 +1,11 @@ /*************************************************************************** - * Copyright (C) 2005/06 by The Quassel Team * + * Copyright (C) 2005/06 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * * it 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. * + * (at your option) version 3. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -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