summaryrefslogtreecommitdiffstats
path: root/libkdegames/highscore/kexthighscore_gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkdegames/highscore/kexthighscore_gui.h')
-rw-r--r--libkdegames/highscore/kexthighscore_gui.h70
1 files changed, 35 insertions, 35 deletions
diff --git a/libkdegames/highscore/kexthighscore_gui.h b/libkdegames/highscore/kexthighscore_gui.h
index e721299a..2a142856 100644
--- a/libkdegames/highscore/kexthighscore_gui.h
+++ b/libkdegames/highscore/kexthighscore_gui.h
@@ -20,10 +20,10 @@
#ifndef KEXTHIGHSCORE_GUI_H
#define KEXTHIGHSCORE_GUI_H
-#include <qcheckbox.h>
-#include <qlabel.h>
-#include <qvbox.h>
-#include <qtabwidget.h>
+#include <tqcheckbox.h>
+#include <tqlabel.h>
+#include <tqvbox.h>
+#include <tqtabwidget.h>
#include <klistview.h>
#include <klineedit.h>
@@ -45,10 +45,10 @@ class AdditionalTab;
class ShowItem : public KListViewItem
{
public:
- ShowItem(QListView *, bool highlight);
+ ShowItem(TQListView *, bool highlight);
protected:
- virtual void paintCell(QPainter *, const QColorGroup &, int column,
+ virtual void paintCell(TQPainter *, const TQColorGroup &, int column,
int width, int align);
private:
@@ -59,17 +59,17 @@ class ScoresList : public KListView
{
Q_OBJECT
public:
- ScoresList(QWidget *parent);
+ ScoresList(TQWidget *parent);
void addHeader(const ItemArray &);
protected:
- QListViewItem *addLine(const ItemArray &, uint index, bool highlight);
- virtual QString itemText(const ItemContainer &, uint row) const = 0;
+ TQListViewItem *addLine(const ItemArray &, uint index, bool highlight);
+ virtual TQString itemText(const ItemContainer &, uint row) const = 0;
private:
virtual void addLineItem(const ItemArray &, uint index,
- QListViewItem *item);
+ TQListViewItem *item);
};
//-----------------------------------------------------------------------------
@@ -77,19 +77,19 @@ class HighscoresList : public ScoresList
{
Q_OBJECT
public:
- HighscoresList(QWidget *parent);
+ HighscoresList(TQWidget *parent);
void load(const ItemArray &, int highlight);
protected:
- QString itemText(const ItemContainer &, uint row) const;
+ TQString itemText(const ItemContainer &, uint row) const;
};
class HighscoresWidget : public QWidget
{
Q_OBJECT
public:
- HighscoresWidget(QWidget *parent);
+ HighscoresWidget(TQWidget *parent);
void load(int rank);
@@ -100,11 +100,11 @@ class HighscoresWidget : public QWidget
void changeTab(int i);
private slots:
- void showURL(const QString &) const;
+ void showURL(const TQString &) const;
void tabChanged() { emit tabChanged(_tw->currentPageIndex()); }
private:
- QTabWidget *_tw;
+ TQTabWidget *_tw;
HighscoresList *_scoresList, *_playersList;
KURLLabel *_scoresUrl, *_playersUrl;
AdditionalTab *_statsTab, *_histoTab;
@@ -114,18 +114,18 @@ class HighscoresDialog : public KDialogBase
{
Q_OBJECT
public:
- HighscoresDialog(int rank, QWidget *parent);
+ HighscoresDialog(int rank, TQWidget *parent);
private slots:
void slotUser1();
void slotUser2();
void tabChanged(int i) { _tab = i; }
- void createPage(QWidget *);
+ void createPage(TQWidget *);
private:
int _rank, _tab;
- QWidget *_current;
- QValueVector<HighscoresWidget *> _widgets;
+ TQWidget *_current;
+ TQValueVector<HighscoresWidget *> _widgets;
};
//-----------------------------------------------------------------------------
@@ -133,28 +133,28 @@ class LastMultipleScoresList : public ScoresList
{
Q_OBJECT
public:
- LastMultipleScoresList(const QValueVector<Score> &, QWidget *parent);
+ LastMultipleScoresList(const TQValueVector<Score> &, TQWidget *parent);
private:
- void addLineItem(const ItemArray &, uint index, QListViewItem *line);
- QString itemText(const ItemContainer &, uint row) const;
+ void addLineItem(const ItemArray &, uint index, TQListViewItem *line);
+ TQString itemText(const ItemContainer &, uint row) const;
private:
- const QValueVector<Score> &_scores;
+ const TQValueVector<Score> &_scores;
};
class TotalMultipleScoresList : public ScoresList
{
Q_OBJECT
public:
- TotalMultipleScoresList(const QValueVector<Score> &, QWidget *parent);
+ TotalMultipleScoresList(const TQValueVector<Score> &, TQWidget *parent);
private:
- void addLineItem(const ItemArray &, uint index, QListViewItem *line);
- QString itemText(const ItemContainer &, uint row) const;
+ void addLineItem(const ItemArray &, uint index, TQListViewItem *line);
+ TQString itemText(const ItemContainer &, uint row) const;
private:
- const QValueVector<Score> &_scores;
+ const TQValueVector<Score> &_scores;
};
//-----------------------------------------------------------------------------
@@ -162,7 +162,7 @@ class ConfigDialog : public KDialogBase
{
Q_OBJECT
public:
- ConfigDialog(QWidget *parent);
+ ConfigDialog(TQWidget *parent);
bool hasBeenSaved() const { return _saved; }
@@ -171,12 +171,12 @@ class ConfigDialog : public KDialogBase
void removeSlot();
void accept();
void slotApply() { save(); }
- void nickNameChanged(const QString &);
+ void nickNameChanged(const TQString &);
private:
bool _saved;
- QCheckBox *_WWHEnabled;
- QLineEdit *_nickname, *_comment;
+ TQCheckBox *_WWHEnabled;
+ TQLineEdit *_nickname, *_comment;
KLineEdit *_key, *_registeredName;
KPushButton *_removeButton;
@@ -189,17 +189,17 @@ class AskNameDialog : public KDialogBase
{
Q_OBJECT
public:
- AskNameDialog(QWidget *parent);
+ AskNameDialog(TQWidget *parent);
- QString name() const { return _edit->text(); }
+ TQString name() const { return _edit->text(); }
bool dontAskAgain() const { return _checkbox->isChecked(); }
private slots:
void nameChanged();
private:
- QLineEdit *_edit;
- QCheckBox *_checkbox;
+ TQLineEdit *_edit;
+ TQCheckBox *_checkbox;
};
} // namespace