1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
kopetehistorydialog.h - Kopete Away Action
Copyright (c) 2003 Jason Keirstead <jason@keirstead.org>
Kopete (c) 2002 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* 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 <tdeversion.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 <jason@keirstead.org>
*/
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 TQString &text, const TQIconSet &pix,
const KShortcut &cut, const TQObject *receiver, const char *slot,
TQObject *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 TQString & )
* @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 TQString &text, const TQIconSet &pix,
const KShortcut &cut, const TQObject *receiver, const char *slot,
TQObject *parent, const char *name = 0);
/**
* Destructor.
*/
~AwayAction();
signals:
/**
* @brief Emits when the user selects an away message
*/
void awayMessageSelected( const TQString & );
/**
* same as above, but with the saved status
*/
void awayMessageSelected( const Kopete::OnlineStatus& , const TQString & );
private slots:
void slotAwayChanged();
void slotSelectAway( int index );
private:
class Private;
Private *d;
};
}
#endif
|