superkaramba
systray_python.h
00001 /**************************************************************************** 00002 * systray_python.h - Functions for systray python api 00003 * 00004 * Copyright (C) 2003 Hans Karlsson <karlsson.h@home.se> 00005 * Copyright (C) 2003-2004 Adam Geitgey <adam@rootnode.org> 00006 * 00007 * This file is part of SuperKaramba. 00008 * 00009 * SuperKaramba is free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * SuperKaramba is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 * GNU General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU General Public License 00020 * along with SuperKaramba; if not, write to the Free Software 00021 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00022 ****************************************************************************/ 00023 00024 #ifndef SYSTRAY_PYTHON_H 00025 #define SYSTRAY_PYTHON_H 00026 00027 struct _object; 00028 typedef _object PyObject; 00029 00045 PyObject* py_move_systray(PyObject *self, PyObject *args); 00046 00058 PyObject* py_show_systray(PyObject *self, PyObject *args); 00059 00071 PyObject* py_hide_systray(PyObject *self, PyObject *args); 00072 00088 PyObject* py_create_systray(PyObject *self, PyObject *args); 00089 00101 PyObject* py_get_current_window_count(PyObject *self, PyObject *args); 00102 00114 PyObject* py_update_systray_layout(PyObject *self, PyObject *args); 00115 PyObject* py_get_systray_size(PyObject *self, PyObject *args); 00116 00117 #endif // SYSTRAY_PYTHON_H