summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/actiondnd.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/actiondnd.h')
-rw-r--r--kdevdesigner/designer/actiondnd.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/kdevdesigner/designer/actiondnd.h b/kdevdesigner/designer/actiondnd.h
index 560bcca4..8ee705c8 100644
--- a/kdevdesigner/designer/actiondnd.h
+++ b/kdevdesigner/designer/actiondnd.h
@@ -39,17 +39,17 @@
#include "../shared/widgetdatabase.h"
//class TQDesignerPopupMenu;
-class TQDesignerIndicatorWidget;
+class QDesignerIndicatorWidget;
class FormWindow;
class TQPopupMenu;
-class TQDesignerIndicatorWidget : public TQWidget
+class QDesignerIndicatorWidget : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
- TQDesignerIndicatorWidget( TQWidget *p )
+ QDesignerIndicatorWidget( TQWidget *p )
: TQWidget( p, "qt_dockwidget_internal" ) {
setBackgroundColor( red );
}
@@ -79,13 +79,13 @@ private:
static TQAction *the_action;
};
-class TQDesignerActionGroup : public TQActionGroup
+class QDesignerActionGroup : public TQActionGroup
{
Q_OBJECT
TQ_OBJECT
public:
- TQDesignerActionGroup( TQObject *tqparent )
+ QDesignerActionGroup( TQObject *tqparent )
: TQActionGroup( ::tqqt_cast<TQActionGroup*>(tqparent) ? tqparent : 0 ), wid( 0 ), idx( -1 ) { init(); }
void init();
@@ -115,15 +115,15 @@ private:
};
-class TQDesignerAction : public TQAction
+class QDesignerAction : public TQAction
{
Q_OBJECT
TQ_OBJECT
public:
- TQDesignerAction( TQObject *tqparent )
+ QDesignerAction( TQObject *tqparent )
: TQAction( ::tqqt_cast<TQActionGroup*>(tqparent) ? tqparent : 0 ), wid( 0 ), idx( -1 ), widgetToInsert( 0 ) { init(); }
- TQDesignerAction( TQWidget *w, TQObject *tqparent )
+ QDesignerAction( TQWidget *w, TQObject *tqparent )
: TQAction( ::tqqt_cast<TQActionGroup*>(tqparent) ? tqparent : 0 ), wid( 0 ), idx( -1 ), widgetToInsert( w ) { init(); }
void init();
@@ -152,13 +152,13 @@ private:
};
-class TQDesignerToolBarSeparator : public TQWidget
+class QDesignerToolBarSeparator : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
- TQDesignerToolBarSeparator( Qt::Orientation, TQToolBar *tqparent, const char* name=0 );
+ QDesignerToolBarSeparator( Qt::Orientation, TQToolBar *tqparent, const char* name=0 );
TQSize tqsizeHint() const;
Qt::Orientation orientation() const { return orient; }
@@ -172,13 +172,13 @@ private:
};
-class TQSeparatorAction : public TQAction
+class QSeparatorAction : public TQAction
{
Q_OBJECT
TQ_OBJECT
public:
- TQSeparatorAction( TQObject *tqparent );
+ QSeparatorAction( TQObject *tqparent );
bool addTo( TQWidget *w );
bool removeFrom( TQWidget *w );
@@ -192,14 +192,14 @@ private:
};
-class TQDesignerToolBar : public TQToolBar
+class QDesignerToolBar : public TQToolBar
{
Q_OBJECT
TQ_OBJECT
public:
- TQDesignerToolBar( TQMainWindow *mw );
- TQDesignerToolBar( TQMainWindow *mw, Dock dock );
+ QDesignerToolBar( TQMainWindow *mw );
+ QDesignerToolBar( TQMainWindow *mw, Dock dock );
TQPtrList<TQAction> insertedActions() const { return actionList; }
void addAction( TQAction *a );
@@ -245,7 +245,7 @@ private:
TQPtrList<TQAction> actionList;
TQMap<TQWidget*, TQAction*> actionMap;
TQPoint dragStartPos;
- TQDesignerIndicatorWidget *indicator;
+ QDesignerIndicatorWidget *indicator;
bool widgetInserting;
FormWindow *formWindow;