Initial commit (Vesion 0.1)
[tablet-suite] / src / ui / .svn / text-base / pcsapp.py.svn-base
1 # Authors: Amaury Medeiros and Paulo Ouriques
2 # Software License: GPL
3
4 from PyQt4.QtCore import *
5 from PyQt4.QtGui import *
6
7 from ui.pcsuiutils import *
8
9 class PcsApp(QDialog):
10     
11     ''' Class that represents an application from Pc Suite'''
12     
13     def __init__(self, parent=None):
14         super(PcsApp, self).__init__(parent)
15         self.setFixedSize(WINDOW_WIDTH, WINDOW_HEIGHT)
16