]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
"GAUSS viewer" command moved to "New window" menu.
authorasv <asv@opencascade.com>
Fri, 19 Aug 2005 12:16:55 +0000 (12:16 +0000)
committerasv <asv@opencascade.com>
Fri, 19 Aug 2005 12:16:55 +0000 (12:16 +0000)
src/VISUGUI/VISUM_msg_en.po
src/VISUGUI/VisuGUI_Module.cxx

index 62899b51e2f4942eee2c69899fbbc271b8e1de1b..1b0b0fc3733e877914d1eed56382df36d7a517fd 100644 (file)
@@ -10,7 +10,7 @@ msgid "VisuGUI_Module::MEN_GAUSS"
 msgstr "Gauss"
 
 msgid "VisuGUI_Module::MEN_GAUSS_NEW_VIEWER"
-msgstr "New Viewer"
+msgstr "GAUSS Viewer"
 
 msgid "VisuGUI_Module::VISU_GAUSS_PREF_TAB_TLT"
 msgstr "Gauss Points"
index 01aff07953d02c1a9d45c2bd5166182ccb59217a..5b77c115b6db3aab4a810eca3b642b254edcb456 100644 (file)
@@ -148,21 +148,22 @@ VisuGUI_Module
 {
   VisuGUI::initialize( theApp );
 
-  // Add menus
-  int aMenuId;
-  aMenuId = createMenu( tr( "MEN_GAUSS" ), -1, -1, 30 );
+  // create actions and add menus
   createAction( GAUSS_NEW_VIEWER, tr("MEN_GAUSS_NEW_VIEWER"), QIconSet(),
                 tr("MEN_GAUSS_NEW_VIEWER"), "", 0, this, false,
                 this, SLOT(onCreateViewManager()));
-  createMenu( GAUSS_NEW_VIEWER, aMenuId, 10 );
-
   createAction( GAUSS_CREATE_PRS, tr("MEN_GAUSS_CREATE_PRS"), QIconSet(),
                 tr("MEN_GAUSS_CREATE_PRS"), "", 0, this, false,
                 this, SLOT(OnCreateGaussPoints()));
+
+  int windowMenu = createMenu( tr( "MEN_DESK_WINDOW" ), -1, 100 );
+  int newWinMenu = createMenu( tr( "MEN_DESK_NEWWINDOW" ), windowMenu, -1, 0 );
+  int gaussMenu = createMenu( action( GAUSS_NEW_VIEWER ), newWinMenu, -1 );
+  
+  int aMenuId = createMenu( tr( "MEN_GAUSS" ), -1, -1, 30 );
   createMenu( GAUSS_CREATE_PRS, aMenuId, 10 );
 }
 
-
 //---------------------------------------------------------------
 bool
 VisuGUI_Module