summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/contactlist/kopetegrouplistaction.h
blob: 1b1846e1637cc6e7b8c2f7233fe7ad108dd3ef4c (plain)
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
/*
    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
  TQ_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