2012-08-09 13:58:02 +06:00
|
|
|
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +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.
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +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.
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +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
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
// GEOM GEOMGUI : GUI for Geometry component
|
|
|
|
// File : GroupGUI.cxx
|
|
|
|
// Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
|
2004-12-01 15:39:14 +05:00
|
|
|
//
|
|
|
|
#include "GroupGUI.h"
|
|
|
|
#include "GroupGUI_GroupDlg.h"
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <GeometryGUI.h>
|
2012-08-09 13:58:02 +06:00
|
|
|
#include "GeometryGUI_Operations.h"
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <GEOMBase.h>
|
|
|
|
#include <GEOMImpl_Types.hxx>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <SUIT_Session.h>
|
|
|
|
#include <SUIT_Desktop.h>
|
|
|
|
#include <SUIT_MessageBox.h>
|
|
|
|
#include <SalomeApp_Application.h>
|
|
|
|
#include <SalomeApp_Study.h>
|
|
|
|
#include <LightApp_SelectionMgr.h>
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : GroupGUI()
|
|
|
|
// purpose : Constructor
|
|
|
|
//=======================================================================
|
2009-02-13 17:16:39 +05:00
|
|
|
GroupGUI::GroupGUI( GeometryGUI* parent )
|
|
|
|
: GEOMGUI( parent )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : ~GroupGUI()
|
|
|
|
// purpose : Destructor
|
|
|
|
//=======================================================================
|
|
|
|
GroupGUI::~GroupGUI()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : OnGUIEvent()
|
|
|
|
// purpose :
|
|
|
|
//=======================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
bool GroupGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2008-03-07 12:45:34 +05:00
|
|
|
SalomeApp_Application* app = getGeometryGUI()->getApp();
|
|
|
|
if ( !app ) return false;
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
getGeometryGUI()->EmitSignalDeactivateDialog();
|
2006-05-06 14:44:32 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
QDialog* aDlg = 0;
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
|
2005-06-02 13:17:09 +06:00
|
|
|
if ( !appStudy ) return false;
|
|
|
|
_PTR(Study) aStudy = appStudy->studyDS();
|
2006-05-06 14:44:32 +06:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
if ( aStudy->GetProperties()->IsLocked() ) {
|
2009-02-13 17:16:39 +05:00
|
|
|
SUIT_MessageBox::warning( parent,
|
2012-08-09 13:58:02 +06:00
|
|
|
tr( "WRN_WARNING" ),
|
|
|
|
tr( "WRN_STUDY_LOCKED" ) );
|
2004-12-01 15:39:14 +05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ( theCommandID ) {
|
2012-08-09 13:58:02 +06:00
|
|
|
case GEOMOp::OpGroupCreate:
|
|
|
|
case GEOMOp::OpGroupCreatePopup: // CREATE GROUP
|
2009-02-13 17:16:39 +05:00
|
|
|
aDlg = new GroupGUI_GroupDlg( GroupGUI_GroupDlg::CreateGroup, getGeometryGUI(), parent );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
2012-08-09 13:58:02 +06:00
|
|
|
case GEOMOp::OpGroupEdit: // EDIT GROUP
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
SALOME_ListIO aList;
|
|
|
|
aList.Clear();
|
2006-05-06 14:44:32 +06:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
|
2009-02-13 17:16:39 +05:00
|
|
|
if ( aSelMgr )
|
|
|
|
aSelMgr->selectedObjects( aList );
|
2005-06-02 13:17:09 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
if ( aList.Extent() == 1 ) {
|
2012-08-09 13:58:02 +06:00
|
|
|
GEOM::GEOM_Object_var anObj =
|
|
|
|
GEOMBase::ConvertIOinGEOMObject( aList.First() );
|
|
|
|
|
|
|
|
if ( !CORBA::is_nil( anObj ) && anObj->GetType() == GEOM_GROUP ) {
|
|
|
|
aDlg = new GroupGUI_GroupDlg( GroupGUI_GroupDlg::EditGroup, getGeometryGUI(), parent );
|
|
|
|
break;
|
|
|
|
}
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2009-02-13 17:16:39 +05:00
|
|
|
SUIT_MessageBox::warning( parent, tr( "WRN_WARNING" ), tr( "NO_GROUP" ) );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2009-02-13 17:16:39 +05:00
|
|
|
app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
}
|
2006-05-06 14:44:32 +06:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
if ( aDlg ) {
|
|
|
|
aDlg->updateGeometry();
|
|
|
|
aDlg->resize( aDlg->minimumSizeHint() );
|
2004-12-01 15:39:14 +05:00
|
|
|
aDlg->show();
|
2009-02-13 17:16:39 +05:00
|
|
|
}
|
2006-05-06 14:44:32 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//=====================================================================================
|
|
|
|
// EXPORTED METHODS
|
|
|
|
//=====================================================================================
|
|
|
|
extern "C"
|
|
|
|
{
|
2009-02-13 17:16:39 +05:00
|
|
|
#ifdef WIN32
|
|
|
|
__declspec( dllexport )
|
2005-08-29 12:03:08 +06:00
|
|
|
#endif
|
2009-02-13 17:16:39 +05:00
|
|
|
GEOMGUI* GetLibGUI( GeometryGUI* p )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2009-02-13 17:16:39 +05:00
|
|
|
return new GroupGUI( p );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
}
|