itom 1.3.0
D:/git-itom/sources/itom/Qitom/api/apiFunctionsGraph.h
00001 /* ********************************************************************
00002     itom software
00003     URL: http://www.uni-stuttgart.de/ito
00004     Copyright (C) 2013, Institut für Technische Optik (ITO),
00005     Universität Stuttgart, Germany
00006 
00007     This file is part of itom.
00008   
00009     itom is free software; you can redistribute it and/or modify it
00010     under the terms of the GNU Library General Public Licence as published by
00011     the Free Software Foundation; either version 2 of the Licence, or (at
00012     your option) any later version.
00013 
00014     itom is distributed in the hope that it will be useful, but
00015     WITHOUT ANY WARRANTY; without even the implied warranty of
00016     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library
00017     General Public Licence for more details.
00018 
00019     You should have received a copy of the GNU Library General Public License
00020     along with itom. If not, see <http://www.gnu.org/licenses/>.
00021 *********************************************************************** */
00022 
00023 #ifndef APIFUNCTIONSGRAPH_H
00024 #define APIFUNCTIONSGRAPH_H
00025 
00026 #include "../../common/apiFunctionsGraphInc.h"
00027 
00028 #include "../../common/sharedStructures.h"
00029 #include "../../common/sharedStructuresGraphics.h"
00030 
00031 #include <qvariant.h>
00032 #include <qpointer.h>
00033 //#include <QWeakPointer>
00034 
00035 namespace ito 
00036 {
00037     class apiFunctionsGraph
00038     {
00039         public:
00040             apiFunctionsGraph();
00041             ~apiFunctionsGraph();
00042 
00043             static ito::RetVal mnumberOfColorBars(int &number);
00044             static ito::RetVal mgetColorBarName(const QString &name, ito::ItomPalette &palette);
00045             static ito::RetVal mgetColorBarIdx(const int number, ito::ItomPalette &palette);
00046             //static ito::RetVal mgetFigure(ito::uint32 &UID, const QString plugin, QWidget **newFigure);
00047             static ito::RetVal mgetPluginList(const ito::PluginInfo &requirements, QHash<QString, ito::PluginInfo> &pluginList, const QString preference);
00048             static ito::RetVal mconnectLiveData(QObject *liveDataSource, QObject *liveDataView);
00049             static ito::RetVal mstartLiveData(QObject* liveDataSource, QObject *liveDataView);
00050             static ito::RetVal mstopLiveData(QObject* liveDataSource, QObject *liveDataView);
00051             static ito::RetVal mdisconnectLiveData(QObject* liveDataSource, QObject *liveDataView);
00052             static ito::RetVal mgetColorBarIdxFromName(const QString &name, ito::int32 & index);
00053             
00054             static ito::RetVal mgetFigure(const QString &figCategoryName, const QString &figClassName, ito::uint32 &UID, QWidget **figure, QWidget *parent = NULL);
00055             static QVariant mgetFigureSetting(const QObject *figureClass, const QString &key, const QVariant &defaultValue = QVariant(), ito::RetVal *retval = NULL);
00056 
00057             static ito::RetVal mgetPluginWidget(char* algoWidgetFunc, QVector<ito::ParamBase> *paramsMand, QVector<ito::ParamBase> *paramsOpt, QPointer<QWidget> *widget);
00058 
00059         private:
00060     };
00061 }
00062 
00063 #endif // APIFUNCTIONSGRAPH_H
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends