mirror of
https://github.com/davatorium/rofi.git
synced 2024-10-27 05:23:18 -04:00
23 lines
459 B
C
23 lines
459 B
C
#ifndef ROFI_DIALOG_COMBI_H
|
|
#define ROFI_DIALOG_COMBI_H
|
|
|
|
/**
|
|
* @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;
|
|
|
|
/*@}*/
|
|
#endif // ROFI_DIALOG_COMBI_H
|