mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-03 20:14:29 +05:00
Fix for bug PAL8377 (ExportToMed TUI vs GUI: how to set the value of the boolean "auto_groups"?).
This commit is contained in:
parent
7d9ae6b54f
commit
d1cf3c4101
@ -81,8 +81,9 @@
|
|||||||
|
|
||||||
#include "SalomeApp_Tools.h"
|
#include "SalomeApp_Tools.h"
|
||||||
#include "SalomeApp_Study.h"
|
#include "SalomeApp_Study.h"
|
||||||
#include "LightApp_DataOwner.h"
|
|
||||||
#include "SalomeApp_Application.h"
|
#include "SalomeApp_Application.h"
|
||||||
|
#include "SalomeApp_CheckFileDlg.h"
|
||||||
|
#include "LightApp_DataOwner.h"
|
||||||
#include "LightApp_Preferences.h"
|
#include "LightApp_Preferences.h"
|
||||||
#include "LightApp_VTKSelector.h"
|
#include "LightApp_VTKSelector.h"
|
||||||
#include "LightApp_Operation.h"
|
#include "LightApp_Operation.h"
|
||||||
@ -287,7 +288,12 @@ namespace{
|
|||||||
|
|
||||||
QString aFilename;
|
QString aFilename;
|
||||||
SMESH::MED_VERSION aFormat;
|
SMESH::MED_VERSION aFormat;
|
||||||
|
// Init the parameter with the default value
|
||||||
|
bool toCreateGroups = false;
|
||||||
|
SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
|
||||||
|
if ( resMgr )
|
||||||
|
toCreateGroups = resMgr->booleanValue( "SMESH", "auto_groups", false );
|
||||||
|
|
||||||
if ( theCommandID != 122 && theCommandID != 125 )
|
if ( theCommandID != 122 && theCommandID != 125 )
|
||||||
aFilename = SUIT_FileDlg::getFileName(SMESHGUI::desktop(), "", aFilter, aTitle, false);
|
aFilename = SUIT_FileDlg::getFileName(SMESHGUI::desktop(), "", aFilter, aTitle, false);
|
||||||
else
|
else
|
||||||
@ -296,10 +302,12 @@ namespace{
|
|||||||
for ( QMap<QString, SMESH::MED_VERSION>::const_iterator it = aFilterMap.begin(); it != aFilterMap.end(); ++it )
|
for ( QMap<QString, SMESH::MED_VERSION>::const_iterator it = aFilterMap.begin(); it != aFilterMap.end(); ++it )
|
||||||
filters.push_back( it.key() );
|
filters.push_back( it.key() );
|
||||||
|
|
||||||
SUIT_FileDlg* fd = new SUIT_FileDlg( SMESHGUI::desktop(), false, true, true );
|
//SUIT_FileDlg* fd = new SUIT_FileDlg( SMESHGUI::desktop(), false, true, true );
|
||||||
|
SalomeApp_CheckFileDlg* fd = new SalomeApp_CheckFileDlg( SMESHGUI::desktop(), false, QObject::tr("SMESH_AUTO_GROUPS") ,true, true );
|
||||||
fd->setCaption( aTitle );
|
fd->setCaption( aTitle );
|
||||||
fd->setFilters( filters );
|
fd->setFilters( filters );
|
||||||
fd->setSelectedFilter( QObject::tr("MED 2.2 (*.med)") );
|
fd->setSelectedFilter( QObject::tr("MED 2.2 (*.med)") );
|
||||||
|
fd->SetChecked(toCreateGroups);
|
||||||
bool is_ok = false;
|
bool is_ok = false;
|
||||||
while(!is_ok){
|
while(!is_ok){
|
||||||
fd->exec();
|
fd->exec();
|
||||||
@ -320,6 +328,7 @@ namespace{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
toCreateGroups = fd->IsChecked();
|
||||||
delete fd;
|
delete fd;
|
||||||
}
|
}
|
||||||
if ( !aFilename.isEmpty() ) {
|
if ( !aFilename.isEmpty() ) {
|
||||||
@ -331,7 +340,7 @@ namespace{
|
|||||||
switch ( theCommandID ) {
|
switch ( theCommandID ) {
|
||||||
case 125:
|
case 125:
|
||||||
case 122:
|
case 122:
|
||||||
aMesh->ExportToMED( aFilename.latin1(), false, aFormat ); // currently, automatic groups are never created
|
aMesh->ExportToMED( aFilename.latin1(), toCreateGroups, aFormat );
|
||||||
break;
|
break;
|
||||||
case 124:
|
case 124:
|
||||||
case 121:
|
case 121:
|
||||||
@ -2886,6 +2895,9 @@ void SMESHGUI::createPreferences()
|
|||||||
setPreferenceProperty( dispmode, "strings", modes );
|
setPreferenceProperty( dispmode, "strings", modes );
|
||||||
setPreferenceProperty( dispmode, "indexes", indices );
|
setPreferenceProperty( dispmode, "indexes", indices );
|
||||||
|
|
||||||
|
int exportgroup = addPreference( tr( "PREF_GROUP_EXPORT" ), genTab );
|
||||||
|
addPreference( tr( "PREF_AUTO_GROUPS" ), exportgroup, LightApp_Preferences::Bool, "SMESH", "auto_groups" );
|
||||||
|
|
||||||
int meshTab = addPreference( tr( "PREF_TAB_MESH" ) );
|
int meshTab = addPreference( tr( "PREF_TAB_MESH" ) );
|
||||||
int nodeGroup = addPreference( tr( "PREF_GROUP_NODES" ), meshTab );
|
int nodeGroup = addPreference( tr( "PREF_GROUP_NODES" ), meshTab );
|
||||||
|
|
||||||
|
@ -1247,6 +1247,9 @@ msgstr "During export mesh with name - \"%1\" to MED 2.1\n"
|
|||||||
msgid "INF_SELECT_OBJECT"
|
msgid "INF_SELECT_OBJECT"
|
||||||
msgstr "Select an object"
|
msgstr "Select an object"
|
||||||
|
|
||||||
|
msgid "SMESH_AUTO_GROUPS"
|
||||||
|
msgstr "Automatically create groups"
|
||||||
|
|
||||||
#----------------------------------------------------
|
#----------------------------------------------------
|
||||||
|
|
||||||
msgid "SMESHGUI_FilterLibraryDlg::ADD_TO_TLT"
|
msgid "SMESHGUI_FilterLibraryDlg::ADD_TO_TLT"
|
||||||
@ -2775,6 +2778,9 @@ msgstr "General"
|
|||||||
msgid "SMESHGUI::PREF_GROUP_UPDATE"
|
msgid "SMESHGUI::PREF_GROUP_UPDATE"
|
||||||
msgstr "Update"
|
msgstr "Update"
|
||||||
|
|
||||||
|
msgid "SMESHGUI::PREF_GROUP_EXPORT"
|
||||||
|
msgstr "Mesh export"
|
||||||
|
|
||||||
msgid "SMESHGUI::PREF_GROUP_QUALITY"
|
msgid "SMESHGUI::PREF_GROUP_QUALITY"
|
||||||
msgstr "Quality controls"
|
msgstr "Quality controls"
|
||||||
|
|
||||||
@ -2850,6 +2856,12 @@ msgstr "Elements"
|
|||||||
msgid "SMESHGUI::PREF_DISPLAY_MODE"
|
msgid "SMESHGUI::PREF_DISPLAY_MODE"
|
||||||
msgstr "Display mode"
|
msgstr "Display mode"
|
||||||
|
|
||||||
|
msgid "SMESHGUI::PREF_GROUP_EXPORT"
|
||||||
|
msgstr "Export"
|
||||||
|
|
||||||
|
msgid "SMESHGUI::PREF_AUTO_GROUPS"
|
||||||
|
msgstr "Automatically create groups for MED export"
|
||||||
|
|
||||||
#-----------------------------------------------------------
|
#-----------------------------------------------------------
|
||||||
|
|
||||||
msgid "SMESHGUI_MeshDlg::DIM_1D"
|
msgid "SMESHGUI_MeshDlg::DIM_1D"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user