00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __konq_actions_h__
00021 #define __konq_actions_h__ "$Id: konq__actions_8h-source.html,v 1.1 2004/10/20 19:16:33 brockers Exp $"
00022
00023 #include <qguardedptr.h>
00024
00025 #include <kaction.h>
00026 #include <qlist.h>
00027
00028 class QLabel;
00029 class QPopupMenu;
00030
00031 class KonqLogoAction : public KAction
00032 {
00033 Q_OBJECT
00034 public:
00035 KonqLogoAction( const QString& text, int accel = 0,
00036 QObject* parent = 0, const char* name = 0 );
00037 KonqLogoAction( const QString& text, int accel,
00038 QObject* receiver, const char* slot, QObject* parent, const char* name = 0 );
00039 KonqLogoAction( const QString& text, const QIconSet& pix, int accel = 0,
00040 QObject* parent = 0, const char* name = 0 );
00041 KonqLogoAction( const QString& text, const QIconSet& pix, int accel,
00042 QObject* receiver, const char* slot, QObject* parent, const char* name = 0 );
00043
00044
00045
00046
00047 virtual int plug( QWidget *widget, int index = -1 );
00048
00049 void start();
00050 void stop();
00051
00052 private:
00053 QStringList iconList;
00054 };
00055
00056 #endif