summaryrefslogtreecommitdiffstats
path: root/kate/part/katefiletype.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kate/part/katefiletype.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kate/part/katefiletype.h')
-rw-r--r--kate/part/katefiletype.h56
1 files changed, 28 insertions, 28 deletions
diff --git a/kate/part/katefiletype.h b/kate/part/katefiletype.h
index cd343019c..7a927636b 100644
--- a/kate/part/katefiletype.h
+++ b/kate/part/katefiletype.h
@@ -19,10 +19,10 @@
#ifndef __kate_filetype_h__
#define __kate_filetype_h__
-#include <qstringlist.h>
-#include <qptrlist.h>
-#include <qpopupmenu.h> // for QPtrList<QPopupMenu>, compile with gcc 3.4
-#include <qguardedptr.h>
+#include <tqstringlist.h>
+#include <tqptrlist.h>
+#include <tqpopupmenu.h> // for TQPtrList<TQPopupMenu>, compile with gcc 3.4
+#include <tqguardedptr.h>
#include "katedialogs.h"
@@ -32,12 +32,12 @@ class KateFileType
{
public:
int number;
- QString name;
- QString section;
- QStringList wildcards;
- QStringList mimetypes;
+ TQString name;
+ TQString section;
+ TQStringList wildcards;
+ TQStringList mimetypes;
int priority;
- QString varLine;
+ TQString varLine;
};
class KateFileTypeManager
@@ -51,7 +51,7 @@ class KateFileTypeManager
*/
void update ();
- void save (QPtrList<KateFileType> *v);
+ void save (TQPtrList<KateFileType> *v);
/**
* get the right fileType for the given document
@@ -67,13 +67,13 @@ class KateFileTypeManager
/**
* Don't modify
*/
- QPtrList<KateFileType> *list () { return &m_types; }
+ TQPtrList<KateFileType> *list () { return &m_types; }
private:
- int wildcardsFind (const QString &fileName);
+ int wildcardsFind (const TQString &fileName);
private:
- QPtrList<KateFileType> m_types;
+ TQPtrList<KateFileType> m_types;
};
class KateFileTypeConfigTab : public KateConfigPage
@@ -81,7 +81,7 @@ class KateFileTypeConfigTab : public KateConfigPage
Q_OBJECT
public:
- KateFileTypeConfigTab( QWidget *parent );
+ KateFileTypeConfigTab( TQWidget *parent );
public slots:
void apply();
@@ -98,17 +98,17 @@ class KateFileTypeConfigTab : public KateConfigPage
void save ();
private:
- class QGroupBox *gbProps;
- class QPushButton *btndel;
- class QComboBox *typeCombo;
- class QLineEdit *wildcards;
- class QLineEdit *mimetypes;
+ class TQGroupBox *gbProps;
+ class TQPushButton *btndel;
+ class TQComboBox *typeCombo;
+ class TQLineEdit *wildcards;
+ class TQLineEdit *mimetypes;
class KIntNumInput *priority;
- class QLineEdit *name;
- class QLineEdit *section;
- class QLineEdit *varLine;
+ class TQLineEdit *name;
+ class TQLineEdit *section;
+ class TQLineEdit *varLine;
- QPtrList<KateFileType> m_types;
+ TQPtrList<KateFileType> m_types;
KateFileType *m_lastType;
};
@@ -117,7 +117,7 @@ class KateViewFileTypeAction : public Kate::ActionMenu
Q_OBJECT
public:
- KateViewFileTypeAction(const QString& text, QObject* parent = 0, const char* name = 0)
+ KateViewFileTypeAction(const TQString& text, TQObject* parent = 0, const char* name = 0)
: Kate::ActionMenu(text, parent, name) { init(); };
~KateViewFileTypeAction(){;};
@@ -127,10 +127,10 @@ class KateViewFileTypeAction : public Kate::ActionMenu
private:
void init();
- QGuardedPtr<KateDocument> m_doc;
- QStringList subMenusName;
- QStringList names;
- QPtrList<QPopupMenu> subMenus;
+ TQGuardedPtr<KateDocument> m_doc;
+ TQStringList subMenusName;
+ TQStringList names;
+ TQPtrList<TQPopupMenu> subMenus;
public slots:
void slotAboutToShow();