2020-04-15 18:11:00 +05:00
|
|
|
// Copyright (C) 2013-2020 CEA/DEN, EDF R&D, OPEN CASCADE
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2013-10-02 19:13:33 +06:00
|
|
|
//
|
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
#ifndef XAOPlugin_ExportDlg_H
|
|
|
|
#define XAOPlugin_ExportDlg_H
|
2013-10-02 19:13:33 +06:00
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
// GEOM includes
|
|
|
|
#include "GEOMBase_Skeleton.h"
|
2013-10-02 19:13:33 +06:00
|
|
|
|
|
|
|
class QLineEdit;
|
|
|
|
class QButtonGroup;
|
|
|
|
class QListWidget;
|
2014-06-04 17:17:38 +06:00
|
|
|
class QPushButton;
|
2016-12-15 20:36:42 +05:00
|
|
|
class QCheckBox;
|
2013-10-02 19:13:33 +06:00
|
|
|
|
|
|
|
//=================================================================================
|
2014-06-04 17:17:38 +06:00
|
|
|
// class : XAOPlugin_ExportDlg
|
2013-10-02 19:13:33 +06:00
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
2014-06-04 17:17:38 +06:00
|
|
|
class XAOPlugin_ExportDlg: public GEOMBase_Skeleton
|
2013-10-02 19:13:33 +06:00
|
|
|
{
|
2014-06-04 17:17:38 +06:00
|
|
|
Q_OBJECT
|
2013-10-02 19:13:33 +06:00
|
|
|
|
|
|
|
public:
|
2014-06-04 17:17:38 +06:00
|
|
|
XAOPlugin_ExportDlg(GeometryGUI*, QWidget* = 0);
|
|
|
|
~XAOPlugin_ExportDlg();
|
2013-10-02 19:13:33 +06:00
|
|
|
|
|
|
|
protected:
|
2014-06-04 17:17:38 +06:00
|
|
|
// redefined from GEOMBase_Helper
|
|
|
|
virtual GEOM::GEOM_IOperations_ptr createOperation();
|
|
|
|
virtual bool isValid(QString&);
|
|
|
|
virtual bool execute();
|
2013-10-02 19:13:33 +06:00
|
|
|
|
|
|
|
private:
|
2014-06-04 17:17:38 +06:00
|
|
|
void Init();
|
|
|
|
void enterEvent(QEvent*);
|
|
|
|
void processObject();
|
2013-10-02 19:13:33 +06:00
|
|
|
|
|
|
|
private:
|
2014-06-04 17:17:38 +06:00
|
|
|
GEOM::GEOM_Object_var m_mainObj;
|
|
|
|
QList<GEOM::GeomObjPtr> m_groups;
|
|
|
|
QList<GEOM::GeomFieldPtr> m_fields;
|
|
|
|
QLineEdit* ledShape;
|
|
|
|
QLineEdit* ledFileName;
|
|
|
|
QLineEdit* ledAuthor;
|
2016-12-15 20:36:42 +05:00
|
|
|
QCheckBox* ckxUseSeparateFile;
|
2014-06-04 17:17:38 +06:00
|
|
|
QListWidget* lstGroups;
|
|
|
|
QListWidget* lstFields;
|
|
|
|
QPushButton* btnShapeSelect;
|
|
|
|
QPushButton* btnFileSelect;
|
2013-10-02 19:13:33 +06:00
|
|
|
|
|
|
|
private slots:
|
2014-06-04 17:17:38 +06:00
|
|
|
void ClickOnOk();
|
|
|
|
bool ClickOnApply();
|
|
|
|
void ActivateThisDialog();
|
|
|
|
void SelectionIntoArgument();
|
|
|
|
void SetEditCurrentArgument();
|
|
|
|
void btnFileSelectClicked();
|
2013-10-02 19:13:33 +06:00
|
|
|
};
|
|
|
|
|
2014-06-04 17:17:38 +06:00
|
|
|
#endif // XAOPlugin_ExportDlg_H
|