Resource file and enhanced article dialog
[biaweb_qt.git] / article_dialog.py
diff --git a/article_dialog.py b/article_dialog.py
new file mode 100644 (file)
index 0000000..787f8d2
--- /dev/null
@@ -0,0 +1,11 @@
+# BiaWeb Website content manager (c) 2010 V.Harishankar
+# Category dialog class
+
+import PyQt4
+import ui_article_dialog
+
+class ArticleDialog (PyQt4.QtGui.QDialog, ui_article_dialog.Ui_ArticleDialog):
+       def __init__ (self, parent):
+               PyQt4.QtGui.QDialog.__init__ (self, parent)
+               self.setupUi (self)
+