Salome HOME
add XAO import and modify export
[modules/geom.git] / src / ImportExportGUI / ImportExportGUI_ImportXAODlg.h
1 //  Copyright (C) 2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18
19 #ifndef IMPORTEXPORTGUI_IMPORTXAODLG_H
20 #define IMPORTEXPORTGUI_IMPORTXAODLG_H
21
22 #include <GEOMBase_Skeleton.h>
23 #include <GEOM_GenericObjPtr.h>
24
25 class QLineEdit;
26 class QButtonGroup;
27 class QListWidget;
28
29 //=================================================================================
30 // class    : ImportExportGUI_ImportXAODlg
31 // purpose  :
32 //=================================================================================
33 class ImportExportGUI_ImportXAODlg: public GEOMBase_Skeleton
34 {
35     Q_OBJECT
36
37 public:
38     ImportExportGUI_ImportXAODlg(GeometryGUI*, QWidget* = 0);
39     ~ImportExportGUI_ImportXAODlg();
40
41 protected:
42     // redefined from GEOMBase_Helper
43     virtual GEOM::GEOM_IOperations_ptr createOperation();
44     virtual bool isValid(QString&);
45     virtual bool execute(ObjectList&);
46     virtual GEOM::GEOM_Object_ptr getFather(GEOM::GEOM_Object_ptr object);
47     virtual QString getObjectName(GEOM::GEOM_Object_ptr object) const;
48
49 private:
50     void Init();
51     void enterEvent(QEvent*);
52
53 private:
54     QLineEdit* ledFileName;
55     QPushButton* btnFileSelect;
56
57 private slots:
58     void ClickOnOk();
59     bool ClickOnApply();
60     void ActivateThisDialog();
61     void LineEditReturnPressed();
62     void btnFileSelectClicked();
63 };
64
65 #endif // IMPORTEXPORTGUI_EXPORTXAODLG_H