~martin.bohm/adept/adept-resolver

« back to all changes in this revision

Viewing changes to AdeptResolverDialog.py

  • Committer: Martin Böhm
  • Date: 2007-06-18 21:39:15 UTC
  • Revision ID: martin.bohm@kubuntu.org-20070618213915-c8ntwbj0jefq83gp
Fixed a minor bug with the UI

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
# Form implementation generated from reading ui file 'AdeptResolverDialog.ui'
4
4
#
5
 
# Created: Po čen 18 23:03:46 2007
 
5
# Created: Po čen 18 23:37:49 2007
6
6
#      by: The PyQt User Interface Compiler (pyuic) 3.17
7
7
#
8
8
# WARNING! All changes made in this file will be lost!
60
60
        self.resize(QSize(378,110).expandedTo(self.minimumSizeHint()))
61
61
        self.clearWState(Qt.WState_Polished)
62
62
 
 
63
        self.connect(self.closeButton,SIGNAL("clicked()"),self.closeButtonClicked)
 
64
        self.connect(self.showDetailsButton,SIGNAL("clicked()"),self.showTerminal)
63
65
 
64
66
 
65
67
    def languageChange(self):
71
73
        self.closeButton.setAccel(QKeySequence(self.__tr("Alt+C")))
72
74
 
73
75
 
 
76
    def closeButtonClicked(self):
 
77
        print "AdeptResolverDialog.closeButtonClicked(): Not implemented yet"
 
78
 
 
79
    def showTerminal(self):
 
80
        print "AdeptResolverDialog.showTerminal(): Not implemented yet"
 
81
 
74
82
    def __tr(self,s,c = None):
75
83
        return qApp.translate("AdeptResolverDialog",s,c)
76
84