itom 1.0.14
D:/git-itom/sources/itom/Qitom/python/pythonUiTimer.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 PYTHONUITIMER_H
00024 #define PYTHONUITIMER_H
00025 
00028 //#ifdef _DEBUG
00029 //    #undef _DEBUG
00030 //    #ifdef linux
00031 //        #include "Python.h"
00032 //    #else
00033 //        #include "include\Python.h"
00034 //    #endif
00035 //    #define _DEBUG
00036 //#else
00037 //    #ifdef linux
00038 //        #include "Python.h"
00039 //    #else
00040 //        #include "include\Python.h"
00041 //    #endif
00042 //#endif
00043 
00044 #include "pythonCommon.h"
00045 //#include "pythonQtConversion.h"
00046 //#include "pythonQtSignalMapper.h"
00047 
00048 #include <qstring.h>
00049 #include <qvariant.h>
00050 #include <qobject.h>
00051 //#include <qhash.h>
00052 
00053 
00054 namespace ito 
00055 {
00056 
00057 class TimerCallback : public QObject
00058 {
00059     Q_OBJECT
00060     public:
00061         TimerCallback() : m_function(NULL), m_boundedInstance(NULL), m_callbackArgs(0),  m_boundedMethod(0) {}
00062         ~TimerCallback() {}
00063         PyObject *m_function; //pyFunctionObject
00064         PyObject *m_boundedInstance; //self if bounded method, else null
00065 //        PyObject m_callbackFunc;
00066 //        PyObject m_callbackArgs;
00067         PyObject *m_callbackArgs; //
00068         int m_boundedMethod;
00069 
00070     public slots:
00071         void timeout(); 
00072 };
00073 
00074 class PythonTimer
00075 {
00076 public:
00077 
00078     //-------------------------------------------------------------------------------------------------
00079     // typedefs
00080     //------------------------------------------------------------------------------------------------- 
00081     typedef struct
00082     {
00083         PyObject_HEAD
00084         QTimer *timer;
00085         PyObject* base;
00086         TimerCallback *callbackFunc;
00087     }
00088     PyTimer;
00089 
00090     //-------------------------------------------------------------------------------------------------
00091     // Timer
00092     //------------------------------------------------------------------------------------------------- 
00093     static void PyTimer_dealloc(PyTimer *self);
00094     static PyObject *PyTimer_new(PyTypeObject *type, PyObject *args, PyObject *kwds);
00095     static int PyTimer_init(PyTimer *self, PyObject *args, PyObject *kwds);
00096     static PyObject *PyTimer_repr(PyTimer *self);
00097 
00098     static PyGetSetDef  PyTimer_getseters[];
00099     static PyMemberDef  PyTimer_members[];
00100     static PyMethodDef  PyTimer_methods[];
00101     static PyTypeObject PyTimerType;
00102     static PyModuleDef  PyTimerModule;
00103     static PyObject *PyTimer_start(PyTimer *self);
00104     static PyObject *PyTimer_stop(PyTimer *self);
00105     static PyObject *PyTimer_isActive(PyTimer *self);
00106     static PyObject *PyTimer_setInterval(PyTimer *self, PyObject *args);
00107 };
00108 
00109 }; //end namespace ito
00110 
00111 #endif
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends