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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
/*
kopeteaway.cpp - Kopete Away Action
Copyright (c) 2003 Jason Keirstead <jason@keirstead.org>
Kopete (c) 2002-2005 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. *
* *
*************************************************************************
*/
#include <tdelocale.h>
#include <tdeversion.h>
#include <kinputdialog.h>
#include <kstringhandler.h>
#include "kopeteawayaction.h"
#include "kopeteaway.h"
#include "kopeteonlinestatus.h"
namespace Kopete {
class AwayAction::Private
{
public:
Private(const OnlineStatus& s) : reasonCount(0) , status(s) {};
int reasonCount;
OnlineStatus status;
};
AwayAction::AwayAction(const TQString &text, const TQIconSet &pix, const TDEShortcut &cut,
const TQObject *receiver, const char *slot, TQObject *parent, const char *name )
: TDESelectAction(text, pix, cut, parent, name ) , d(new Private( OnlineStatus() ) )
{
TQObject::connect( Kopete::Away::getInstance(), TQT_SIGNAL( messagesChanged() ),
this, TQT_SLOT( slotAwayChanged() ) );
TQObject::connect( this, TQT_SIGNAL( awayMessageSelected( const TQString & ) ),
receiver, slot );
TQObject::connect( this, TQT_SIGNAL( activated( int ) ),
this, TQT_SLOT( slotSelectAway( int ) ) );
slotAwayChanged();
}
AwayAction::AwayAction( const OnlineStatus& status, const TQString &text, const TQIconSet &pix, const TDEShortcut &cut,
const TQObject *receiver, const char *slot, TQObject *parent, const char *name )
: TDESelectAction(text, pix, cut, parent, name ) , d(new Private( status ) )
{
TQObject::connect( Kopete::Away::getInstance(), TQT_SIGNAL( messagesChanged() ),
this, TQT_SLOT( slotAwayChanged() ) );
TQObject::connect( this, TQT_SIGNAL( awayMessageSelected( const Kopete::OnlineStatus &, const TQString & ) ),
receiver, slot );
TQObject::connect( this, TQT_SIGNAL( activated( int ) ),
this, TQT_SLOT( slotSelectAway( int ) ) );
slotAwayChanged();
}
AwayAction::~AwayAction()
{
delete d;
}
void AwayAction::slotAwayChanged()
{
TQStringList awayMessages = Kopete::Away::getInstance()->getMessages();
for( TQStringList::iterator it = awayMessages.begin(); it != awayMessages.end(); ++it )
{
(*it) = KStringHandler::rsqueeze( *it );
}
d->reasonCount = awayMessages.count();
TQStringList menu;
menu << i18n( "No Message" );
menu << i18n( "New Message..." );
menu << TQString() ; //separator
menu += awayMessages ;
setItems( menu );
setCurrentItem( -1 );
}
void AwayAction::slotSelectAway( int index )
{
//remove that crappy check mark cf bug 119862
setCurrentItem( -1 );
Kopete::Away *mAway = Kopete::Away::getInstance();
TQString awayReason;
// Index == -1 means this is a result of Global Away all.
// Use the last entered message (0)
if( index == -1 )
index = 0;
switch(index)
{
case 0:
awayReason = TQString();
break;
case 1:
bool ok;
awayReason = KInputDialog::getText( i18n( "New Away Message" ), i18n( "Please enter your away reason:" ) , TQString() , &ok );
if(!ok) //the user canceled
return;
if( !awayReason.isEmpty() )
Kopete::Away::getInstance()->addMessage( awayReason );
break;
case 2:
//not possible case, that's a separator
break;
default:
if( index-3 < d->reasonCount )
awayReason = mAway->getMessage( index-3 );
}
emit awayMessageSelected( awayReason ) ;
emit awayMessageSelected( d->status, awayReason );
}
} //END namespace Kopete
#include "kopeteawayaction.moc"
|