Skip to content
Snippets Groups Projects
Commit 1fd6955e authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

model extension

parent d66cf65d
No related branches found
No related tags found
No related merge requests found
...@@ -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();
} }
......
...@@ -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)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment