Package mcbase :: Package widgets :: Module mcwindow
[hide private]
[frames] | no frames]

Source Code for Module mcbase.widgets.mcwindow

 1  # -*- coding: utf-8 -*- 
 2   
 3  ############################################################################ 
 4  # mcwindow.py 
 5  # 
 6  # MOCOP Main Window Widget 
 7  # 
 8  # (C) 2008 Likya Software Ltd. 
 9  ############################################################################ 
10   
11  from PyQt4.Qt import * 
12  from mcscreen import MCScreen 
13   
14 -class MCWindow(QMainWindow, MCScreen):
15 ''' 16 Parent class of MC views 17 '''
18 - def __init__(self, parent):
19 ''' 20 Initializes the mcwindow widget 21 ''' 22 QMainWindow.__init__(self, parent) 23 MCScreen.__init__(self)
24