Initial commit (Vesion 0.1)
[tablet-suite] / src / ui / pcsbutton.py
diff --git a/src/ui/pcsbutton.py b/src/ui/pcsbutton.py
new file mode 100644 (file)
index 0000000..8175c81
--- /dev/null
@@ -0,0 +1,13 @@
+# Authors: Amaury Medeiros and Paulo Ouriques
+# Software License: GPL
+
+from PyQt4.QtCore import *
+from PyQt4.QtGui import *
+
+class PcsButton(QPushButton):
+    def __init__(self, name = "", parent = None):
+        QPushButton.__init__(self, parent)
+        self.setText(name)
+       
+
+