X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fplugins%2Fplugin.h;h=cea5e5475c29ade687c93ba74a91a4cc5d2658b7;hp=826748c71450f292bd69f8e92c062182abe5fe4c;hb=ed2415135359b4f8a3f75f2634e028500c08c1fe;hpb=6869909402a4dc807ee5261cc2a0999ac33053ee diff --git a/src/plugins/plugin.h b/src/plugins/plugin.h index 826748c7..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,17 +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