summaryrefslogtreecommitdiffstats
path: root/include/dialogs
diff options
context:
space:
mode:
Diffstat (limited to 'include/dialogs')
-rw-r--r--include/dialogs/combi.h9
-rw-r--r--include/dialogs/dmenu.h3
-rw-r--r--include/dialogs/drun.h1
-rw-r--r--include/dialogs/help-keys.h4
-rw-r--r--include/dialogs/run.h1
-rw-r--r--include/dialogs/ssh.h4
6 files changed, 17 insertions, 5 deletions
diff --git a/include/dialogs/combi.h b/include/dialogs/combi.h
index a3082c4a..f4259ec0 100644
--- a/include/dialogs/combi.h
+++ b/include/dialogs/combi.h
@@ -5,9 +5,18 @@
* @defgroup COBIMode Combi
* @ingroup MODES
*
+ * Dialog that can combine multiple #Mode into one view.
+ *
+ * This mode uses the following options from the #config object:
+ * * #Settings::combi_modi
+ *
+ * It creates the following option:
+ * * Settings::display_combi
+ *
* @{
*/
+/** #Mode object representing the combi dialog. */
extern Mode combi_mode;
/*@}*/
diff --git a/include/dialogs/dmenu.h b/include/dialogs/dmenu.h
index a495fe44..d25ef529 100644
--- a/include/dialogs/dmenu.h
+++ b/include/dialogs/dmenu.h
@@ -15,6 +15,9 @@
*/
int dmenu_switcher_dialog ( void );
+/**
+ * Print dmenu mode commandline options to stdout, for use in help menu.
+ */
void print_dmenu_options ( void );
/*@}*/
diff --git a/include/dialogs/drun.h b/include/dialogs/drun.h
index ac3ef1b0..8296e7a3 100644
--- a/include/dialogs/drun.h
+++ b/include/dialogs/drun.h
@@ -8,6 +8,7 @@
*/
#include <config.h>
#ifdef ENABLE_DRUN
+/** #Mode object representing the desktop menu run dialog. */
extern Mode drun_mode;
#endif // ENABLE_DRUN
/*@}*/
diff --git a/include/dialogs/help-keys.h b/include/dialogs/help-keys.h
index b444a5be..fff00397 100644
--- a/include/dialogs/help-keys.h
+++ b/include/dialogs/help-keys.h
@@ -10,8 +10,8 @@
* @{
*/
/**
- * Internal handle to the help key mode
- */
+ * #Mode object representing the help key mode view
+ */
extern Mode help_keys_mode;
/*@}*/
#endif // ROFI_DIALOG_HELPKEYS_H
diff --git a/include/dialogs/run.h b/include/dialogs/run.h
index 4a4d9674..e325a934 100644
--- a/include/dialogs/run.h
+++ b/include/dialogs/run.h
@@ -12,6 +12,7 @@
*
* @{
*/
+/** #Mode object representing the run dialog. */
extern Mode run_mode;
/*@}*/
diff --git a/include/dialogs/ssh.h b/include/dialogs/ssh.h
index d55e2db0..63eac16f 100644
--- a/include/dialogs/ssh.h
+++ b/include/dialogs/ssh.h
@@ -17,9 +17,7 @@
* @{
*/
-/**
- * SSH Mode object.
- */
+/** #Mode object representing the ssh dialog. */
extern Mode ssh_mode;
/*@}*/
#endif // ROFI_DIALOG_SSH_H