summaryrefslogtreecommitdiffstats
path: root/kdeui/ksconfig.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 /kdeui/ksconfig.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 'kdeui/ksconfig.h')
-rw-r--r--kdeui/ksconfig.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/kdeui/ksconfig.h b/kdeui/ksconfig.h
index 548fbfc84..c50789df9 100644
--- a/kdeui/ksconfig.h
+++ b/kdeui/ksconfig.h
@@ -18,9 +18,9 @@
#ifndef KDELIBS_KSCONFIG_H
#define KDELIBS_KSCONFIG_H
-#include <qwidget.h>
-#include <qstring.h>
-#include <qstringlist.h>
+#include <tqwidget.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
#include <kdelibs_export.h>
@@ -100,7 +100,7 @@ class KDEUI_EXPORT KSpellConfig : public QWidget
* activateHelp for more information.
*
*/
- KSpellConfig( QWidget *parent=0, const char *name=0,
+ KSpellConfig( TQWidget *parent=0, const char *name=0,
KSpellConfig *spellConfig=0, bool addHelpButton = true );
KSpellConfig( const KSpellConfig & );
@@ -131,7 +131,7 @@ class KDEUI_EXPORT KSpellConfig : public QWidget
* @since 3.2
*
*/
- void fillDicts( QComboBox* box, QStringList* dictionaries = 0 );
+ void fillDicts( TQComboBox* box, TQStringList* dictionaries = 0 );
/**
* @sect Options setting routines.
@@ -147,14 +147,14 @@ class KDEUI_EXPORT KSpellConfig : public QWidget
* It may be useful to save this list with the document being
* edited to facilitate quicker future spellchecking.
*/
- void setIgnoreList( QStringList _ignorelist );
+ void setIgnoreList( TQStringList _ignorelist );
/**
* The @p _replaceAllList contains word you like that replace
* word. Be careful that this list contains word which is replaced
* and new word.
*/
- void setReplaceAllList( QStringList _replaceAllList );
+ void setReplaceAllList( TQStringList _replaceAllList );
/**
* Set an ISpell option.
@@ -173,7 +173,7 @@ class KDEUI_EXPORT KSpellConfig : public QWidget
/**
* Set the name of the dictionary to use.
*/
- void setDictionary( const QString qs );
+ void setDictionary( const TQString qs );
void setDictFromList( bool dfl );
//void setPersonalDict (const char *s);
@@ -188,12 +188,12 @@ class KDEUI_EXPORT KSpellConfig : public QWidget
*/
bool noRootAffix() const;
bool runTogether() const;
- const QString dictionary() const;
+ const TQString dictionary() const;
bool dictFromList() const;
- //QString personalDict () const;
+ //TQString personalDict () const;
int encoding() const;
- QStringList ignoreList() const;
- QStringList replaceAllList() const;
+ TQStringList ignoreList() const;
+ TQStringList replaceAllList() const;
int client() const; ///< Spell checker client, see KSpellClients
@@ -221,7 +221,7 @@ class KDEUI_EXPORT KSpellConfig : public QWidget
*
* @return true if <pre>lname.data()==$LANG</pre>
*/
- bool interpret( QString &fname, QString &lname, QString &hname );
+ bool interpret( TQString &fname, TQString &lname, TQString &hname );
public slots:
@@ -260,21 +260,21 @@ class KDEUI_EXPORT KSpellConfig : public QWidget
bool bruntogether; // -B
bool dictfromlist;
bool nodialog;
- QString qsdict; // -d [dict]
- QString qspdict; // -p [dict]
- QStringList ignorelist;
+ TQString qsdict; // -d [dict]
+ TQString qspdict; // -p [dict]
+ TQStringList ignorelist;
enum {rdictlist=3, rencoding=4, rhelp=6};
KConfig *kc;
int iclient; // defaults to ispell, may be aspell, too
- QCheckBox *cb1, *cb2;
+ TQCheckBox *cb1, *cb2;
//KLineEdit *kle1, *kle2;
- //QButtonGroup *dictgroup;
- //QRadioButton *dictlistbutton, *dicteditbutton;
- QLabel *dictlist;
- QComboBox *dictcombo, *encodingcombo, *clientcombo;
- //QPushButton *browsebutton1;
- QStringList langfnames;
+ //TQButtonGroup *dictgroup;
+ //TQRadioButton *dictlistbutton, *dicteditbutton;
+ TQLabel *dictlist;
+ TQComboBox *dictcombo, *encodingcombo, *clientcombo;
+ //TQPushButton *browsebutton1;
+ TQStringList langfnames;
signals:
void configChanged();