]> Dogcows Code - chaz/openbox/blobdiff - src/python.hh
buttons have their pixmaps!
[chaz/openbox] / src / python.hh
index 6ca4e1c5f9569afb3831e3c45427765fe19e1ffe..496b459de27682ba46879d170be490dcba4d9448 100644 (file)
@@ -15,9 +15,17 @@ extern "C" {
 
 namespace ob {
 
+//! Add a python callback funtion to the back of the hook list
 bool python_register(int action, PyObject *callback);
+//! Add a python callback funtion to the front of the hook list
+bool python_preregister(int action, PyObject *callback);
+//! Remove a python callback function from the hook list
 bool python_unregister(int action, PyObject *callback);
 
+//! Removes all python callback functions from the hook list
+bool python_unregister_all(int action);
+
+//! Fire a python callback function
 void python_callback(OBActions::ActionType action, Window window,
                      OBWidget::WidgetType type, unsigned int state,
                      long d1 = LONG_MIN, long d2 = LONG_MIN,
This page took 0.023527 seconds and 4 git commands to generate.