summaryrefslogtreecommitdiffstats
path: root/kaddressbook/xxport/csvimportdialog.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kaddressbook/xxport/csvimportdialog.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz
tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kaddressbook/xxport/csvimportdialog.h')
-rw-r--r--kaddressbook/xxport/csvimportdialog.h60
1 files changed, 30 insertions, 30 deletions
diff --git a/kaddressbook/xxport/csvimportdialog.h b/kaddressbook/xxport/csvimportdialog.h
index 8e9dd071..a34f681e 100644
--- a/kaddressbook/xxport/csvimportdialog.h
+++ b/kaddressbook/xxport/csvimportdialog.h
@@ -26,7 +26,7 @@
#include <kabc/addresseelist.h>
#include <kdialogbase.h>
-#include <qvaluelist.h>
+#include <tqvaluelist.h>
class KURLRequester;
@@ -43,7 +43,7 @@ class CSVImportDialog : public KDialogBase
Q_OBJECT
public:
- CSVImportDialog( KABC::AddressBook *ab, QWidget *parent,
+ CSVImportDialog( KABC::AddressBook *ab, TQWidget *parent,
const char *name = 0 );
~CSVImportDialog();
@@ -55,12 +55,12 @@ class CSVImportDialog : public KDialogBase
private slots:
void returnPressed();
void delimiterClicked( int id );
- void lineSelected( const QString& line );
- void textquoteSelected( const QString& mark );
- void textChanged ( const QString & );
+ void lineSelected( const TQString& line );
+ void textquoteSelected( const TQString& mark );
+ void textChanged ( const TQString & );
void ignoreDuplicatesChanged( int );
- void setFile( const QString& );
- void urlChanged( const QString& );
+ void setFile( const TQString& );
+ void urlChanged( const TQString& );
void codecChanged();
void applyTemplate();
@@ -78,47 +78,47 @@ class CSVImportDialog : public KDialogBase
Isdn, Pager, Email, Mailer, Title, Role, Organization, Note, URL
};
- QTable* mTable;
- QButtonGroup* mDelimiterBox;
- QRadioButton* mRadioComma;
- QRadioButton* mRadioSemicolon;
- QRadioButton* mRadioTab;
- QRadioButton* mRadioSpace;
- QRadioButton* mRadioOther;
- QLineEdit* mDelimiterEdit;
- QLineEdit* mDatePatternEdit;
- QComboBox* mComboLine;
- QComboBox* mComboQuote;
- QCheckBox* mIgnoreDuplicates;
- QComboBox* mCodecCombo;
- QWidget* mPage;
+ TQTable* mTable;
+ TQButtonGroup* mDelimiterBox;
+ TQRadioButton* mRadioComma;
+ TQRadioButton* mRadioSemicolon;
+ TQRadioButton* mRadioTab;
+ TQRadioButton* mRadioSpace;
+ TQRadioButton* mRadioOther;
+ TQLineEdit* mDelimiterEdit;
+ TQLineEdit* mDatePatternEdit;
+ TQComboBox* mComboLine;
+ TQComboBox* mComboQuote;
+ TQCheckBox* mIgnoreDuplicates;
+ TQComboBox* mCodecCombo;
+ TQWidget* mPage;
KURLRequester* mUrlRequester;
void initGUI();
void fillTable();
void clearTable();
void fillComboBox();
- void setText( int row, int col, const QString& text );
+ void setText( int row, int col, const TQString& text );
void adjustRows( int rows );
void resizeColumns();
- QString getText( int row, int col );
+ TQString getText( int row, int col );
uint posToType( int pos ) const;
int typeToPos( uint type ) const;
void reloadCodecs();
- QTextCodec *currentCodec();
- QPtrList<QTextCodec> mCodecs;
+ TQTextCodec *currentCodec();
+ TQPtrList<TQTextCodec> mCodecs;
bool mAdjustRows;
int mStartLine;
- QChar mTextQuote;
- QString mDelimiter;
- QByteArray mFileArray;
- QMap<QString, uint> mTypeMap;
+ TQChar mTextQuote;
+ TQString mDelimiter;
+ TQByteArray mFileArray;
+ TQMap<TQString, uint> mTypeMap;
KABC::AddressBook *mAddressBook;
int mCustomCounter;
bool mClearTypeStore;
- QValueList<int> mTypeStore;
+ TQValueList<int> mTypeStore;
};
#endif