# -*- 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()