/*************************************************************************** contactnotesplugin.h - description ------------------- begin : lun sep 16 2002 copyright : (C) 2002 by Olivier Goffart email : ogoffart @ kde.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. * * * ***************************************************************************/ #ifndef BABELFISHPLUGIN_H #define BABELFISHPLUGIN_H #include #include #include #include "kopeteplugin.h" class TQString; class TDEAction; class TDEActionCollection; namespace Kopete { class MetaContact; } /** * @author Olivier Goffart * * Kopete Contact Notes Plugin * */ class ContactNotesPlugin : public Kopete::Plugin { Q_OBJECT public: static ContactNotesPlugin *plugin(); ContactNotesPlugin( TQObject *parent, const char *name, const TQStringList &args ); ~ContactNotesPlugin(); TQString notes(Kopete::MetaContact *m); public slots: void setNotes(const TQString n, Kopete::MetaContact *m); private: static ContactNotesPlugin* pluginStatic_; private slots: // Private slots /** No descriptions */ void slotEditInfo(); }; #endif