/* kopetegrouplistaction.h Copyright (c) 2005 Olivier Goffart Kopete (c) 2005 by the Kopete developers ************************************************************************* * * * 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 /** * Action used for Copy To and Move To */ class KopeteGroupListAction : public TDEListAction { TQ_OBJECT public: KopeteGroupListAction( const TQString &, const TQString &, const TDEShortcut &, const TQObject *, const char *, TQObject *, const char * ); ~KopeteGroupListAction(); protected slots: void slotUpdateList(); private: TQStringList m_groupList; }; #endif