You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.8 KiB
68 lines
1.8 KiB
/***************************************************************************
|
|
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 <tqobject.h>
|
|
#include <tqmap.h>
|
|
#include <tqstring.h>
|
|
|
|
#include "kopeteplugin.h"
|
|
|
|
class TQString;
|
|
class TDEAction;
|
|
class TDEActionCollection;
|
|
|
|
namespace Kopete { class MetaContact; }
|
|
|
|
/**
|
|
* @author Olivier Goffart <ogoffart @ kde.org>
|
|
*
|
|
* 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
|
|
|
|
|