summaryrefslogtreecommitdiffstats
path: root/examples2/widgets.py
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-29 01:11:08 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-29 01:11:08 -0600
commit8a055d66f43592c257cece2eb8cc021808062917 (patch)
treed0922f201bd5d24b62a33160d1d9baf9e89f9a70 /examples2/widgets.py
parentb388516ca2691303a076a0764fd40bf7116fe43d (diff)
downloadpytqt-8a055d66f43592c257cece2eb8cc021808062917.tar.gz
pytqt-8a055d66f43592c257cece2eb8cc021808062917.zip
Initial TQt conversion
Diffstat (limited to 'examples2/widgets.py')
-rwxr-xr-xexamples2/widgets.py248
1 files changed, 124 insertions, 124 deletions
diff --git a/examples2/widgets.py b/examples2/widgets.py
index 7b85ab3..59d9249 100755
--- a/examples2/widgets.py
+++ b/examples2/widgets.py
@@ -5,31 +5,31 @@ import sys, string
from qt import *
#
-## Constructs an analog clock widget that uses an internal QTimer.
+## Constructs an analog clock widget that uses an internal TQTimer.
#
-def QMIN( x, y ):
+def TQMIN( x, y ):
if y > x:
return y
return x
#
-## Constructs an analog clock widget that uses an internal QTimer.
+## Constructs an analog clock widget that uses an internal TQTimer.
#
-class AnalogClock( QWidget ):
+class AnalogClock( TQWidget ):
def __init__( self, *args ):
- apply( QWidget.__init__, (self,) + args )
- self.time = QTime.currentTime() # get current time
- internalTimer = QTimer( self ) # create internal timer
+ apply( TQWidget.__init__, (self,) + args )
+ self.time = TQTime.currentTime() # get current time
+ internalTimer = TQTimer( self ) # create internal timer
self.connect( internalTimer, SIGNAL("timeout()"), self.timeout )
internalTimer.start( 5000 ) # emit signal every 5 seconds
#
-## The QTimer::timeout() signal is received by this slot.
+## The TQTimer::timeout() signal is received by this slot.
#
def timeout( self ):
- new_time = QTime.currentTime() # get the current time
+ new_time = TQTime.currentTime() # get the current time
if new_time.minute() != self.time.minute(): # minute has changed
self.update()
@@ -39,16 +39,16 @@ class AnalogClock( QWidget ):
def paintEvent( self, qe ): # paint clock
if not self.isVisible(): # is is invisible
return
- self.time = QTime.currentTime() # save current time
+ self.time = TQTime.currentTime() # save current time
- pts = QPointArray()
- paint = QPainter( self )
+ pts = TQPointArray()
+ paint = TQPainter( self )
paint.setBrush( self.foregroundColor() ) # fill with foreground color
- cp = QPoint( self.rect().center() ) # widget center point
- d = QMIN( self.width(), self.height() ) # we want a circular clock
+ cp = TQPoint( self.rect().center() ) # widget center point
+ d = TQMIN( self.width(), self.height() ) # we want a circular clock
- matrix = QWMatrix() # setup transformation matrix
+ matrix = TQWMatrix() # setup transformation matrix
matrix.translate( cp.x(), cp.y() ) # origin at widget center
matrix.scale( d / 1000.0, d / 1000.0 ) # scale coordinate system
@@ -72,11 +72,11 @@ class AnalogClock( QWidget ):
matrix.rotate( 30 )
-class DigitalClock( QLCDNumber ):
+class DigitalClock( TQLCDNumber ):
def __init__( self, *args ):
- apply( QLCDNumber.__init__,(self,) + args )
+ apply( TQLCDNumber.__init__,(self,) + args )
self.showingColon = 0
- self.setFrameStyle(QFrame.Panel | QFrame.Raised)
+ self.setFrameStyle(TQFrame.Panel | TQFrame.Raised)
self.setLineWidth( 2 )
self.showTime()
self.normalTimer = self.startTimer( 500 )
@@ -90,13 +90,13 @@ class DigitalClock( QLCDNumber ):
self.showTime()
def mousePressEvent( self, e ):
- if e.button() == Qt.LeftButton:
+ if e.button() == TQt.LeftButton:
self.showDate()
def showDate( self ):
if self.showDateTimer != -1:
return
- d = QDate.currentDate()
+ d = TQDate.currentDate()
self.display('%2d %2d' % (d.month(), d.day()))
self.showDateTimer = self.startTimer(2000)
@@ -107,7 +107,7 @@ class DigitalClock( QLCDNumber ):
def showTime( self ):
self.showingColon = not self.showingColon
- s = list(str(QTime.currentTime().toString())[:5]) #.left(5)
+ s = list(str(TQTime.currentTime().toString())[:5]) #.left(5)
if not self.showingColon:
s[2] = ' '
if s[0] == '0':
@@ -115,7 +115,7 @@ class DigitalClock( QLCDNumber ):
s = string.join(s,'')
self.display( s )
- def QMIN( x, y ):
+ def TQMIN( x, y ):
if y > x:
return y
return x
@@ -125,43 +125,43 @@ FALSE = 0
MOVIEFILENAME = "trolltech.gif"
#
-# WidgetView contains lots of Qt widgets.
+# WidgetView contains lots of TQt widgets.
#
-class WidgetView ( QWidget ):
+class WidgetView ( TQWidget ):
def __init__( self, *args ):
- apply( QWidget.__init__, (self,) + args )
+ apply( TQWidget.__init__, (self,) + args )
# Set the window caption/title
- self.setCaption( "Qt Widgets Demo Application" )
+ self.setCaption( "TQt Widgets Demo Application" )
# Install an application-global event filter
qApp.installEventFilter( self )
# Create a layout to position the widgets
- self.topLayout = QVBoxLayout( self, 10 )
+ self.topLayout = TQVBoxLayout( self, 10 )
# Create a grid layout to hold most of the widgets
- self.grid = QGridLayout( 6, 3 )
+ self.grid = TQGridLayout( 6, 3 )
# This layout will get all of the stretch
self.topLayout.addLayout( self.grid, 10 )
# Create a menubar
- self.menubar = QMenuBar( self )
- #self.menubar.setSeparator( QMenuBar.InWindowsStyle )
+ self.menubar = TQMenuBar( self )
+ #self.menubar.setSeparator( TQMenuBar.InWindowsStyle )
self.menubar.setSeparator( 1 )
# Create an easter egg
- QToolTip.add( self.menubar, QRect( 0, 0, 2, 2 ), "easter egg" )
+ TQToolTip.add( self.menubar, TQRect( 0, 0, 2, 2 ), "easter egg" )
- self.popup = QPopupMenu()
+ self.popup = TQPopupMenu()
self.id = self.popup.insertItem( "&New" )
self.popup.setItemEnabled( self.id, FALSE )
self.id = self.popup.insertItem( "&Open" )
self.popup.setItemEnabled( self.id, FALSE )
self.popup.insertSeparator()
- self.popup.insertItem( "&Quit", qApp, SLOT("quit()"), Qt.CTRL+Qt.Key_Q )
+ self.popup.insertItem( "&Quit", qApp, SLOT("quit()"), TQt.CTRL+TQt.Key_Q )
self.menubar.insertItem( "&File", self.popup )
@@ -177,63 +177,63 @@ class WidgetView ( QWidget ):
self.grid.addWidget( self.dclock, 1, 2 )
# Give the dclock widget a blue palette
- col = QColor()
+ col = TQColor()
col.setRgb( 0xaa, 0xbe, 0xff )
- self.dclock.setPalette( QPalette( col ) )
+ self.dclock.setPalette( TQPalette( col ) )
# make tool tips for both of them
- QToolTip.add( self.aclock, "custom widget: analog clock" )
- QToolTip.add( self.dclock, "custom widget: digital clock" )
+ TQToolTip.add( self.aclock, "custom widget: analog clock" )
+ TQToolTip.add( self.dclock, "custom widget: digital clock" )
# Create a push button.
- self.pb = QPushButton( self, "button1" ) # create button 1
+ self.pb = TQPushButton( self, "button1" ) # create button 1
self.pb.setText( "Push button 1" )
self.pb.setFixedHeight( self.pb.sizeHint().height() )
- self.grid.addWidget( self.pb, 0, 0, Qt.AlignVCenter )
+ self.grid.addWidget( self.pb, 0, 0, TQt.AlignVCenter )
self.connect( self.pb, SIGNAL("clicked()"), self.button1Clicked )
- QToolTip.add( self.pb, "push button 1" )
- self.pm = QPixmap()
+ TQToolTip.add( self.pb, "push button 1" )
+ self.pm = TQPixmap()
self.pix = self.pm.load( "qt.png" ) # load pixmap for button 2
if not self.pix:
- QMessageBox.information( None, "Qt Widgets Example",
+ TQMessageBox.information( None, "TQt Widgets Example",
"Could not load the file \"qt.png\", which\n"
"contains an icon used...\n\n"
"The text \"line 42\" will be substituted.",
- QMessageBox.Ok + QMessageBox.Default )
+ TQMessageBox.Ok + TQMessageBox.Default )
- # Create a label containing a QMovie
- self.movielabel = QLabel( self, "label0" )
- self.movie = QMovie( MOVIEFILENAME )
+ # Create a label containing a TQMovie
+ self.movielabel = TQLabel( self, "label0" )
+ self.movie = TQMovie( MOVIEFILENAME )
self.movie.connectStatus( self.movieStatus )
self.movie.connectUpdate( self.movieUpdate )
- self.movielabel.setFrameStyle( QFrame.Box | QFrame.Plain )
+ self.movielabel.setFrameStyle( TQFrame.Box | TQFrame.Plain )
self.movielabel.setMovie( self.movie )
self.movielabel.setMargin( 0 )
self.movielabel.setFixedSize( 128 + self.movielabel.frameWidth() * 2,
64 + self.movielabel.frameWidth() * 2 )
- self.grid.addWidget( self.movielabel, 0, 1, Qt.AlignCenter )
- QToolTip.add( self.movielabel, "movie" )
+ self.grid.addWidget( self.movielabel, 0, 1, TQt.AlignCenter )
+ TQToolTip.add( self.movielabel, "movie" )
# Create a group of check boxes
- self.bg = QButtonGroup( self, "checkGroup" )
+ self.bg = TQButtonGroup( self, "checkGroup" )
self.bg.setTitle( "Check Boxes" )
self.grid.addWidget( self.bg, 1, 0 )
# Create a layout for the check boxes
- self.vbox = QVBoxLayout(self.bg, 10)
+ self.vbox = TQVBoxLayout(self.bg, 10)
self.vbox.addSpacing( self.bg.fontMetrics().height() )
self.cb = range(3)
- self.cb[0] = QCheckBox( self.bg )
+ self.cb[0] = TQCheckBox( self.bg )
self.cb[0].setText( "Read" )
self.vbox.addWidget( self.cb[0] )
self.cb[0].setMinimumSize( self.cb[0].sizeHint() )
- self.cb[1] = QCheckBox( self.bg )
+ self.cb[1] = TQCheckBox( self.bg )
self.cb[1].setText( "Write" )
self.vbox.addWidget( self.cb[1] )
self.cb[1].setMinimumSize( self.cb[1].sizeHint() )
- self.cb[2] = QCheckBox( self.bg )
+ self.cb[2] = TQCheckBox( self.bg )
self.cb[2].setText( "Execute" )
self.cb[2].setMinimumSize( self.cb[2].sizeHint() )
self.vbox.addWidget( self.cb[2] )
@@ -242,44 +242,44 @@ class WidgetView ( QWidget ):
self.connect( self.bg, SIGNAL("clicked(int)"), self.checkBoxClicked )
- QToolTip.add( self.cb[0], "check box 1" )
- QToolTip.add( self.cb[1], "check box 2" )
- QToolTip.add( self.cb[2], "check box 3" )
+ TQToolTip.add( self.cb[0], "check box 1" )
+ TQToolTip.add( self.cb[1], "check box 2" )
+ TQToolTip.add( self.cb[2], "check box 3" )
# Create a group of radio buttons
- self.bg = QButtonGroup( self, "radioGroup" )
+ self.bg = TQButtonGroup( self, "radioGroup" )
self.bg.setTitle( "Radio buttons" )
self.grid.addWidget( self.bg, 1, 1 )
# Create a layout for the radio buttons
- self.vbox = QVBoxLayout( self.bg, 10 )
+ self.vbox = TQVBoxLayout( self.bg, 10 )
self.vbox.addSpacing( self.bg.fontMetrics().height() )
- self.rb = QRadioButton( self.bg )
+ self.rb = TQRadioButton( self.bg )
self.rb.setText( "&AM" )
self.rb.setChecked( TRUE )
self.vbox.addWidget( self.rb )
self.rb.setMinimumSize( self.rb.sizeHint() )
- QToolTip.add( self.rb, "radio button 1" )
- self.rb = QRadioButton( self.bg )
+ TQToolTip.add( self.rb, "radio button 1" )
+ self.rb = TQRadioButton( self.bg )
self.rb.setText( "&FM" )
self.vbox.addWidget( self.rb )
self.rb.setMinimumSize( self.rb.sizeHint() )
- QToolTip.add( self.rb, "radio button 2" )
- self.rb = QRadioButton( self.bg )
+ TQToolTip.add( self.rb, "radio button 2" )
+ self.rb = TQRadioButton( self.bg )
self.rb.setText( "&Short Wave" )
self.vbox.addWidget( self.rb )
self.rb.setMinimumSize( self.rb.sizeHint() )
self.vbox.activate()
self.connect( self.bg, SIGNAL("clicked(int)"), self.radioButtonClicked )
- QToolTip.add( self.rb, "radio button 3" )
+ TQToolTip.add( self.rb, "radio button 3" )
# Create a list box
- self.lb = QListBox( self, "listBox" )
+ self.lb = TQListBox( self, "listBox" )
for i in range( 0, 100, 1 ): # fill list box
- txt = QString()
+ txt = TQString()
txt = "line %d" % i
if i == 42 and self.pix:
self.lb.insertItem( self.pm )
@@ -288,26 +288,26 @@ class WidgetView ( QWidget ):
self.grid.addMultiCellWidget( self.lb, 2, 4, 0, 0 )
self.connect( self.lb, SIGNAL("selected(int)"), self.listBoxItemSelected )
- QToolTip.add( self.lb, "list box" )
+ TQToolTip.add( self.lb, "list box" )
- self.vbox = QVBoxLayout( 8 )
+ self.vbox = TQVBoxLayout( 8 )
self.grid.addLayout( self.vbox, 2, 1 )
# Create a slider
- self.sb = QSlider( 0, 300, 1, 100, QSlider.Horizontal, self, "Slider" )
- #self.sb.setTickmarks( QSlider.Below )
+ self.sb = TQSlider( 0, 300, 1, 100, TQSlider.Horizontal, self, "Slider" )
+ #self.sb.setTickmarks( TQSlider.Below )
self.sb.setTickmarks( 1 )
self.sb.setTickInterval( 10 )
- #self.sb.setFocusPolicy( QWidget.TabFocus )
+ #self.sb.setFocusPolicy( TQWidget.TabFocus )
self.sb.setFocusPolicy( 1 )
self.sb.setFixedHeight( self.sb.sizeHint().height() )
self.vbox.addWidget( self.sb )
self.connect( self.sb, SIGNAL("valueChanged(int)"), self.sliderValueChanged )
- QToolTip.add( self.sb, "slider" )
+ TQToolTip.add( self.sb, "slider" )
# Create a combo box
- self.combo = QComboBox( FALSE, self, "comboBox" )
+ self.combo = TQComboBox( FALSE, self, "comboBox" )
self.combo.insertItem( "darkBlue" )
self.combo.insertItem( "darkRed" )
self.combo.insertItem( "darkGreen" )
@@ -316,10 +316,10 @@ class WidgetView ( QWidget ):
self.combo.setFixedHeight( self.combo.sizeHint().height() )
self.vbox.addWidget( self.combo )
self.connect( self.combo, SIGNAL("activated(int)"), self.comboBoxItemActivated )
- QToolTip.add( self.combo, "read-only combo box" )
+ TQToolTip.add( self.combo, "read-only combo box" )
# Create an editable combo box
- self.edCombo = QComboBox( TRUE, self, "edComboBox" )
+ self.edCombo = TQComboBox( TRUE, self, "edComboBox" )
self.edCombo.insertItem( "Permutable" )
self.edCombo.insertItem( "Malleable" )
self.edCombo.insertItem( "Adaptable" )
@@ -327,50 +327,50 @@ class WidgetView ( QWidget ):
self.edCombo.insertItem( "Inconstant" )
self.edCombo.setFixedHeight( self.edCombo.sizeHint().height() )
self.vbox.addWidget( self.edCombo )
- self.connect( self.edCombo, SIGNAL("activated(const QString &)"), self.edComboBoxItemActivated)
- QToolTip.add( self.edCombo, "editable combo box" )
+ self.connect( self.edCombo, SIGNAL("activated(const TQString &)"), self.edComboBoxItemActivated)
+ TQToolTip.add( self.edCombo, "editable combo box" )
self.edCombo.setAutoCompletion( TRUE )
self.vbox.addStretch( 1 )
- self.vbox = QVBoxLayout( 8 )
+ self.vbox = TQVBoxLayout( 8 )
self.grid.addLayout( self.vbox, 2, 2 )
# Create a spin box
- self.spin = QSpinBox( 0, 10, 1, self, "spin" )
+ self.spin = TQSpinBox( 0, 10, 1, self, "spin" )
self.spin.setSuffix( " mm" )
self.spin.setSpecialValueText( "Auto" )
self.spin.setMinimumSize( self.spin.sizeHint() )
- self.connect( self.spin, SIGNAL( "valueChanged(const QString &)" ), self.spinBoxValueChanged )
- QToolTip.add( self.spin, "spin box" )
+ self.connect( self.spin, SIGNAL( "valueChanged(const TQString &)" ), self.spinBoxValueChanged )
+ TQToolTip.add( self.spin, "spin box" )
self.vbox.addWidget( self.spin )
self.vbox.addStretch( 1 )
# Create a multi line edit
- self.mle = QMultiLineEdit( self, "multiLineEdit" )
+ self.mle = TQMultiLineEdit( self, "multiLineEdit" )
self.grid.addMultiCellWidget( self.mle, 3, 3, 1, 2 )
self.mle.setMinimumHeight( self.mle.fontMetrics().height() * 3 )
- self.mle.setText("This is a QMultiLineEdit widget,\n"
+ self.mle.setText("This is a TQMultiLineEdit widget,\n"
"useful for small multi-line\n"
"input fields.")
- QToolTip.add( self.mle, "multi line editor" )
+ TQToolTip.add( self.mle, "multi line editor" )
# Create a single line edit
- self.le = QLineEdit( self, "lineEdit" )
+ self.le = TQLineEdit( self, "lineEdit" )
self.grid.addMultiCellWidget( self.le, 4, 4, 1, 2 )
self.le.setFixedHeight( self.le.sizeHint().height() )
- self.connect( self.le, SIGNAL("textChanged(const QString &)"), self.lineEditTextChanged )
- QToolTip.add( self.le, "single line editor" )
+ self.connect( self.le, SIGNAL("textChanged(const TQString &)"), self.lineEditTextChanged )
+ TQToolTip.add( self.le, "single line editor" )
- # Create a horizontal line (sort of QFrame) above the message line
- self.separator = QFrame( self, "separatorLine" )
- self.separator.setFrameStyle( QFrame.HLine | QFrame.Sunken )
+ # Create a horizontal line (sort of TQFrame) above the message line
+ self.separator = TQFrame( self, "separatorLine" )
+ self.separator.setFrameStyle( TQFrame.HLine | TQFrame.Sunken )
self.separator.setFixedHeight( self.separator.sizeHint().height() )
self.grid.addMultiCellWidget( self.separator, 5, 5, 0, 2 )
- QToolTip.add( self.separator, "tool tips on a separator! wow!" )
+ TQToolTip.add( self.separator, "tool tips on a separator! wow!" )
self.grid.setRowStretch( 0, 0 )
self.grid.setRowStretch( 1, 0 )
@@ -386,24 +386,24 @@ class WidgetView ( QWidget ):
# Create an label and a message in a plain widget
# The message is updated when buttons are clicked etc.
- self.hbox = QHBoxLayout()
+ self.hbox = TQHBoxLayout()
self.topLayout.addLayout( self.hbox )
- self.msgLabel = QLabel( self, "msgLabel" )
+ self.msgLabel = TQLabel( self, "msgLabel" )
self.msgLabel.setText( "Message:" )
- self.msgLabel.setAlignment( Qt.AlignHCenter | Qt.AlignVCenter )
+ self.msgLabel.setAlignment( TQt.AlignHCenter | TQt.AlignVCenter )
self.msgLabel.setFixedSize( self.msgLabel.sizeHint() )
self.hbox.addWidget( self.msgLabel )
- QToolTip.add( self.msgLabel, "label 1" )
+ TQToolTip.add( self.msgLabel, "label 1" )
- self.msg = QLabel( self, "message" )
- self.msg.setFrameStyle( QFrame.Panel | QFrame.Sunken )
- self.msg.setAlignment( Qt.AlignCenter )
- self.msg.setFont( QFont( "times", 12, QFont.Bold ) )
+ self.msg = TQLabel( self, "message" )
+ self.msg.setFrameStyle( TQFrame.Panel | TQFrame.Sunken )
+ self.msg.setAlignment( TQt.AlignCenter )
+ self.msg.setFont( TQFont( "times", 12, TQFont.Bold ) )
self.msg.setText( "Message" )
self.msg.setFixedHeight( self.msg.sizeHint().height() )
self.msg.setText( "" )
self.hbox.addWidget( self.msg, 5 )
- QToolTip.add( self.msg, "label 2" )
+ TQToolTip.add( self.msg, "label 2" )
self.topLayout.activate()
@@ -415,19 +415,19 @@ class WidgetView ( QWidget ):
self.setIcon( self.movie.framePixmap() )
def movieStatus( self, s ):
- if s == QMovie.SourceEmpty or s == QMovie.UnrecognizedFormat:
- pm = QPixmap('tt-logo.png')
+ if s == TQMovie.SourceEmpty or s == TQMovie.UnrecognizedFormat:
+ pm = TQPixmap('tt-logo.png')
self.movielabel.setPixmap(pm)
self.movielabel.setFixedSize(pm.size())
else:
if ( self.movielabel.movie() ): # for flicker-free animation:
- self.movielabel.setBackgroundMode( QWidget.NoBackground )
+ self.movielabel.setBackgroundMode( TQWidget.NoBackground )
def button1Clicked( self ):
self.msg.setText( "The first push button was clicked" )
def checkBoxClicked( self, id ):
- txt = QString()
+ txt = TQString()
txt = "Check box %s clicked : " % str(id)
chk = ["-","-","-"]
if self.cb[0].isChecked():
@@ -440,40 +440,40 @@ class WidgetView ( QWidget ):
self.msg.setText( txt )
def edComboBoxItemActivated( self, text):
- txt = QString()
+ txt = TQString()
txt = "Editable Combo Box set to %s" % text
self.msg.setText( txt )
def radioButtonClicked( self, id ):
- txt = QString()
+ txt = TQString()
txt = "Radio button #%d clicked" % id
self.msg.setText( txt )
def listBoxItemSelected( self, index ):
- txt = QString()
+ txt = TQString()
txt = "List box item %d selected" % index
self.msg.setText( txt )
def sliderValueChanged( self, value ):
- txt = QString()
+ txt = TQString()
txt = "Movie set to %d%% of normal speed" % value
self.msg.setText( txt )
self.movie.setSpeed( value )
def comboBoxItemActivated( self, index ):
- txt = QString()
+ txt = TQString()
txt = "Comboxo box item %d activated" % index
self.msg.setText( txt )
if index == 0:
- QApplication.setWinStyleHighlightColor( Qt.darkBlue )
+ TQApplication.setWinStyleHighlightColor( TQt.darkBlue )
elif index == 1:
- QApplication.setWinStyleHighlightColor( Qt.darkRed )
+ TQApplication.setWinStyleHighlightColor( TQt.darkRed )
elif index == 2:
- QApplication.setWinStyleHighlightColor( Qt.darkGreen )
+ TQApplication.setWinStyleHighlightColor( TQt.darkGreen )
elif index == 3:
- QApplication.setWinStyleHighlightColor( Qt.blue )
+ TQApplication.setWinStyleHighlightColor( TQt.blue )
elif index == 4:
- QApplication.setWinStyleHighlightColor( Qt.red )
+ TQApplication.setWinStyleHighlightColor( TQt.red )
def lineEditTextChanged( self, newText ):
self.msg.setText("Line edit text: " + unicode(newText))
@@ -487,24 +487,24 @@ class WidgetView ( QWidget ):
#def eventFilter( self, event ):
# identify_now = TRUE
# if event.type() == Event_MouseButtonPress and identify_now:
- # e = QMouseEvent( event )
- # if (e.button() == Qt.RightButton) and (e.state() & Qt.ControlButton) != 0:
- # txt = QString( "The clicked widget is a\n" )
- # txt = txt + QObect.className()
+ # e = TQMouseEvent( event )
+ # if (e.button() == TQt.RightButton) and (e.state() & TQt.ControlButton) != 0:
+ # txt = TQString( "The clicked widget is a\n" )
+ # txt = txt + TQObect.className()
# txt = txt + "\nThe widget's name is\n"
- # if QObject.name():
- # txt = txt + QObject.name()
+ # if TQObject.name():
+ # txt = txt + TQObject.name()
# else:
# txt = txt + "<no name>"
# identify_now = FALSE # don't do it in message box
- # QMessageBox.message( "Identify Widget", txt, 0, QObject )
+ # TQMessageBox.message( "Identify Widget", txt, 0, TQObject )
# identify_now = TRUE; # allow it again
# return FALSE # don't eat event
################################################################################################
-#QApplication.setColourSpec( QApplication.CustomColor )
-a = QApplication( sys.argv )
+#TQApplication.setColourSpec( TQApplication.CustomColor )
+a = TQApplication( sys.argv )
w = WidgetView()
a.setMainWidget( w )