|
|
|
|
/****************************************************************************
|
|
|
|
|
* karamba_python.h - Functions for calling python scripts
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2003 Hans Karlsson <karlsson.h@home.se>
|
|
|
|
|
* Copyright (C) 2003-2004 Adam Geitgey <adam@rootnode.org>
|
|
|
|
|
* Copyright (c) 2004 Petri Damst<EFBFBD>n <damu@iki.fi>
|
|
|
|
|
*
|
|
|
|
|
* This file is part of SuperKaramba.
|
|
|
|
|
*
|
|
|
|
|
* SuperKaramba is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* SuperKaramba 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 General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with SuperKaramba; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef KARAMBA_PYTHON_H
|
|
|
|
|
#define KARAMBA_PYTHON_H
|
|
|
|
|
|
|
|
|
|
class TQString;
|
|
|
|
|
class TDEPopupMenu;
|
|
|
|
|
class Task;
|
|
|
|
|
class Startup;
|
|
|
|
|
class karamba;
|
|
|
|
|
class Meter;
|
|
|
|
|
struct _object;
|
|
|
|
|
typedef struct _object PyObject;
|
|
|
|
|
struct _ts;
|
|
|
|
|
typedef struct _ts PyThreadState;
|
|
|
|
|
class ThemeFile;
|
|
|
|
|
|
|
|
|
|
class KarambaPython
|
|
|
|
|
{
|
|
|
|
|
protected:
|
|
|
|
|
bool pythonThemeExtensionLoaded;
|
|
|
|
|
PyObject *pName, *pModule;
|
|
|
|
|
PyObject *pDict;
|
|
|
|
|
static PyThreadState* mainThreadState;
|
|
|
|
|
|
|
|
|
|
PyObject* getFunc(const char* function);
|
|
|
|
|
bool callObject(const char* func, PyObject* pArgs);
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
KarambaPython(const ThemeFile& theme, bool reloading);
|
|
|
|
|
~KarambaPython();
|
|
|
|
|
|
|
|
|
|
static void initPython();
|
|
|
|
|
static void shutdownPython();
|
|
|
|
|
|
|
|
|
|
bool isExtensionLoaded() { return pythonThemeExtensionLoaded; };
|
|
|
|
|
bool initWidget(karamba* k);
|
|
|
|
|
bool widgetUpdated(karamba* k);
|
|
|
|
|
bool widgetClosed(karamba* k);
|
|
|
|
|
bool menuOptionChanged(karamba* k, TQString key, bool value);
|
|
|
|
|
bool meterClicked(karamba* k, Meter* meter, int button);
|
|
|
|
|
bool meterClicked(karamba* k, TQString anchor, int button);
|
|
|
|
|
bool widgetClicked(karamba* k, int x, int y, int button);
|
|
|
|
|
bool keyPressed(karamba* k, const Meter* meter, const TQString& text);
|
|
|
|
|
bool widgetMouseMoved(karamba* k, int x, int y, int button);
|
|
|
|
|
bool menuItemClicked(karamba* k, TDEPopupMenu* menu, long id);
|
|
|
|
|
bool activeTaskChanged(karamba* k, Task* t);
|
|
|
|
|
bool taskAdded(karamba* k, Task* t);
|
|
|
|
|
bool taskRemoved(karamba* k, Task* t);
|
|
|
|
|
bool startupAdded(karamba* k, Startup* t);
|
|
|
|
|
bool startupRemoved(karamba* k, Startup* t);
|
|
|
|
|
bool commandOutput(karamba* k, int pid, char *buffer);
|
|
|
|
|
bool commandFinished(karamba* k, int pid);
|
|
|
|
|
bool itemDropped(karamba* k, TQString text, int x, int y);
|
|
|
|
|
bool themeNotify(karamba* k, const char *from, const char *txt);
|
|
|
|
|
bool systrayUpdated(karamba* k);
|
|
|
|
|
bool desktopChanged(karamba* k, int desktop);
|
|
|
|
|
bool wallpaperChanged(karamba* k, int desktop);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // KARAMBA_PYTHON_H
|