smesh/src/SMESHGUI/SMESHGUI_GroupDlg.h

177 lines
5.4 KiB
C
Raw Normal View History

2004-06-18 14:34:31 +06:00
// SMESH SMESHGUI : GUI for SMESH component
//
// Copyright (C) 2003 CEA
//
// 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.
//
// 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.
//
// 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
2004-06-18 14:34:31 +06:00
//
//
//
// File : SMESHGUI_GroupDlg.h
// Author : Natalia KOPNOVA
// Module : SMESH
// $Header$
#ifndef DIALOGBOX_GROUP_H
#define DIALOGBOX_GROUP_H
#include "LightApp_SelectionMgr.h"
//#include "SMESH_TypeFilter.hxx"
#include "SUIT_SelectionFilter.h"
2004-06-18 14:34:31 +06:00
// QT Includes
#include <qdialog.h>
#include <qvaluelist.h>
// IDL Headers
#include <SALOMEconfig.h>
#include CORBA_SERVER_HEADER(SMESH_Mesh)
#include CORBA_SERVER_HEADER(SMESH_Group)
class QLineEdit;
class QButtonGroup;
2004-12-01 15:48:31 +05:00
class QGroupBox;
2004-06-18 14:34:31 +06:00
class QListBox;
class QPushButton;
class QCheckBox;
2004-12-01 15:48:31 +05:00
class QWidgetStack;
class QtxIntSpinBox;
2004-06-18 14:34:31 +06:00
class SMESHGUI;
class SMESH_Actor;
class SMESHGUI_FilterDlg;
class SVTK_Selector;
class SVTK_ViewWindow;
2004-06-18 14:34:31 +06:00
//=================================================================================
// class : SMESHGUI_GroupDlg
// purpose :
//=================================================================================
class SMESHGUI_GroupDlg : public QDialog
{
Q_OBJECT
public:
SMESHGUI_GroupDlg( SMESHGUI*,
const char* name = 0,
2004-06-18 14:34:31 +06:00
SMESH::SMESH_Mesh_ptr theMesh = SMESH::SMESH_Mesh::_nil(),
bool modal = FALSE, WFlags fl = 0 );
SMESHGUI_GroupDlg( SMESHGUI*,
const char* name,
SMESH::SMESH_GroupBase_ptr theGroup,
bool modal = FALSE, WFlags fl = 0 );
2004-06-18 14:34:31 +06:00
~SMESHGUI_GroupDlg();
public slots:
void onAdd();
void onRemove();
private slots:
void onTypeChanged(int id);
2004-12-01 15:48:31 +05:00
void onGrpTypeChanged(int id);
2004-06-18 14:34:31 +06:00
void onOK();
void onClose();
bool onApply();
void onHelp();
2004-12-01 15:48:31 +05:00
void onDeactivate();
2004-06-18 14:34:31 +06:00
void onListSelectionChanged();
void onObjectSelectionChanged();
void onSelectSubMesh(bool on);
void onSelectGroup(bool on);
2004-12-01 15:48:31 +05:00
void onSelectGeomGroup(bool on);
void onSelectColorGroup(bool on);
2004-06-18 14:34:31 +06:00
void setCurrentSelection();
void setFilters();
void onSort();
void onNameChanged(const QString& text);
void onNbColorsChanged(const QString& text);
2004-12-01 15:48:31 +05:00
void onFilterAccepted();
2004-06-18 14:34:31 +06:00
private:
void initDialog(bool create);
2004-06-18 14:34:31 +06:00
void init(SMESH::SMESH_Mesh_ptr theMesh);
void init(SMESH::SMESH_GroupBase_ptr theGroup);
2004-06-18 14:34:31 +06:00
void closeEvent(QCloseEvent* e);
void enterEvent (QEvent*);
void hideEvent (QHideEvent*); /* ESC key */
2004-06-18 14:34:31 +06:00
void setSelectionMode(int theMode);
void updateButtons();
SMESHGUI* mySMESHGUI; /* Current SMESHGUI object */
LightApp_SelectionMgr* mySelectionMgr; /* User shape selection */
SMESH_Actor* myActor; /* Current mesh actor */
int myGrpTypeId; /* Current group type id : standalone or group on geometry */
int myTypeId; /* Current type id = radio button id */
QLineEdit* myCurrentLineEdit; /* Current LineEdit */
SVTK_Selector* mySelector;
2004-06-18 14:34:31 +06:00
2004-12-01 15:48:31 +05:00
QPushButton* myMeshGroupBtn;
QLineEdit* myMeshGroupLine;
2004-06-18 14:34:31 +06:00
QButtonGroup* myTypeGroup;
QLineEdit* myName;
2004-12-01 15:48:31 +05:00
QButtonGroup* myGrpTypeGroup;
QWidgetStack* myWGStack;
2004-06-18 14:34:31 +06:00
QListBox* myElements;
QPushButton* myFilter;
QCheckBox* mySelectSubMesh;
QPushButton* mySubMeshBtn;
QLineEdit* mySubMeshLine;
QCheckBox* mySelectGroup;
QPushButton* myGroupBtn;
QLineEdit* myGroupLine;
QCheckBox* mySelectColorGroup;
QtxIntSpinBox* myColorSpinBox;
2004-12-01 15:48:31 +05:00
QCheckBox* mySelectGeomGroup;
QPushButton* myGeomGroupBtn;
QLineEdit* myGeomGroupLine;
2004-06-18 14:34:31 +06:00
SMESH::SMESH_Mesh_var myMesh;
SMESH::SMESH_Group_var myGroup;
SMESH::SMESH_GroupOnGeom_var myGroupOnGeom;
2004-06-18 14:34:31 +06:00
QValueList<int> myIdList;
2004-12-01 15:48:31 +05:00
GEOM::GEOM_Object_var myGeomGroup;
2004-06-18 14:34:31 +06:00
int mySelectionMode;
//Handle(SMESH_TypeFilter) myMeshFilter;
//Handle(SMESH_TypeFilter) mySubMeshFilter;
//Handle(SMESH_TypeFilter) myGroupFilter;
SUIT_SelectionFilter* myMeshFilter;
SUIT_SelectionFilter* mySubMeshFilter;
SUIT_SelectionFilter* myGroupFilter;
2004-06-18 14:34:31 +06:00
SMESHGUI_FilterDlg* myFilterDlg;
2004-12-01 15:48:31 +05:00
2005-06-08 12:18:53 +06:00
bool myCreate, myIsBusy;
QString myHelpFileName;
2004-06-18 14:34:31 +06:00
};
#endif // DIALOGBOX_GROUP_H