diff options
Diffstat (limited to 'quanta/components/csseditor')
-rw-r--r-- | quanta/components/csseditor/colorrequester.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/colorslider.h | 6 | ||||
-rw-r--r-- | quanta/components/csseditor/csseditor.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/csseditor_globals.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/cssselector.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/doubleeditors.h | 8 | ||||
-rw-r--r-- | quanta/components/csseditor/encodingselector.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/fontfamilychooser.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/percentageeditor.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/propertysetter.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/specialsb.h | 10 | ||||
-rw-r--r-- | quanta/components/csseditor/styleeditor.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/stylesheetparser.h | 2 | ||||
-rw-r--r-- | quanta/components/csseditor/tlpeditors.h | 6 |
14 files changed, 25 insertions, 25 deletions
diff --git a/quanta/components/csseditor/colorrequester.h b/quanta/components/csseditor/colorrequester.h index c78bee77..75d74d98 100644 --- a/quanta/components/csseditor/colorrequester.h +++ b/quanta/components/csseditor/colorrequester.h @@ -25,7 +25,7 @@ class KLineEdit; class KColorDialog; class colorRequester : public miniEditor{ Q_OBJECT - TQ_OBJECT + public: colorRequester(TQWidget *parent, const char* name=0); ~colorRequester(); diff --git a/quanta/components/csseditor/colorslider.h b/quanta/components/csseditor/colorslider.h index acff130c..33c75c30 100644 --- a/quanta/components/csseditor/colorslider.h +++ b/quanta/components/csseditor/colorslider.h @@ -30,7 +30,7 @@ class colorSlider : public miniEditor { Q_OBJECT - TQ_OBJECT + private : TQString m_functionName; protected: @@ -53,7 +53,7 @@ class colorSlider : public miniEditor { class RGBcolorSlider : public colorSlider { Q_OBJECT - TQ_OBJECT + public: RGBcolorSlider(TQWidget *parent=0, const char *name=0); ~RGBcolorSlider(){} @@ -62,7 +62,7 @@ class RGBcolorSlider : public colorSlider { //FOR CSS3 /*class HSLcolorSlider : public colorSlider { Q_OBJECT - TQ_OBJECT + public: HSLcolorSlider(TQWidget *parent=0, const char *name=0); ~HSLcolorSlider(); diff --git a/quanta/components/csseditor/csseditor.h b/quanta/components/csseditor/csseditor.h index e7cadebb..aee0695b 100644 --- a/quanta/components/csseditor/csseditor.h +++ b/quanta/components/csseditor/csseditor.h @@ -56,7 +56,7 @@ class myCheckListItem : public TQCheckListItem class CSSEditor : public CSSEditorS { Q_OBJECT - TQ_OBJECT + private: TQMyHighlighter *m_myhi; propertySetter *m_ps; diff --git a/quanta/components/csseditor/csseditor_globals.h b/quanta/components/csseditor/csseditor_globals.h index 8efbe4c5..b2cd1405 100644 --- a/quanta/components/csseditor/csseditor_globals.h +++ b/quanta/components/csseditor/csseditor_globals.h @@ -51,7 +51,7 @@ const TQStringList HTMLColors(TQStringList::split(",",TQString("aliceblue,antiqu class mySpinBox : public TQSpinBox{ Q_OBJECT - TQ_OBJECT + public: mySpinBox(TQWidget * parent = 0, const char * name = 0 ); mySpinBox( int minValue, int maxValue, int step = 1, TQWidget * parent = 0, const char * name = 0 ); diff --git a/quanta/components/csseditor/cssselector.h b/quanta/components/csseditor/cssselector.h index 9f3d293e..a71f587b 100644 --- a/quanta/components/csseditor/cssselector.h +++ b/quanta/components/csseditor/cssselector.h @@ -30,7 +30,7 @@ class TQStringList; class CSSSelector : public CSSSelectorS { Q_OBJECT - TQ_OBJECT + private: TQListViewItem *m_currentItem; diff --git a/quanta/components/csseditor/doubleeditors.h b/quanta/components/csseditor/doubleeditors.h index 4c293e4f..94cbf164 100644 --- a/quanta/components/csseditor/doubleeditors.h +++ b/quanta/components/csseditor/doubleeditors.h @@ -25,7 +25,7 @@ class doubleEditorBase : public miniEditor { Q_OBJECT - TQ_OBJECT + protected: TQString m_sxValue, m_dxValue; @@ -46,7 +46,7 @@ class doubleEditorBase : public miniEditor { class doublePercentageEditor : public doubleEditorBase { Q_OBJECT - TQ_OBJECT + private: mySpinBox *m_sbSx, *m_sbDx; @@ -60,7 +60,7 @@ class doublePercentageEditor : public doubleEditorBase { class doubleComboBoxEditor : public doubleEditorBase { Q_OBJECT - TQ_OBJECT + private: TQComboBox *m_cbSx, *m_cbDx; @@ -75,7 +75,7 @@ class doubleComboBoxEditor : public doubleEditorBase { class doubleLengthEditor : public doubleEditorBase { Q_OBJECT - TQ_OBJECT + private: specialSB *m_ssbSx, *m_ssbDx; diff --git a/quanta/components/csseditor/encodingselector.h b/quanta/components/csseditor/encodingselector.h index fcca20c6..6ee05ccd 100644 --- a/quanta/components/csseditor/encodingselector.h +++ b/quanta/components/csseditor/encodingselector.h @@ -28,7 +28,7 @@ class encodingSelector : public encodingSelectorS { Q_OBJECT - TQ_OBJECT + public: encodingSelector(TQWidget *parent=0, const char* name=0); diff --git a/quanta/components/csseditor/fontfamilychooser.h b/quanta/components/csseditor/fontfamilychooser.h index 2b18e30f..70d359eb 100644 --- a/quanta/components/csseditor/fontfamilychooser.h +++ b/quanta/components/csseditor/fontfamilychooser.h @@ -24,7 +24,7 @@ class TQStringList; class fontFamilyChooser : public fontFamilyChooserS { Q_OBJECT - TQ_OBJECT + private: enum FontOrigin { available, generic }; TQString m_currentSelectedFont; diff --git a/quanta/components/csseditor/percentageeditor.h b/quanta/components/csseditor/percentageeditor.h index d4cacecd..34cf3903 100644 --- a/quanta/components/csseditor/percentageeditor.h +++ b/quanta/components/csseditor/percentageeditor.h @@ -38,7 +38,7 @@ class propertySetter; class percentageEditor : public miniEditor { Q_OBJECT - TQ_OBJECT + private: mySpinBox *m_sb; public: diff --git a/quanta/components/csseditor/propertysetter.h b/quanta/components/csseditor/propertysetter.h index 3f1c5af4..a49f585c 100644 --- a/quanta/components/csseditor/propertysetter.h +++ b/quanta/components/csseditor/propertysetter.h @@ -33,7 +33,7 @@ class KPushButton; class propertySetter : public TQHBox { Q_OBJECT - TQ_OBJECT + private: unsigned int m_ind; diff --git a/quanta/components/csseditor/specialsb.h b/quanta/components/csseditor/specialsb.h index 1536c5fe..ef74213f 100644 --- a/quanta/components/csseditor/specialsb.h +++ b/quanta/components/csseditor/specialsb.h @@ -29,7 +29,7 @@ class KLineEdit; class specialSB : public miniEditor { Q_OBJECT - TQ_OBJECT + protected: TQComboBox *m_cb; mySpinBox *m_sb; @@ -55,28 +55,28 @@ class specialSB : public miniEditor { class angleEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: angleEditor(TQWidget *parent=0, const char *name=0); }; class frequencyEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: frequencyEditor(TQWidget *parent=0, const char *name=0); }; class timeEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: timeEditor(TQWidget *parent=0, const char *name=0); }; class lengthEditor : public specialSB { Q_OBJECT - TQ_OBJECT + public: lengthEditor(TQWidget *parent=0, const char *name=0); }; diff --git a/quanta/components/csseditor/styleeditor.h b/quanta/components/csseditor/styleeditor.h index 16f7c855..83b54349 100644 --- a/quanta/components/csseditor/styleeditor.h +++ b/quanta/components/csseditor/styleeditor.h @@ -25,7 +25,7 @@ class propertySetter; class StyleEditor : public TLPEditor{ Q_OBJECT - TQ_OBJECT + private: int m_iconWidth, m_iconHeight; diff --git a/quanta/components/csseditor/stylesheetparser.h b/quanta/components/csseditor/stylesheetparser.h index 9da028fb..c5183dfe 100644 --- a/quanta/components/csseditor/stylesheetparser.h +++ b/quanta/components/csseditor/stylesheetparser.h @@ -28,7 +28,7 @@ class stylesheetParser : public TQObject{ Q_OBJECT - TQ_OBJECT + private: enum parenthesisKind { opened, closed }; diff --git a/quanta/components/csseditor/tlpeditors.h b/quanta/components/csseditor/tlpeditors.h index 3ff7bbef..09c2e1f8 100644 --- a/quanta/components/csseditor/tlpeditors.h +++ b/quanta/components/csseditor/tlpeditors.h @@ -31,7 +31,7 @@ class TQLabel; class TLPEditor : public miniEditor { //editor with a line text and a button calling a dialog Q_OBJECT - TQ_OBJECT + protected: TQLineEdit *m_le; @@ -56,7 +56,7 @@ class TLPEditor : public miniEditor { //editor with a line text and a button cal class fontEditor : public TLPEditor{ Q_OBJECT - TQ_OBJECT + private: TQString m_initialValue; @@ -71,7 +71,7 @@ class fontEditor : public TLPEditor{ class URIEditor : public TLPEditor { Q_OBJECT - TQ_OBJECT + public: enum mode{ Multi, Single }; enum URIResourceType{ audio, image, mousePointer }; |