Show invite menu in wlm chat window immediately
[kdenetwork.git] / kopete / kopete / statusmenu / kopeteonlinestatusaction.h
blobbc9b07b2cbf6f22875a1a61afcefd2b1d578e4a2
1 /*
2 kopeteonlinestatusmanager.h
4 Copyright (c) 2004-2005 by Olivier Goffart <ogoffart@kde.org>
6 Kopete (c) 2004-2008 by the Kopete developers <kopete-devel@kde.org>
8 *************************************************************************
9 * *
10 * This library is free software; you can redistribute it and/or *
11 * modify it under the terms of the GNU Lesser General Public *
12 * License as published by the Free Software Foundation; either *
13 * version 2 of the License, or (at your option) any later version. *
14 * *
15 *************************************************************************
18 #ifndef KOPETEONLINESTATUSACTION_H
19 #define KOPETEONLINESTATUSACTION_H
21 #include <kaction.h>
23 namespace Kopete
25 class OnlineStatus;
27 /**
30 class OnlineStatusAction : public KAction
32 Q_OBJECT
33 public:
34 OnlineStatusAction ( const OnlineStatus& status, const QString &text, const QIcon &pix, QObject *parent );
35 ~OnlineStatusAction();
37 signals:
38 void activated( const Kopete::OnlineStatus& status );
39 private slots:
40 void slotActivated();
41 private:
42 class Private;
43 Private * const d;
46 } //END namespace Kopete
48 #endif
50 // vim: set noet ts=4 sts=4 sw=4: