summaryrefslogtreecommitdiffstats
path: root/kkbswitch/kbpickicondlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'kkbswitch/kbpickicondlg.h')
-rw-r--r--kkbswitch/kbpickicondlg.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/kkbswitch/kbpickicondlg.h b/kkbswitch/kbpickicondlg.h
index b6abb16..0f5e0f4 100644
--- a/kkbswitch/kbpickicondlg.h
+++ b/kkbswitch/kbpickicondlg.h
@@ -20,9 +20,9 @@
#include <kdialogbase.h>
-class QWidget;
-class QStringList;
-class QPixmap;
+class TQWidget;
+class TQStringList;
+class TQPixmap;
class KListBox;
/**A dialog to pick an icon for a keyboard layout
@@ -32,30 +32,30 @@ class KListBox;
class KBPickIconDlg : public KDialogBase {
Q_OBJECT
public:
- KBPickIconDlg(const QString &currentPath, const QPixmap &currentPixmap,
- QWidget *parent=0, const char *name=0);
+ KBPickIconDlg(const TQString &currentPath, const TQPixmap &currentPixmap,
+ TQWidget *parent=0, const char *name=0);
~KBPickIconDlg();
/** Get the path name of the selected icon. Returns empty string if no icon selected */
- QString getIconPath();
+ TQString getIconPath();
/** No descriptions */
- const QPixmap* getIcon();
+ const TQPixmap* getIcon();
private: // Private attributes
/** */
- //QStringList m_pathnames;
- //QString m_iconpath;
+ //TQStringList m_pathnames;
+ //TQString m_iconpath;
//KIconView *m_iconview;
KListBox *lbIcons;
- //QLabel *lblIcon;
- //QRadioButton *rbFlags;
- //QRadioButton *rbBrowse;
+ //TQLabel *lblIcon;
+ //TQRadioButton *rbFlags;
+ //TQRadioButton *rbBrowse;
void loadCountryFlags();
void loadGkbCountryFlags();
- void showCurrentPath(const QString &currentPath, const QPixmap &currentPixmap);
+ void showCurrentPath(const TQString &currentPath, const TQPixmap &currentPixmap);
private slots: // Private slots
/** Browse for an arbitrary icon file */
void slotBrowseForIcon();
/** Respond to user selecting a flag in the icon view */
- //void slotFlagSelected(QIconViewItem *item);
+ //void slotFlagSelected(TQIconViewItem *item);
};
#endif