|
|
|
@ -27,9 +27,9 @@
|
|
|
|
|
#if defined (USE_KDE)
|
|
|
|
|
|
|
|
|
|
#define KQ_CLASSNAME(name) K##name
|
|
|
|
|
#define TDETQ_CLASSNAME(name) TDE##name
|
|
|
|
|
#define TDEQ_CLASSNAME(name) TDE##name
|
|
|
|
|
#define KQ_DECLARECLASS(name) class KQ##name : public K##name
|
|
|
|
|
#define TDETQ_DECLARECLASS(name) class TDEQ##name : public TDE##name
|
|
|
|
|
#define TDEQ_DECLARECLASS(name) class TDEQ##name : public TDE##name
|
|
|
|
|
|
|
|
|
|
#include <tdeapplication.h>
|
|
|
|
|
#include <tdemainwindow.h>
|
|
|
|
@ -86,15 +86,15 @@
|
|
|
|
|
#include <tqmap.h>
|
|
|
|
|
#include <tqeventloop.h>
|
|
|
|
|
|
|
|
|
|
class KQMainWindow : public TDETQ_CLASSNAME(MainWindow)
|
|
|
|
|
class KQMainWindow : public TDEQ_CLASSNAME(MainWindow)
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
KQMainWindow ( TQWidget * parent, const char * name, WFlags f )
|
|
|
|
|
: TDETQ_CLASSNAME(MainWindow) (parent, name, f) {};
|
|
|
|
|
: TDEQ_CLASSNAME(MainWindow) (parent, name, f) {};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class KQListView : public TDETQ_CLASSNAME(ListView)
|
|
|
|
|
class KQListView : public TDEQ_CLASSNAME(ListView)
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
KQListView(TQWidget *parent = 0, const char *name = 0, int f = 0);
|
|
|
|
@ -122,11 +122,11 @@ public:
|
|
|
|
|
: KQ_CLASSNAME(TabWidget) (parent, name, f) {};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class KTQPopupMenu : public TDETQ_CLASSNAME(PopupMenu)
|
|
|
|
|
class KTQPopupMenu : public TDEQ_CLASSNAME(PopupMenu)
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
KTQPopupMenu (TQWidget *parent = 0 )
|
|
|
|
|
: TDETQ_CLASSNAME(PopupMenu) (parent) {};
|
|
|
|
|
: TDEQ_CLASSNAME(PopupMenu) (parent) {};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#include <tqinputdialog.h>
|
|
|
|
|