Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/superv.git] / src / SUPERVGUI / SUPERVGUI_Service.h
index 6fb1f56e41f5fe793b50e5e7a2889279eaae4337..f28da4ce52a247935ba6cb6858c0171c16758fa4 100644 (file)
@@ -115,7 +115,8 @@ private:
 private slots:
     void tabChanged(QWidget *);
     void addComputeNode();
-    void addFactoryNode();
+    void addFactoryNodeDef();
+    void addFactoryNodeCust();
     void addInlineNode();
     void addMacroNode();
     void typeNodeSelected(int theRow);
@@ -210,4 +211,28 @@ private:
   SUPERVGUI_PythonEditPane* myNextPane;
 };
 
+class SUPERVGUI_CustomSettings: public QDialog {
+  Q_OBJECT
+
+  public:
+    SUPERVGUI_CustomSettings(QListViewItem* theItem, bool isMultiSel, bool isCimpl);
+    virtual ~SUPERVGUI_CustomSettings();
+
+    QString Author();
+    QString Container();
+    QString Comment();
+
+  private slots:
+    void okButton();
+    void koButton();
+
+  private:
+
+    QLineEdit*      authV;
+    QLineEdit*      contV;
+    QLabel*         contL;
+
+    QMultiLineEdit* commV;
+};
+
 #endif