33 #ifndef __CUSTOMACTIONS_H__
34 #define __CUSTOMACTIONS_H__
36 #include <tdeaction.h>
38 #include <tqstringlist.h>
42 class LabelAction : public TDEAction {
46 LabelAction( const TQString & text, TDEActionCollection * parent,
49 int plug( TQWidget * widget, int index=-1 );
52 class LineEditAction : public TDEAction {
56 LineEditAction( const TQString & text, TDEActionCollection * parent,
57 TQObject * receiver, const char * member, const char * name );
59 int plug( TQWidget * widget, int index=-1 );
62 TQString text() const;
63 void setText( const TQString & txt );
70 class ComboAction : public TDEAction {
74 ComboAction( const TQStringList & lst, TDEActionCollection * parent,
75 TQObject * receiver, const char * member, const char * name,
78 int plug( TQWidget * widget, int index=-1 );
|