You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeutils/superkaramba/src/task_python.cpp

376 lines
8.7 KiB

/****************************************************************************
* task_python.cpp - Functions for task python api
*
* Copyright (C) 2003 Hans Karlsson <karlsson.h@home.se>
* Copyright (C) 2003-2004 Adam Geitgey <adam@rootnode.org>
* Copyright (c) 2004 Petri Damsté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
****************************************************************************/
#ifdef _XOPEN_SOURCE
#undef _XOPEN_SOURCE
#endif
#include <Python.h>
#include <tqobject.h>
#include "karamba.h"
#include "meter.h"
#include "meter_python.h"
#include "task_python.h"
// This does something with a task, such as minimize or close it
int performTaskAction(long widget, long ctask, long action)
{
karamba* currTheme = (karamba*)widget;
Task* currTask = 0;
Task* task;
TaskList taskList = currTheme -> taskManager.tasks();
for (task = taskList.first(); task; task = taskList.next())
{
if ((long)task == (long)ctask)
{
currTask = task;
}
}
if (currTask != 0)
{
switch (action)
{
case 1:
currTask->maximize();
break;
case 2:
currTask->restore();
break;
case 3:
currTask->iconify();
break;
case 4:
currTask->close();
break;
case 5:
currTask->activate();
break;
case 6:
currTask->raise();
break;
case 7:
currTask->lower();
break;
case 8:
currTask->activateRaiseOrIconify();
break;
case 9:
currTask->toggleAlwaysOnTop();
break;
case 10:
currTask->toggleShaded();
break;
default:
printf("You are trying to perform an invalid action in \
performTaskAction\n");
}
return 1;
}
else
{
return 0;
}
}
PyObject* py_perform_task_action(PyObject *, PyObject *args)
{
long widget, task, action;
if (!PyArg_ParseTuple(args, (char*)"lll:performTaskAction",
&widget, &task, &action))
return NULL;
if (!checkKaramba(widget))
return NULL;
return Py_BuildValue((char*)"l", performTaskAction(widget, task, action));
}
// This returns all the info about a certain task
// Return type is a Python List
PyObject* getTaskInfo(long widget, long ctask)
{
karamba* currTheme = (karamba*)widget;
Task* currTask = 0;
Task* task;
TaskList taskList = currTheme -> taskManager.tasks();
for (task = taskList.first(); task; task = taskList.next())
{
if ((long)task == (long)ctask)
{
currTask = task;
}
}
if (currTask != 0)
{
PyObject* pList = PyList_New(0);
//Task Name
if (currTask->name() != NULL)
{
PyList_Append(pList, PyString_FromString(currTask->name().latin1()));
}
else
{
PyList_Append(pList, PyString_FromString(""));
}
//Icon Name
if (currTask->iconName() != NULL)
{
PyList_Append(pList, PyString_FromString(currTask->iconName().latin1()));
}
else
{
PyList_Append(pList, PyString_FromString(""));
}
//Class Name
if (currTask->className() != NULL)
{
PyList_Append(pList, PyString_FromString(currTask->className().latin1()));
}
else
{
PyList_Append(pList, PyString_FromString(""));
}
// Desktop this task is on
PyList_Append(pList, PyInt_FromLong(currTask->desktop()));
// is it maximized?
PyList_Append(pList, PyInt_FromLong(currTask->isMaximized()));
// is it iconified?
PyList_Append(pList, PyInt_FromLong(currTask->isIconified()));
// is it shaded?
PyList_Append(pList, PyInt_FromLong(currTask->isShaded()));
// is it focused?
PyList_Append(pList, PyInt_FromLong(currTask->isActive()));
// a reference back to itself
PyList_Append(pList, PyInt_FromLong((long)currTask));
return pList;
}
else
{
tqWarning("Task not found.");
return NULL;
}
}
PyObject* py_get_task_info(PyObject *, PyObject *args)
{
long widget, task;
if (!PyArg_ParseTuple(args, (char*)"ll:getTaskInfo", &widget, &task))
return NULL;
if (!checkKaramba(widget))
return NULL;
return getTaskInfo(widget, task);
}
// This returns all the info about a certain startup
// Return type is a Python List
PyObject* getStartupInfo(long widget, long cstartup)
{
karamba* currTheme = (karamba*)widget;
Startup* currentStartup = (Startup*) cstartup;
Startup* startup;
StartupList startupList = currTheme -> taskManager.startups();
for (startup = startupList.first(); startup; startup = startupList.next())
{
if ((long)startup == (long)cstartup)
{
break;
}
}
startup = currentStartup;
if (startup != 0)
{
PyObject* pList = PyList_New(0);
//Startup Name
if (startup -> text() != NULL)
{
PyList_Append(pList, PyString_FromString(startup -> text().latin1()));
}
else
{
PyList_Append(pList, PyString_FromString(""));
}
//Icon Name
if (startup -> icon() != NULL)
{
PyList_Append(pList, PyString_FromString(startup -> icon().latin1()));
}
else
{
PyList_Append(pList, PyString_FromString(""));
}
//Executable Name
if (startup -> bin() != NULL)
{
PyList_Append(pList, PyString_FromString(startup -> bin().latin1()));
}
else
{
PyList_Append(pList, PyString_FromString(""));
}
// a reference back to itself
PyList_Append(pList, PyInt_FromLong((long) startup));
return pList;
}
else
{
return NULL;
}
}
PyObject* py_get_startup_info(PyObject*, PyObject* args)
{
long widget, startup;
if (!PyArg_ParseTuple(args, (char*)"ll:getStartupInfo", &widget, &startup))
return NULL;
if (!checkKaramba(widget))
return NULL;
return getStartupInfo(widget, startup);
}
// This gets a system task list
// It returns a String List of task names
PyObject* getTaskNames(long widget)
{
karamba* currTheme = (karamba*)widget;
PyObject* pList = PyList_New(0);
PyObject* pString;
TaskList taskList = currTheme -> taskManager.tasks();
Task* task;
for (task = taskList.first(); task; task = taskList.next())
{
const char* tmp = task->name().latin1();
if(tmp == 0)
continue;
pString = PyString_FromString(tmp);
if(pString)
PyList_Append(pList, pString);
}
return pList;
}
PyObject* py_get_task_names(PyObject *, PyObject *args)
{
long widget;
if(!PyArg_ParseTuple(args, (char*)"l:getTaskNames", &widget))
return NULL;
if (!checkKaramba(widget))
return NULL;
return getTaskNames(widget);
}
// This gets a system task list
PyObject* getTaskList(long widget)
{
karamba* currTheme = (karamba*)widget;
PyObject* pList = PyList_New(0);
PyObject* pString;
TaskList taskList = currTheme -> taskManager.tasks();
Task* task;
for (task = taskList.first(); task; task = taskList.next())
{
pString = PyInt_FromLong((long)task);
PyList_Append(pList, pString);
}
return pList;
}
PyObject* py_get_task_list(PyObject *, PyObject *args)
{
long widget;
if(!PyArg_ParseTuple(args, (char*)"l:getTaskList", &widget))
return NULL;
if (!checkKaramba(widget))
return NULL;
return getTaskList(widget);
}
// This gets a system startup list
PyObject* getStartupList(long widget)
{
karamba* currTheme = (karamba*)widget;
PyObject* pList = PyList_New(0);
PyObject* pString;
StartupList startupList = currTheme -> taskManager.startups();
Startup* startup;
for (startup = startupList.first(); startup; startup = startupList.next())
{
pString = PyInt_FromLong((long) startup);
PyList_Append(pList, pString);
}
return pList;
}
PyObject* py_get_startup_list(PyObject *, PyObject *args)
{
long widget;
if(!PyArg_ParseTuple(args, (char*)"l:getStartupList", &widget))
return NULL;
if (!checkKaramba(widget))
return NULL;
return getStartupList(widget);
}