Advertisement
Guest User

Untitled

a guest
May 1st, 2014
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1.    
  2.  
  3.     class Ui_AlertDialog(object):
  4.         def setupUi(self, alert_dialog):
  5.             # set up the dialog
  6.             pass
  7.      
  8.      
  9.     class AlertForm(QtGui.QDialog, Ui_AlertDialog):
  10.         def __init__(self, plugin):
  11.             super(AlertForm, self).__init__(Registry().get('main_window'))
  12.             self.setupUi(self)
  13.             # ....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement