From e5cc6c82520a0d4828394f5edddded77292f22ce Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Thu, 21 Jun 2007 22:24:44 +0000 Subject: [PATCH] first draft of beginning of new action code --- openbox/actions.h | 80 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 openbox/actions.h diff --git a/openbox/actions.h b/openbox/actions.h new file mode 100644 index 00000000..e2a8499f --- /dev/null +++ b/openbox/actions.h @@ -0,0 +1,80 @@ +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- + + actions.h for the Openbox window manager + Copyright (c) 2007 Dana Jansens + + This program 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. + + This program 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. + + See the COPYING file for a copy of the GNU General Public License. +*/ + +typedef enum { + OB_ACTION_DONE, + OB_ACTION_CANCELLED, + OB_ACTION_INTERACTING, + OB_NUM_ACTIONS_INTERACTIVE_STATES +} ObActionsInteractiveState; + +typedef gpointer (*ObActionsDataSetupFunc)(); +typedef void (*ObActionsDataParseFunc)(gpointer action_data, + ObParseInst *i, + xmlDocPtr doc, xmlNodePtr node); +typedef void (*ObActionsDataFreeFunc)(gpointer action_data); +typedef void (*ObActionsRunFunc)(ObActionsAnyData *data); + +struct _ObActionsDefinition { + gchar *name; + gboolean interactive; + + ObActionsDataSetupFunc setup; + ObActionsDataParseFunc parse; + ObActionsDataFreeFunc free; + ObActionsRunFunc run; +}; + +struct _ObActionsAnyData { + ObUserAction uact; + gint x; + gint y; + gint button; + Time time; + + ObActionsInteractiveState interactive; + + gpointer action_data; +}; + +struct _ObActionsGlobalData { + ObActionsData any; +}; + +struct _ObActionsClientData { + ObActionsData any; + + struct _ObClient *c; + ObFrameContext context; +}; + +struct _ObActionsSelectorData { + ObActionsData any; + + GSList *actions; +}; + +void actions_startup(gboolean reconfigure); +void actions_shutdown(gboolean reconfigure); + +gboolean actions_register(const gchar *name, + gboolean interactive, + ObActionsDataSetupFunc setup, + ObActionsDataParseFunc parse, + ObActionsDataFreeFunc free, + ObActionsRunFunc run); -- 2.39.2