| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | /*= StarPU-Top for StarPU =Copyright (C) 2011 William BraikYann CourtoisJean-Marie CouteyenAnthony RoyThis library is free software; you can redistribute it and/ormodify it under the terms of the GNU Lesser General PublicLicense as published by the Free Software Foundation; eitherversion 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNULesser General Public License for more details.You should have received a copy of the GNU Lesser General PublicLicense along with this library; if not, write to the Free SoftwareFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA*/#ifndef SESSIONSETUPMANAGER_H#define SESSIONSETUPMANAGER_Hclass MainWindow;#include "starpu_top_types.h"#include <QSettings>static const QString SESSION_SETUPS_DIR = "./sessionsetups";static const QString SESSION_SETUPS_FILEEXT = ".ses";class SessionSetupManager: public QObject{ /* Saves and loads a session setup. The session setup includes the geometries and states of the widget windows and the descriptions of the data and the parameters. */    Q_OBJECTpublic:    SessionSetupManager(MainWindow *mainWindow);    ~SessionSetupManager();private:    // Data    MainWindow *_mainWindow;    QSettings *_sessionStateSettings;public slots:    bool saveSessionSetup(QString sessionSetupName);    bool loadSessionSetup(QString sessionSetupName);signals:    void descriptionsSetupLoaded(            QList<DataDescriptionSetup> dataDescriptionsSetup,            QList<ParamDescriptionSetup> paramDescriptionsSetup);    void mainWindowSetupLoaded(MainWindowSetup mainWindowSetup);    void parametersDockSetupLoaded(ParametersDockSetup parametersDockSetup);    void widgetWindowsSetupLoaded(QList<DataWidgetSetup> dataWidgetsSetup,                                  QList<DataAggregatorWidgetSetup> dataAggregatorWidgetsSetup);};#endif // SESSIONSETUPMANAGER_H
 |