X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fgenericgui%2FBL_JobsManager_QT.hxx;h=a57a55852c4fdbd899902b0df8e176d359eba122;hb=fafdcee64180ce59122b48b01f869eb35f681b34;hp=b1b09802df08feb0eeeaac241e2fb6854b91481c;hpb=97482df035ee6e97dde980312a5b02d356b03702;p=modules%2Fjobmanager.git diff --git a/src/genericgui/BL_JobsManager_QT.hxx b/src/genericgui/BL_JobsManager_QT.hxx index b1b0980..a57a558 100644 --- a/src/genericgui/BL_JobsManager_QT.hxx +++ b/src/genericgui/BL_JobsManager_QT.hxx @@ -1,20 +1,20 @@ -// Copyright (C) 2009 CEA/DEN, EDF R&D +// Copyright (C) 2009-2014 CEA/DEN, EDF R&D // -// 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. +// 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, or (at your option) any later version. // -// 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. +// 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. // -// 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 +// 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 // -// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef _BL_JOBSMANAGER_QT_HXX_ @@ -25,6 +25,8 @@ #include "BL_Traces.hxx" #include "BL_JobsManager.hxx" #include "BL_CreateJobWizard.hxx" +#include "BL_JobsManager.hxx" +#include "BL_QModelManager.hxx" #include @@ -34,9 +36,9 @@ namespace BL{ { public: JobManagerEvent(const std::string & action_i, - const std::string & event_name_i, - const std::string & job_name_i, - const std::string & data_i); + const std::string & event_name_i, + const std::string & job_name_i, + const std::string & data_i); virtual ~JobManagerEvent(); public: @@ -46,28 +48,37 @@ namespace BL{ std::string data; }; - class JobsManager_QT: virtual public QDockWidget, - virtual public BL::JobsManager, - virtual public BL::Observer + class GenericGui; + class JobsManager_QT: public QDockWidget, + public BL::JobsManager, + public BL::Observer { Q_OBJECT public: - JobsManager_QT(QWidget * parent, BL::SALOMEServices * salome_services); + JobsManager_QT(QWidget * parent, BL::GenericGui * main_gui, BL::SALOMEServices * salome_services); virtual ~JobsManager_QT(); void delete_job(QString job_name); - void create_job_wizard(); + + void create_job(); + void edit_clone_job(const std::string & name); + void restart_job(const std::string & name); virtual void sendEvent(const std::string & action, - const std::string & event_name, - const std::string & job_name, - const std::string & data); + const std::string & event_name, + const std::string & job_name, + const std::string & data); bool event(QEvent * e); void write_normal_text(const QString & text); void write_error_text(const QString & text); + void set_model_manager(BL::QModelManager * model_manager); + + protected: + void create_job_with_wizard(BL::CreateJobWizard & wizard); + public slots: void RefreshJobs(); void no_auto_refresh(); @@ -77,6 +88,8 @@ namespace BL{ void five_minutes_refresh(); void thirty_minutes_refresh(); void one_hour_refresh(); + void load_jobs_button(); + void save_jobs_button(); signals: void new_job_added(const QString & name); @@ -88,6 +101,8 @@ namespace BL{ QPushButton * _auto_refresh_jobs; QTimer * _timer; QTextEdit * _log; + BL::GenericGui * _main_gui; + BL::QModelManager * _model_manager; }; }