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.
calculate-utils-3-console-gui/api/gui/tools.py

14 lines
412 B

# -*- coding: utf-8 -*-
from PySide import QtGui
class ToolsWidget (QtGui.QWidget):
def __init__(self, parent):
QtGui.QWidget.__init__(self)
helpLabel = QtGui.QLabel('about calculate Inc.')
helpQuit = QtGui.QPushButton("Quit")
layout = QtGui.QVBoxLayout()
layout.addWidget(helpLabel)
layout.addWidget(helpQuit)
self.setLayout(layout)