gntbindable.h

Tue, 21 May 2019 01:20:54 +0000

author
Gary Kramlich <grim@reaperworld.com>
date
Tue, 21 May 2019 01:20:54 +0000
changeset 1324
4e6d829dcbc5
parent 1319
2b331e084d56
child 1325
9b4cff34b41d
permissions
-rw-r--r--

Merged in default (pull request #78)

Clear the main loop on WM destruction.

Approved-by: Gary Kramlich

/*
 * GNT - The GLib Ncurses Toolkit
 *
 * GNT is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * This library 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.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef GNT_BINDABLE_H
#define GNT_BINDABLE_H
/**
 * SECTION:gntbindable
 * @section_id: libgnt-gntbindable
 * @title: GntBindable
 * @short_description: Key-bindable GObjects
 */

#include <stdio.h>
#include <glib.h>
#include <glib-object.h>

#define GNT_TYPE_BINDABLE gnt_bindable_get_type()

typedef struct _GntBindable GntBindable;

struct _GntBindableClass
{
	GObjectClass parent;

	GHashTable *remaps;   /* Key remaps */
	GHashTable *actions;  /* name -> Action */
	GHashTable *bindings; /* key -> ActionParam */

	GntBindable * help_window;

	/*< private >*/
	void (*gnt_reserved2)(void);
	void (*gnt_reserved3)(void);
	void (*gnt_reserved4)(void);
};

G_BEGIN_DECLS

G_DECLARE_DERIVABLE_TYPE(GntBindable, gnt_bindable, GNT, BINDABLE, GObject)

/******************/
/*   Key Remaps   */
/******************/
const char * gnt_bindable_remap_keys(GntBindable *bindable, const char *text);

/******************/
/* Bindable Actions */
/******************/
typedef gboolean (*GntBindableActionCallback) (GntBindable *bindable, GList *params);
typedef gboolean (*GntBindableActionCallbackNoParam)(GntBindable *bindable);

#ifndef GNT_DISABLE_DEPRECATED
/**
 * GntBindableAction:
 *
 * Deprecated: 2.14.0: This is an internal implementation detail.
 */
typedef struct _GntBindableAction GntBindableAction;
/**
 * GntBindableActionParam:
 *
 * Deprecated: 2.14.0: This is an internal implementation detail.
 */
typedef struct _GntBindableActionParam GntBindableActionParam;
#endif

struct _GntBindableAction
{
	char *name;        /* The name of the action */
	union {
		GntBindableActionCallback action;
		GntBindableActionCallbackNoParam action_noparam;
	} u;
};

struct _GntBindableActionParam
{
	GntBindableAction *action;
	GList *list;
};

#ifndef GNT_DISABLE_DEPRECATED
/*GntBindableAction *gnt_bindable_action_parse(const char *name);*/

/**
 * gnt_bindable_action_free:
 * @action: The bindable action.
 *
 * Free a bindable action.
 *
 * Deprecated: 2.14.0: This is an internal implementation detail.
 */
void gnt_bindable_action_free(GntBindableAction *action);

/**
 * gnt_bindable_action_param_free:
 * @param:  The GntBindableActionParam to free.
 *
 * Free a GntBindableActionParam.
 *
 * Deprecated: 2.14.0: This is an internal implementation detail.
 */
void gnt_bindable_action_param_free(GntBindableActionParam *param);
#endif

/**
 * gnt_bindable_class_register_action:
 * @klass:    The class the binding is for.
 * @name:     The name of the binding.
 * @callback: (scope call): The callback for the binding.
 * @trigger:  The default trigger for the binding, or %NULL, followed by a
 *            %NULL-terminated list of default parameters.
 *
 * Register a bindable action for a class.
 */
void gnt_bindable_class_register_action(GntBindableClass *klass, const char *name, GntBindableActionCallback callback, const char *trigger, ...);

/**
 * gnt_bindable_register_binding:
 * @klass:     The class the binding is for.
 * @name:      The name of the binding.
 * @trigger:   A new trigger for the binding, followed by a %NULL-terminated list of parameters for the callback.
 *
 * Register a key-binding to an existing action.
 */
void gnt_bindable_register_binding(GntBindableClass *klass, const char *name, const char *trigger, ...);

/**
 * gnt_bindable_perform_action_key:
 * @bindable:  The bindable object.
 * @keys:      The key to trigger the action.
 *
 * Perform an action from a keybinding.
 *
 * Returns:  %TRUE if the action was performed successfully, %FALSE otherwise.
 */
gboolean gnt_bindable_perform_action_key(GntBindable *bindable, const char *keys);

/**
 * gnt_bindable_check_key:
 * @bindable:  The bindable object.
 * @keys:      The key to check for.
 *
 * Discover if a key is bound.
 *
 * Returns:  %TRUE if the the key has an action associated with it.
 *
 * Since: 2.4.2
 */
gboolean gnt_bindable_check_key(GntBindable *bindable, const char *keys);

/**
 * gnt_bindable_perform_action_named:
 * @bindable:  The bindable object.
 * @name:      The action to perform, followed by a %NULL-terminated list of parameters.
 *
 * Perform an action on a bindable object.
 *
 * Returns:  %TRUE if the action was performed successfully, %FALSE otherwise.
 */
gboolean gnt_bindable_perform_action_named(GntBindable *bindable, const char *name, ...) G_GNUC_NULL_TERMINATED;

/**
 * gnt_bindable_bindings_view:
 * @bind:  The object to list the bindings for.
 *
 * Returns a GntTree populated with "key" -> "binding" for the widget.
 *
 * Returns: (transfer full): The GntTree.
 *
 * Since: 2.1.1
 */
GntBindable * gnt_bindable_bindings_view(GntBindable *bind);

/**
 * gnt_bindable_build_help_window:
 * @bindable:   The object to list the bindings for.
 *
 * Builds a window that list the key bindings for a GntBindable object.
 * From this window a user can select a listing to rebind a new key for the given action.
 *
 * Returns:  %TRUE
 *
 * Since: 2.1.1
 */

gboolean gnt_bindable_build_help_window(GntBindable *bindable);

G_END_DECLS

#endif /* GNT_BINDABLE_H */

mercurial