1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00
rofi/include/keyb.h

118 lines
2.2 KiB
C
Raw Normal View History

2015-07-27 10:17:12 +02:00
#ifndef ROFI_KEYB_H
#define ROFI_KEYB_H
2016-01-07 08:54:24 +01:00
/**
* @defgroup KEYB KeyboardBindings
*
* @{
*/
/**
* List of all possible actions that can be triggered by a keybinding.
*/
2016-03-24 22:13:19 +01:00
typedef enum
{
2016-01-07 16:01:56 +01:00
/** Paste from primary clipboard */
PASTE_PRIMARY = 0,
2016-01-07 16:01:56 +01:00
/** Paste from secondary clipboard */
PASTE_SECONDARY,
2016-01-07 16:01:56 +01:00
/** Clear the entry box. */
CLEAR_LINE,
2016-01-07 16:01:56 +01:00
/** Move to front of text */
MOVE_FRONT,
2016-01-07 16:01:56 +01:00
/** Move to end of text */
MOVE_END,
2016-01-07 16:01:56 +01:00
/** Move on word back */
2015-04-30 22:46:51 +02:00
MOVE_WORD_BACK,
2016-01-07 16:01:56 +01:00
/** Move on word forward */
2015-04-30 22:46:51 +02:00
MOVE_WORD_FORWARD,
2016-01-07 16:01:56 +01:00
/** Move character back */
MOVE_CHAR_BACK,
2016-01-07 16:01:56 +01:00
/** Move character forward */
MOVE_CHAR_FORWARD,
2016-01-07 16:01:56 +01:00
/** Remove previous word */
REMOVE_WORD_BACK,
2016-01-07 16:01:56 +01:00
/** Remove next work */
REMOVE_WORD_FORWARD,
2016-01-07 16:01:56 +01:00
/** Remove next character */
REMOVE_CHAR_FORWARD,
2016-01-07 16:01:56 +01:00
/** Remove previous character */
2015-04-30 22:42:04 +02:00
REMOVE_CHAR_BACK,
2016-07-25 11:32:30 +02:00
/** Remove till EOL */
REMOVE_TO_EOL,
2016-07-27 08:10:55 +02:00
/** Remove till SOL */
REMOVE_TO_SOL,
2016-01-07 16:01:56 +01:00
/** Accept the current selected entry */
2015-05-01 08:16:52 +02:00
ACCEPT_ENTRY,
2016-06-19 18:02:49 +02:00
ACCEPT_ALT,
2015-05-01 08:16:52 +02:00
ACCEPT_CUSTOM,
MODE_NEXT,
MODE_PREVIOUS,
TOGGLE_CASE_SENSITIVITY,
DELETE_ENTRY,
2015-09-02 12:29:28 +02:00
ROW_LEFT,
ROW_RIGHT,
ROW_UP,
ROW_DOWN,
ROW_TAB,
PAGE_PREV,
PAGE_NEXT,
ROW_FIRST,
ROW_LAST,
ROW_SELECT,
CANCEL,
2015-05-05 19:30:43 +02:00
CUSTOM_1,
CUSTOM_2,
CUSTOM_3,
CUSTOM_4,
CUSTOM_5,
CUSTOM_6,
CUSTOM_7,
CUSTOM_8,
CUSTOM_9,
CUSTOM_10,
CUSTOM_11,
CUSTOM_12,
CUSTOM_13,
CUSTOM_14,
CUSTOM_15,
CUSTOM_16,
CUSTOM_17,
CUSTOM_18,
CUSTOM_19,
2015-12-09 08:29:18 +01:00
SCREENSHOT,
2015-12-13 11:50:59 +01:00
TOGGLE_SORT,
NUM_ABE
} KeyBindingAction;
2015-05-02 12:21:54 +02:00
/**
* Parse the keybindings.
* This should be called after the setting system is initialized.
*/
gboolean parse_keys_abe ( void );
2015-05-02 12:21:54 +02:00
/**
* Setup the keybindings
* This adds all the entries to the settings system.
*/
void setup_abe ( void );
2015-05-02 12:21:54 +02:00
/**
* Cleanup.
*/
2015-04-30 22:42:04 +02:00
void cleanup_abe ( void );
2015-05-02 12:21:54 +02:00
/**
* Find if a binding has been triggered.
* @returns NUM_ABE if no key combo matches, a valid action otherwise.
2015-05-02 12:21:54 +02:00
*/
KeyBindingAction abe_find_action ( unsigned int mask, xkb_keysym_t key );
2016-01-07 08:54:24 +01:00
/**
* Trigger keybinding on key release.
*/
void abe_trigger_release ( void );
2016-01-07 08:54:24 +01:00
/*@}*/
2015-07-27 10:17:12 +02:00
#endif // ROFI_KEYB_H