You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-guidance/powermanager/tooltip.py

58 lines
1.5 KiB

# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'tooltip.ui'
#
# Created: Thu Apr 10 00:50:39 2008
# by: The PyQt User Interface Compiler (pyuic) 3.17.4
#
# WARNING! All changes made in this file will be lost!
import sys
from qt import *
from kdecore import KCmdLineArgs, KApplication
from kdecore import i18n
from kdeui import *
from kdeui import *
class ToolTip(QWidget):
def __init__(self,parent = None,name = None,fl = 0):
QWidget.__init__(self,parent,name,fl)
if not name:
self.setName("ToolTip")
self.setSizePolicy(QSizePolicy(QSizePolicy.MinimumExpanding,QSizePolicy.MinimumExpanding,0,0,self.sizePolicy().hasHeightForWidth()))
self.setMinimumSize(QSize(240,0))
self.setBaseSize(QSize(200,0))
ToolTipLayout = QVBoxLayout(self,0,6,"ToolTipLayout")
self.languageChange()
self.resize(QSize(300,80).expandedTo(self.minimumSizeHint()))
self.clearWState(Qt.WState_Polished)
def languageChange(self):
self.setCaption(i18n("Form1"))
def ToolTip_destroyed(self,a0):
print "ToolTip.ToolTip_destroyed(QObject*): Not implemented yet"
if __name__ == "__main__":
appname = ""
description = ""
version = ""
KCmdLineArgs.init (sys.argv, appname, description, version)
a = KApplication ()
QObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
w = ToolTip()
a.setMainWidget(w)
w.show()
a.exec_loop()