# 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)