summaryrefslogtreecommitdiffstats
path: root/ktouch/src/ktouchkeyboard.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /ktouch/src/ktouchkeyboard.h
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ktouch/src/ktouchkeyboard.h')
-rw-r--r--ktouch/src/ktouchkeyboard.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ktouch/src/ktouchkeyboard.h b/ktouch/src/ktouchkeyboard.h
index 88949537..5334c49b 100644
--- a/ktouch/src/ktouchkeyboard.h
+++ b/ktouch/src/ktouchkeyboard.h
@@ -17,7 +17,7 @@
#include <config.h>
#endif
-#include <qvaluevector.h>
+#include <tqvaluevector.h>
#include "ktouchkeyconnector.h"
#include "ktouchkey.h"
@@ -33,18 +33,18 @@ class KTouchKeyboard {
/// Clears the keyboard (resets all data)
void clear();
/// Loads a keyboard layout (old format) from file (returns true if successful).
- bool load(QWidget * window, const KURL& url);
+ bool load(TQWidget * window, const KURL& url);
/// Loads a lecture (in XML format) from file (returns true if successful).
- bool loadXML(QWidget * window, const KURL& url);
+ bool loadXML(TQWidget * window, const KURL& url);
/// Saves the lecture data to file (returns true if successful).
- bool saveXML(QWidget * window, const KURL& url) const;
+ bool saveXML(TQWidget * window, const KURL& url) const;
/// Creates the default number keyboard.
void createDefault();
/// Updates the indices in the KTouchKeyConnector objects for faster access.
void updateConnections();
- QValueVector<KTouchKey> m_keys; ///< Vector with key definitions.
- QValueVector<KTouchKeyConnector> m_connectors; ///< Vector with connectivity data.
+ TQValueVector<KTouchKey> m_keys; ///< Vector with key definitions.
+ TQValueVector<KTouchKeyConnector> m_connectors; ///< Vector with connectivity data.
QString m_title; ///< Title of the keyboard (to appear in the menu).
QString m_comment; ///< Comments about the creator of the keyboard layout.
@@ -57,11 +57,11 @@ class KTouchKeyboard {
private:
/// Loads keyboard data from file
- bool read(QTextStream& in);
+ bool read(TQTextStream& in);
/// Loads keyboard data from file into an XML document
- bool read(const QDomDocument& doc);
+ bool read(const TQDomDocument& doc);
/// Saves keyboard data in the XML document
- void write(QDomDocument& doc) const;
+ void write(TQDomDocument& doc) const;
};
#endif // KTOUCHKEYBOARD_H