component.h
1 /********************************************************************************
2  * FARSA Experiments Library *
3  * Copyright (C) 2007-2012 *
4  * Gianluca Massera <emmegian@yahoo.it> *
5  * Stefano Nolfi <stefano.nolfi@istc.cnr.it> *
6  * Tomassino Ferrauto <tomassino.ferrauto@istc.cnr.it> *
7  * *
8  * This program is free software; you can redistribute it and/or modify *
9  * it under the terms of the GNU General Public License as published by *
10  * the Free Software Foundation; either version 2 of the License, or *
11  * (at your option) any later version. *
12  * *
13  * This program is distributed in the hope that it will be useful, *
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16  * GNU General Public License for more details. *
17  * *
18  * You should have received a copy of the GNU General Public License *
19  * along with this program; if not, write to the Free Software *
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
21  ********************************************************************************/
22 
23 #ifndef COMPONENT_H
24 #define COMPONENT_H
25 
26 #include "experimentsconfig.h"
27 #include "parametersettable.h"
28 #include "configurationparameters.h"
29 #include <QObject>
30 #include <QString>
31 
32 namespace farsa {
33 
45 class FARSA_EXPERIMENTS_API Component : public QObject, public ParameterSettableWithConfigureFunction {
46  Q_OBJECT
47 public:
49  Component() { /*nothing to do*/ };
51  virtual ~Component() { /*nothing to do*/ };
53  QString status() {
54  return comStatus;
55  };
57  virtual void configure(ConfigurationParameters& params, QString prefix) = 0;
59  virtual void save(ConfigurationParameters& params, QString prefix) = 0;
61  void setStatus( QString newStatus ) {
62  comStatus = newStatus;
63  emit statusChanged( newStatus );
64  };
68  virtual void stopCurrentOperation() = 0;
69 signals:
71  void statusChanged( QString newStatus );
72 private:
74  QString comStatus;
75 };
76 
77 } // end namespace farsa
78 
79 #endif
Component()
Constructor.
Definition: component.h:49
QString status()
return a text description of the current status of the component
Definition: component.h:53
This file contains the common type defitions used on the whole framework.
void setStatus(QString newStatus)
used by subclasses to change the status of the experiment
Definition: component.h:61
The Component is the base (abstract) class for any specific project implementation.
Definition: component.h:45
virtual ~Component()
Destructor.
Definition: component.h:51