Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
1fd6955e
Commit
1fd6955e
authored
13 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
model extension
parent
d66cf65d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Fltk/onelabWindow.cpp
+10
-2
10 additions, 2 deletions
Fltk/onelabWindow.cpp
Fltk/onelabWindow.h
+3
-0
3 additions, 0 deletions
Fltk/onelabWindow.h
with
13 additions
and
2 deletions
Fltk/onelabWindow.cpp
+
10
−
2
View file @
1fd6955e
...
@@ -322,15 +322,19 @@ void onelab_cb(Fl_Widget *w, void *data)
...
@@ -322,15 +322,19 @@ void onelab_cb(Fl_Widget *w, void *data)
action
=
"initial check"
;
action
=
"initial check"
;
}
}
std
::
string
ext
=
FlGui
::
instance
()
->
onelab
->
getModelExtension
();
if
(
action
==
"choose model"
){
if
(
action
==
"choose model"
){
if
(
fileChooser
(
FILE_CHOOSER_SINGLE
,
"Choose"
,
"*.pro"
))
std
::
string
pattern
=
"*"
;
pattern
+=
ext
;
if
(
fileChooser
(
FILE_CHOOSER_SINGLE
,
"Choose"
,
pattern
.
c_str
()))
FlGui
::
instance
()
->
onelab
->
setModelName
(
fileChooserGetName
(
1
));
FlGui
::
instance
()
->
onelab
->
setModelName
(
fileChooserGetName
(
1
));
action
=
"check"
;
action
=
"check"
;
}
}
if
(
FlGui
::
instance
()
->
onelab
->
getModelName
().
empty
()){
if
(
FlGui
::
instance
()
->
onelab
->
getModelName
().
empty
()){
std
::
vector
<
std
::
string
>
split
=
SplitFileName
(
GModel
::
current
()
->
getFileName
());
std
::
vector
<
std
::
string
>
split
=
SplitFileName
(
GModel
::
current
()
->
getFileName
());
FlGui
::
instance
()
->
onelab
->
setModelName
(
split
[
0
]
+
split
[
1
]
+
".pro"
);
FlGui
::
instance
()
->
onelab
->
setModelName
(
split
[
0
]
+
split
[
1
]
+
ext
);
}
}
FlGui
::
instance
()
->
onelab
->
deactivate
();
FlGui
::
instance
()
->
onelab
->
deactivate
();
...
@@ -629,6 +633,10 @@ void onelabWindow::addSolver(const std::string &name, const std::string &command
...
@@ -629,6 +633,10 @@ void onelabWindow::addSolver(const std::string &name, const std::string &command
onelab
::
localNetworkClient
*
c
=
new
onelab
::
localNetworkClient
(
name
,
commandLine
);
onelab
::
localNetworkClient
*
c
=
new
onelab
::
localNetworkClient
(
name
,
commandLine
);
c
->
setIndex
(
index
);
c
->
setIndex
(
index
);
if
(
commandLine
.
empty
())
onelab_choose_executable_cb
(
0
,
(
void
*
)
c
);
if
(
commandLine
.
empty
())
onelab_choose_executable_cb
(
0
,
(
void
*
)
c
);
if
(
name
==
"GetDP"
)
setModelExtension
(
".pro"
);
else
setModelExtension
(
".py"
);
}
}
FlGui
::
instance
()
->
onelab
->
rebuildSolverList
();
FlGui
::
instance
()
->
onelab
->
rebuildSolverList
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Fltk/onelabWindow.h
+
3
−
0
View file @
1fd6955e
...
@@ -25,6 +25,7 @@ class onelabWindow{
...
@@ -25,6 +25,7 @@ class onelabWindow{
Fl_Menu_Button
*
_gear
;
Fl_Menu_Button
*
_gear
;
std
::
vector
<
Fl_Widget
*>
_treeWidgets
;
std
::
vector
<
Fl_Widget
*>
_treeWidgets
;
std
::
string
_title
;
std
::
string
_title
;
std
::
string
_modelExtension
;
public:
public:
onelabWindow
(
int
deltaFontSize
=
0
);
onelabWindow
(
int
deltaFontSize
=
0
);
int
x
(){
return
_win
->
x
();
}
int
x
(){
return
_win
->
x
();
}
...
@@ -38,6 +39,8 @@ class onelabWindow{
...
@@ -38,6 +39,8 @@ class onelabWindow{
int
shown
(){
return
_win
->
shown
();
}
int
shown
(){
return
_win
->
shown
();
}
std
::
string
getModelName
(){
return
_model
->
value
();
}
std
::
string
getModelName
(){
return
_model
->
value
();
}
void
setModelName
(
const
std
::
string
&
name
){
_model
->
value
(
name
.
c_str
());
}
void
setModelName
(
const
std
::
string
&
name
){
_model
->
value
(
name
.
c_str
());
}
std
::
string
getModelExtension
(){
return
_modelExtension
;
}
void
setModelExtension
(
const
std
::
string
&
ext
){
_modelExtension
=
ext
;
}
int
meshAuto
(){
return
_gear
->
menu
()[
1
].
value
();
}
int
meshAuto
(){
return
_gear
->
menu
()[
1
].
value
();
}
std
::
string
getPath
(
Fl_Tree_Item
*
item
)
std
::
string
getPath
(
Fl_Tree_Item
*
item
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment