rofi/include/keyb.h

62 lines
1.1 KiB
C
Raw Normal View History

#ifndef __KEYB_H__
#define __KEYB_H__
typedef enum _KeyBindingAction
{
PASTE_PRIMARY = 0,
PASTE_SECONDARY,
CLEAR_LINE,
MOVE_FRONT,
MOVE_END,
2015-04-30 20:46:51 +00:00
MOVE_WORD_BACK,
MOVE_WORD_FORWARD,
MOVE_CHAR_BACK,
MOVE_CHAR_FORWARD,
REMOVE_WORD_BACK,
REMOVE_WORD_FORWARD,
REMOVE_CHAR_FORWARD,
2015-04-30 20:42:04 +00:00
REMOVE_CHAR_BACK,
2015-05-01 06:16:52 +00:00
ACCEPT_ENTRY,
ACCEPT_CUSTOM,
ACCEPT_ENTRY_CONTINUE,
MODE_NEXT,
MODE_PREVIOUS,
TOGGLE_CASE_SENSITIVITY,
DELETE_ENTRY,
2015-05-05 17:30:43 +00:00
CUSTOM_1,
CUSTOM_2,
CUSTOM_3,
CUSTOM_4,
CUSTOM_5,
CUSTOM_6,
CUSTOM_7,
CUSTOM_8,
CUSTOM_9,
NUM_ABE
} KeyBindingAction;
2015-05-02 10:21:54 +00:00
/**
* Parse the keybindings.
* This should be called after the setting system is initialized.
*/
2015-04-30 20:42:04 +00:00
void parse_keys_abe ( void );
2015-05-02 10:21:54 +00:00
/**
* Setup the keybindings
* This adds all the entries to the settings system.
*/
void setup_abe ( void );
2015-05-02 10:21:54 +00:00
/**
* Cleanup.
*/
2015-04-30 20:42:04 +00:00
void cleanup_abe ( void );
2015-05-02 10:21:54 +00:00
/**
* Check if this key has been triggered.
* @returns TRUE if key combo matches, FALSE otherwise.
*/
int abe_test_action ( KeyBindingAction action, unsigned int mask, KeySym key );
#endif // __KEYB_H__