예제 #1
0
class HashmalGui(object):
    def __init__(self):
        super(HashmalGui, self).__init__()
        self.app = QApplication(sys.argv)

    def main(self):
        self.main_window = HashmalMain(self.app)
        self.main_window.show()
        sys.exit(self.app.exec_())
예제 #2
0
class HashmalGui(object):
    def __init__(self):
	from PyQt4.QtGui import QApplication
        super(HashmalGui, self).__init__()
        self.app = QApplication(sys.argv)

    def main(self):
	from main_window import HashmalMain
        self.main_window = HashmalMain(self.app)
        self.main_window.show()
        sys.exit(self.app.exec_())
예제 #3
0
    def main(self):
	from main_window import HashmalMain
        self.main_window = HashmalMain(self.app)
        self.main_window.show()
        sys.exit(self.app.exec_())
예제 #4
0
 def main(self):
     self.main_window = HashmalMain(self.app)
     self.main_window.show()
     sys.exit(self.app.exec_())