diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | bcb704366cb5e333a626c18c308c7e0448a8e69f (patch) | |
tree | f0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /kopete/libkopete/kopeteawayaction.h | |
download | tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/libkopete/kopeteawayaction.h')
-rw-r--r-- | kopete/libkopete/kopeteawayaction.h | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/kopete/libkopete/kopeteawayaction.h b/kopete/libkopete/kopeteawayaction.h new file mode 100644 index 00000000..f8ab9d64 --- /dev/null +++ b/kopete/libkopete/kopeteawayaction.h @@ -0,0 +1,91 @@ +/* + kopetehistorydialog.h - Kopete Away Action + + Copyright (c) 2003 Jason Keirstead <[email protected]> + + Kopete (c) 2002 by the Kopete developers <[email protected]> + + ************************************************************************* + * * + * This library is free software; you can redistribute it and/or * + * modify it under the terms of the GNU Lesser General Public * + * License as published by the Free Software Foundation; either * + * version 2 of the License, or (at your option) any later version. * + * * + ************************************************************************* +*/ + +#ifndef KOPETEAWAYACTION_H +#define KOPETEAWAYACTION_H + +#include <kdeversion.h> +#include <kactionclasses.h> +#include <kaction.h> + +#include "kopete_export.h" + +namespace Kopete +{ + +class OnlineStatus; + +/** + * @class Kopete::AwayAction + * + * Kopete::AwayAction is a KAction that lets you select an away message + * from the list of predefined away messages, or enter a custom one. + * + * @author Jason Keirstead <[email protected]> + */ +class KOPETE_EXPORT AwayAction : public KSelectAction +{ + Q_OBJECT + public: + /** + * Constructor + * @p text, @p pix, @p cut, @p receiver, @p slot, @p parent and + * @p name are all handled by KSelectAction. + **/ + AwayAction(const QString &text, const QIconSet &pix, + const KShortcut &cut, const QObject *receiver, const char *slot, + QObject *parent, const char *name = 0); + + /** + * Constructor + * @param status the OnlineStatus that appears in the signal + * @param slot must have the following signature: ( const OnlineStatus &, const QString & ) + * @p text, @p pix, @p cut, @p receiver, @p slot, @p parent and + * @p name are all handled by KSelectAction. + **/ + AwayAction(const OnlineStatus &status, const QString &text, const QIconSet &pix, + const KShortcut &cut, const QObject *receiver, const char *slot, + QObject *parent, const char *name = 0); + + /** + * Destructor. + */ + ~AwayAction(); + + signals: + /** + * @brief Emits when the user selects an away message + */ + void awayMessageSelected( const QString & ); + + /** + * same as above, but with the saved status + */ + void awayMessageSelected( const Kopete::OnlineStatus& , const QString & ); + + private slots: + void slotAwayChanged(); + void slotSelectAway( int index ); + + private: + class Private; + Private *d; +}; + +} + +#endif |