summaryrefslogtreecommitdiffstats
path: root/include/mode.h
diff options
context:
space:
mode:
authorQuentin Glidic <sardemff7+git@sardemff7.net>2016-02-21 22:03:13 +0100
committerQuentin Glidic <sardemff7+git@sardemff7.net>2016-02-23 12:15:03 +0100
commit990914d20fc1a3bcd47955c934e2e1fffda38a6c (patch)
treed05baabb1e138f5b7207f00d63e8614f5d8a3517 /include/mode.h
parent88ddb7f04ef66b8ae320411db462fc624a580ca8 (diff)
rofi: Drop daemon mode
Signed-off-by: Quentin Glidic <sardemff7+git@sardemff7.net>
Diffstat (limited to 'include/mode.h')
-rw-r--r--include/mode.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/include/mode.h b/include/mode.h
index 9d00e0c2..ebb8f224 100644
--- a/include/mode.h
+++ b/include/mode.h
@@ -142,17 +142,6 @@ const char * mode_get_name ( const Mode *mode );
/**
* @param mode The mode to query
- * @param key The KeySym to match
- * @param state The Modmask to match
- *
- * Match keybinding of mode.
- *
- * return TRUE when matching, FALSE otherwise
- */
-int mode_check_keybinding ( const Mode *mode, KeySym key, unsigned int modstate );
-
-/**
- * @param mode The mode to query
*
* Free the resources allocated for this mode.
*/
@@ -161,39 +150,6 @@ void mode_free ( Mode **mode );
/**
* @param mode The mode to query
*
- * Setup the keybinding for this mode.
- */
-void mode_setup_keybinding ( Mode *mode );
-
-/**
- * @param mode The mode to query
- * @param display The X Server display handle.
- *
- * Grab the key on the display.
- * This first parses the key string and if successful asks X11 for a grab.
- *
- * return FALSE when key could not be grabbed.
- */
-int mode_grab_key ( Mode *mode, Display *display );
-
-/**
- * @param mode The mode to query
- * @param display The X Server display handle.
- *
- * Releases previously grabbed key.
- */
-void mode_ungrab_key ( Mode *mode, Display *display );
-
-/**
- * @param mode The mode to query
- *
- * Print the current keybing for this mode to stdout.
- */
-void mode_print_keybindings ( const Mode *mode );
-
-/**
- * @param mode The mode to query
- *
* Helper functions for mode.
* Get the private data object.
*/