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.
tdenetwork/kopete/libkopete/kopeteawayaction.cpp

135 lines
3.9 KiB

/*
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"