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/kopete/contactlist/kopetegrouplistaction.h

46 lines
1.2 KiB

/*
kopetegrouplistaction.h
Copyright (c) 2005 Olivier Goffart <ogoffart@ kde.org>
Kopete (c) 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. *
* *
*************************************************************************
*/
#ifndef KOPETEGRLISTACT_H
#define KOPETEGRLISTACT_H
#include <kaction.h>
/**
* Action used for Copy To and Move To
*/
class KopeteGroupListAction : public KListAction
{
Q_OBJECT
public:
KopeteGroupListAction( const TQString &, const TQString &, const KShortcut &,
const TQObject *, const char *, TQObject *, const char * );
~KopeteGroupListAction();
protected slots:
void slotUpdateList();
private:
TQStringList m_groupList;
};
#endif