Initial commit (Vesion 0.1)
[tablet-suite] / src / ui / pcsbutton.py
1 # Authors: Amaury Medeiros and Paulo Ouriques
2 # Software License: GPL
3
4 from PyQt4.QtCore import *
5 from PyQt4.QtGui import *
6
7 class PcsButton(QPushButton):
8     def __init__(self, name = "", parent = None):
9         QPushButton.__init__(self, parent)
10         self.setText(name)
11        
12
13