summaryrefslogtreecommitdiffstats
path: root/part/kxetextviewsettings.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-03-26 12:35:35 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-03-26 14:10:15 +0100
commit38dca4b75c471ddf950e2f9f03801c550d7d26fd (patch)
treef5923ce5d84971f1f394baf7411146f078c02fab /part/kxetextviewsettings.h
parente28665ce3b2e9ec6f09b4c021db7443cac3c4128 (diff)
downloadkxmleditor-38dca4b75c471ddf950e2f9f03801c550d7d26fd.tar.gz
kxmleditor-38dca4b75c471ddf950e2f9f03801c550d7d26fd.zip
Initial TQt conversion
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'part/kxetextviewsettings.h')
-rw-r--r--part/kxetextviewsettings.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/part/kxetextviewsettings.h b/part/kxetextviewsettings.h
index 117282a..8b08d92 100644
--- a/part/kxetextviewsettings.h
+++ b/part/kxetextviewsettings.h
@@ -20,7 +20,7 @@
#include "kxesettings.h"
-#include <qcolor.h>
+#include <tqcolor.h>
class KXETextViewSettingsPage;
@@ -34,35 +34,35 @@ class KXETextViewSettings : public KXESettings
{
public:
- KXETextViewSettings( QObject * pParent = 0, const char * pszName = 0 );
+ KXETextViewSettings( TQObject * pParent = 0, const char * pszName = 0 );
// The following functions can be used to access this object's settings.
- const QColor & colorDfltText() const { return m_colorDfltText; }
- const QColor & colorElemNames() const { return m_colorElemNames; }
- const QColor & colorAttrNames() const { return m_colorAttrNames; }
- const QColor & colorAttrValues() const { return m_colorAttrValues; }
- const QColor & colorSyntaxChars() const { return m_colorSyntaxChars; }
- const QColor & colorComments() const { return m_colorComments; }
- const QColor & colorErrors() const { return m_colorErrors; }
+ const TQColor & colorDfltText() const { return m_colorDfltText; }
+ const TQColor & colorElemNames() const { return m_colorElemNames; }
+ const TQColor & colorAttrNames() const { return m_colorAttrNames; }
+ const TQColor & colorAttrValues() const { return m_colorAttrValues; }
+ const TQColor & colorSyntaxChars() const { return m_colorSyntaxChars; }
+ const TQColor & colorComments() const { return m_colorComments; }
+ const TQColor & colorErrors() const { return m_colorErrors; }
int indentSteps() const { return m_iIndentSteps; }
bool isWrapOn() const { return m_bWrapOn; }
/**
* Derived from @ref KXESettings
*/
- virtual QString dialogPageName() const;
+ virtual TQString dialogPageName() const;
/**
* Derived from @ref KXESettings
*/
- virtual QString dialogPageHeader() const;
+ virtual TQString dialogPageHeader() const;
/**
* Derived from @ref KXESettings
*/
- virtual QString dialogPageIcon() const;
+ virtual TQString dialogPageIcon() const;
/**
* Derived from @ref KXESettings
*/
- virtual QWidget * dialogPage( QFrame * pParent );
+ virtual TQWidget * dialogPage( TQFrame * pParent );
protected:
@@ -84,13 +84,13 @@ class KXETextViewSettings : public KXESettings
virtual void updatePage() const;
// the settings itself
- QColor m_colorDfltText;
- QColor m_colorElemNames;
- QColor m_colorAttrNames;
- QColor m_colorAttrValues;
- QColor m_colorSyntaxChars;
- QColor m_colorComments;
- QColor m_colorErrors;
+ TQColor m_colorDfltText;
+ TQColor m_colorElemNames;
+ TQColor m_colorAttrNames;
+ TQColor m_colorAttrValues;
+ TQColor m_colorSyntaxChars;
+ TQColor m_colorComments;
+ TQColor m_colorErrors;
int m_iIndentSteps;
bool m_bWrapOn;