Initial commit (Vesion 0.1)
[tablet-suite] / src / ui / pcsapp.py
diff --git a/src/ui/pcsapp.py b/src/ui/pcsapp.py
new file mode 100644 (file)
index 0000000..f901392
--- /dev/null
@@ -0,0 +1,16 @@
+# Authors: Amaury Medeiros and Paulo Ouriques
+# Software License: GPL
+
+from PyQt4.QtCore import *
+from PyQt4.QtGui import *
+
+from ui.pcsuiutils import *
+
+class PcsApp(QDialog):
+    
+    ''' Class that represents an application from Pc Suite'''
+    
+    def __init__(self, parent=None):
+        super(PcsApp, self).__init__(parent)
+        self.setFixedSize(WINDOW_WIDTH, WINDOW_HEIGHT)
+    
\ No newline at end of file