• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • superkaramba
 

superkaramba

  • superkaramba
  • src
misc_python.h
Go to the documentation of this file.
1/*
2* misc_python.h - Misc Functions for python api
3*
4* Copyright (C) 2003 Hans Karlsson <karlsson.h@home.se>
5* Copyright (C) 2003-2004 Adam Geitgey <adam@rootnode.org>
6* Copyright (C) 2004 Petri Damstén <damu@iki.fi>
7* Copyright (C) 2004,2005 Luke Kenneth Casson Leighton <lkcl@lkcl.net>
8*
9* This file is part of SuperKaramba.
10*
11* SuperKaramba is free software; you can redistribute it and/or modify
12* it under the terms of the GNU General Public License as published by
13* the Free Software Foundation; either version 2 of the License, or
14* (at your option) any later version.
15*
16* SuperKaramba is distributed in the hope that it will be useful,
17* but WITHOUT ANY WARRANTY; without even the implied warranty of
18* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19* GNU General Public License for more details.
20*
21* You should have received a copy of the GNU General Public License
22* along with SuperKaramba; if not, write to the Free Software
23* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24****************************************************************************/
25
26#ifndef MISC_PYTHON_H
27#define MISC_PYTHON_H
28
51PyObject* py_accept_drops(PyObject *self, PyObject *args);
52
67PyObject* py_execute_command(PyObject* self, PyObject* args);
68
103PyObject* py_execute_command_interactive(PyObject* self, PyObject* args);
104
121PyObject* py_run_command(PyObject* self, PyObject* args);
122
157PyObject* py_attach_clickArea(PyObject* self, PyObject* args, PyObject* dict);
158
172PyObject* py_toggle_show_desktop(PyObject *self, PyObject *args);
173
187PyObject* py_get_theme_path(PyObject *self, PyObject *args);
188
201PyObject* py_language(PyObject *self, PyObject *args);
202
217PyObject* py_userLanguage(PyObject *self, PyObject *args);
218
219
237PyObject* py_userLanguages(PyObject *self, PyObject *args);
238
239
252PyObject* py_read_theme_file(PyObject *self, PyObject *args);
253
272PyObject* py_create_click_area(PyObject *self, PyObject *args);
273
285PyObject* py_open_theme(PyObject *self, PyObject *args);
286
298PyObject* py_reload_theme(PyObject *self, PyObject *args);
299
311PyObject* py_get_number_of_desktops(PyObject *self, PyObject *args);
312
327PyObject* py_translate_all(PyObject *self, PyObject *args);
328
340PyObject* py_show(PyObject *self, PyObject *args);
341
353PyObject* py_hide(PyObject *self, PyObject *args);
354
367PyObject* py_get_ip(PyObject *self, PyObject *args);
368
381PyObject* py_change_interval(PyObject *self, PyObject *args);
382
406PyObject* py_create_service_click_area(PyObject *self, PyObject *args);
407
420PyObject* py_remove_click_area(PyObject *self, PyObject *args);
421
422
438PyObject* py_get_pretty_name(PyObject *self, PyObject *args);
439
461PyObject* py_open_named_theme(PyObject *self, PyObject *args);
462
483PyObject* py_call_theme(PyObject *self, PyObject *args);
484
505PyObject* py_set_incoming_data(PyObject *self, PyObject *args);
506
520PyObject* py_get_incoming_data(PyObject *self, PyObject *args);
521
535PyObject* py_get_update_time(PyObject *self, PyObject *args);
536
553PyObject* py_want_right_button(PyObject *self, PyObject *args);
554
571PyObject* py_want_wheel_event(PyObject *, PyObject *args);
572
587PyObject* py_management_popup(PyObject *self, PyObject *args);
588
603PyObject* py_set_update_time(PyObject *self, PyObject *args);
604
605#endif /* MISC_PYTHON_H */
606
py_execute_command
PyObject * py_execute_command(PyObject *self, PyObject *args)
Misc/execute.
Definition: misc_python.cpp:98
py_accept_drops
PyObject * py_accept_drops(PyObject *self, PyObject *args)
Misc/acceptDrops.
Definition: misc_python.cpp:56
py_get_update_time
PyObject * py_get_update_time(PyObject *self, PyObject *args)
Misc/getUpdateTime.
Definition: misc_python.cpp:763
py_get_theme_path
PyObject * py_get_theme_path(PyObject *self, PyObject *args)
Misc/getThemePath.
Definition: misc_python.cpp:283
py_open_theme
PyObject * py_open_theme(PyObject *self, PyObject *args)
Misc/openTheme.
Definition: misc_python.cpp:543
py_read_theme_file
PyObject * py_read_theme_file(PyObject *self, PyObject *args)
Misc/readThemeFile.
Definition: misc_python.cpp:336
py_create_service_click_area
PyObject * py_create_service_click_area(PyObject *self, PyObject *args)
Misc/createServiceClickArea.
Definition: misc_python.cpp:402
py_want_wheel_event
PyObject * py_want_wheel_event(PyObject *, PyObject *args)
Misc/setWantMeterWheelEvent.
Definition: misc_python.cpp:824
py_userLanguage
PyObject * py_userLanguage(PyObject *self, PyObject *args)
Misc/userLanguage.
Definition: misc_python.cpp:304
py_set_incoming_data
PyObject * py_set_incoming_data(PyObject *self, PyObject *args)
Misc/setIncomingData.
Definition: misc_python.cpp:513
py_show
PyObject * py_show(PyObject *self, PyObject *args)
Misc/show.
Definition: misc_python.cpp:623
py_get_pretty_name
PyObject * py_get_pretty_name(PyObject *self, PyObject *args)
Misc/getPrettyThemeName.
Definition: misc_python.cpp:268
py_reload_theme
PyObject * py_reload_theme(PyObject *self, PyObject *args)
Misc/reloadTheme.
Definition: misc_python.cpp:551
py_set_update_time
PyObject * py_set_update_time(PyObject *self, PyObject *args)
Misc/setUpdateTime.
Definition: misc_python.cpp:752
py_create_click_area
PyObject * py_create_click_area(PyObject *self, PyObject *args)
Misc/createClickArea.
Definition: misc_python.cpp:414
py_get_number_of_desktops
PyObject * py_get_number_of_desktops(PyObject *self, PyObject *args)
Misc/getNumberOfDesktop.
Definition: misc_python.cpp:570
py_toggle_show_desktop
PyObject * py_toggle_show_desktop(PyObject *self, PyObject *args)
Misc/toggleShowDesktop.
Definition: misc_python.cpp:251
py_open_named_theme
PyObject * py_open_named_theme(PyObject *self, PyObject *args)
Misc/openNamedTheme.
Definition: misc_python.cpp:533
py_management_popup
PyObject * py_management_popup(PyObject *self, PyObject *args)
Misc/managementPopup.
Definition: misc_python.cpp:790
py_get_incoming_data
PyObject * py_get_incoming_data(PyObject *self, PyObject *args)
Misc/getIncomingData.
Definition: misc_python.cpp:505
py_attach_clickArea
PyObject * py_attach_clickArea(PyObject *self, PyObject *args, PyObject *dict)
Misc/attachClickArea.
Definition: misc_python.cpp:201
py_hide
PyObject * py_hide(PyObject *self, PyObject *args)
Misc/hide.
Definition: misc_python.cpp:641
py_userLanguages
PyObject * py_userLanguages(PyObject *self, PyObject *args)
Misc/userLanguages.
Definition: misc_python.cpp:314
py_translate_all
PyObject * py_translate_all(PyObject *self, PyObject *args)
Misc/translateAll.
Definition: misc_python.cpp:604
py_want_right_button
PyObject * py_want_right_button(PyObject *self, PyObject *args)
Misc/setWantRightButton.
Definition: misc_python.cpp:807
py_call_theme
PyObject * py_call_theme(PyObject *self, PyObject *args)
Misc/callTheme.
Definition: misc_python.cpp:523
py_execute_command_interactive
PyObject * py_execute_command_interactive(PyObject *self, PyObject *args)
Misc/executeInteractive.
Definition: misc_python.cpp:108
py_remove_click_area
PyObject * py_remove_click_area(PyObject *self, PyObject *args)
Misc/removeClickArea.
Definition: misc_python.cpp:394
py_language
PyObject * py_language(PyObject *self, PyObject *args)
Misc/language.
Definition: misc_python.cpp:293
py_get_ip
PyObject * py_get_ip(PyObject *self, PyObject *args)
Misc/getIp.
Definition: misc_python.cpp:773
py_change_interval
PyObject * py_change_interval(PyObject *self, PyObject *args)
Misc/changeInterval.
Definition: misc_python.cpp:841
py_run_command
PyObject * py_run_command(PyObject *self, PyObject *args)
Misc/run.
Definition: misc_python.cpp:68

superkaramba

Skip menu "superkaramba"
  • Main Page
  • Alphabetical List
  • Class List
  • File List
  • Class Members

superkaramba

Skip menu "superkaramba"
  • kcalc
  •   knumber
  • superkaramba
Generated for superkaramba by doxygen 1.9.4
This website is maintained by Timothy Pearson.