Resource file and enhanced article dialog
[biaweb_qt.git] / article_dialog.py
1 # BiaWeb Website content manager (c) 2010 V.Harishankar
2 # Category dialog class
3
4 import PyQt4
5 import ui_article_dialog
6
7 class ArticleDialog (PyQt4.QtGui.QDialog, ui_article_dialog.Ui_ArticleDialog):
8 def __init__ (self, parent):
9 PyQt4.QtGui.QDialog.__init__ (self, parent)
10 self.setupUi (self)
11