summaryrefslogtreecommitdiffstats
path: root/examples3/i18n/mywidget.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples3/i18n/mywidget.py')
-rw-r--r--examples3/i18n/mywidget.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/examples3/i18n/mywidget.py b/examples3/i18n/mywidget.py
index 60e267a..f69cebf 100644
--- a/examples3/i18n/mywidget.py
+++ b/examples3/i18n/mywidget.py
@@ -2,32 +2,32 @@
from qt import *
-class MyWidget(QMainWindow):
+class MyWidget(TQMainWindow):
def __init__(self, parent=None, name=None):
- QMainWindow.__init__(self, parent, name)
+ TQMainWindow.__init__(self, parent, name)
- self.central = QVBox(self)
+ self.central = TQVBox(self)
self.central.setMargin(5)
self.central.setSpacing(5)
self.setCentralWidget(self.central)
self.setCaption(self.trUtf8("""Internationalization Example"""))
- self.file = QPopupMenu(self)
+ self.file = TQPopupMenu(self)
self.file.insertItem(self.trUtf8("E&xit"), qApp, SLOT("quit()"),
- QKeySequence(self.trUtf8("Ctrl+Q","File|Quit")))
+ TQKeySequence(self.trUtf8("Ctrl+Q","File|Quit")))
self.menuBar().insertItem(self.trUtf8("&File"), self.file)
self.statusBar().message(self.trUtf8('''Language: English'''))
- self.label = QLabel(self.trUtf8("The Main Window"), self.central)
+ self.label = TQLabel(self.trUtf8("The Main Window"), self.central)
- self.gbox = QButtonGroup(1, QGroupBox.Horizontal,
+ self.gbox = TQButtonGroup(1, TQGroupBox.Horizontal,
self.trUtf8("View"), self.central)
- rb = QRadioButton(qApp.translate('MyWidget','Perspective'), self.gbox)
- rb = QRadioButton(qApp.translate('MyWidget','Isometric'), self.gbox)
- rb = QRadioButton(qApp.translate('MyWidget','Oblique'), self.gbox)
+ rb = TQRadioButton(qApp.translate('MyWidget','Perspective'), self.gbox)
+ rb = TQRadioButton(qApp.translate('MyWidget','Isometric'), self.gbox)
+ rb = TQRadioButton(qApp.translate('MyWidget','Oblique'), self.gbox)
self.initChoices(self.central)
@@ -38,10 +38,10 @@ class MyWidget(QMainWindow):
]
def initChoices(self, parent):
- self.lb = QListBox(parent)
+ self.lb = TQListBox(parent)
for ch in self.choices:
self.lb.insertItem(self.trUtf8(ch))
def closeEvent(self, e):
- QWidget.closeEvent(self, e)
+ TQWidget.closeEvent(self, e)
self.emit(PYSIGNAL('closed'), ())