mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
Fix dialog -> mode
Fix more old naming.
This commit is contained in:
parent
534aa6ad54
commit
e6dbc8fbd3
11 changed files with 38 additions and 38 deletions
14
configure.ac
14
configure.ac
|
@ -94,10 +94,10 @@ AS_IF([test "x${enable_asan}" = "xyes" ], [
|
|||
|
||||
|
||||
dnl --------------------------------------------------------------------
|
||||
dnl DRun dialog
|
||||
dnl DRun Mode
|
||||
dnl --------------------------------------------------------------------
|
||||
AC_ARG_ENABLE([drun], AS_HELP_STRING([--disable-drun],[Disable desktop file run dialog]))
|
||||
AS_IF([test "x${enable_drun}" != "xno"], [AC_DEFINE([ENABLE_DRUN], [1], [Enable desktop file run dialog])])
|
||||
AC_ARG_ENABLE([drun], AS_HELP_STRING([--disable-drun],[Disable desktop file run mode]))
|
||||
AS_IF([test "x${enable_drun}" != "xno"], [AC_DEFINE([ENABLE_DRUN], [1], [Enable desktop file run mode])])
|
||||
|
||||
dnl ---------------------------------------------------------------------
|
||||
dnl Disable window mode
|
||||
|
@ -176,14 +176,14 @@ AC_OUTPUT
|
|||
echo ""
|
||||
echo "-------------------------------------"
|
||||
if test x$enable_drun != xno; then
|
||||
echo "Desktop File drun dialog Enabled"
|
||||
echo "Desktop File drun Enabled"
|
||||
else
|
||||
echo "Desktop File drun dialog Disabled"
|
||||
echo "Desktop File drun Disabled"
|
||||
fi
|
||||
if test x$enable_windowmode != xno; then
|
||||
echo "Window Switcher dialog Enabled"
|
||||
echo "Window switcher mode Enabled"
|
||||
else
|
||||
echo "Window Switcher dialog Disabled"
|
||||
echo "Window switcher Mode Disabled"
|
||||
fi
|
||||
if test x$enable_asan = xyes; then
|
||||
echo "Asan address sanitize Enabled"
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_COMBI_H
|
||||
#define ROFI_DIALOG_COMBI_H
|
||||
#ifndef ROFI_MODE_COMBI_H
|
||||
#define ROFI_MODE_COMBI_H
|
||||
#include "mode.h"
|
||||
|
||||
/**
|
||||
|
@ -48,4 +48,4 @@
|
|||
extern Mode combi_mode;
|
||||
|
||||
/**@}*/
|
||||
#endif // ROFI_DIALOG_COMBI_H
|
||||
#endif // ROFI_MODE_COMBI_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_DMENU_H
|
||||
#define ROFI_DIALOG_DMENU_H
|
||||
#ifndef ROFI_MODE_DMENU_H
|
||||
#define ROFI_MODE_DMENU_H
|
||||
|
||||
/**
|
||||
* @defgroup DMENU DMenu
|
||||
|
@ -48,4 +48,4 @@ int dmenu_mode_dialog(void);
|
|||
void print_dmenu_options(void);
|
||||
|
||||
/**@}*/
|
||||
#endif // ROFI_DIALOG_DMENU_H
|
||||
#endif // ROFI_MODE_DMENU_H
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef ROFI_DIALOGS_DMENU_SCRIPT_SHARED_H
|
||||
#define ROFI_DIALOGS_DMENU_SCRIPT_SHARED_H
|
||||
#ifndef ROFI_MODES_DMENU_SCRIPT_SHARED_H
|
||||
#define ROFI_MODES_DMENU_SCRIPT_SHARED_H
|
||||
|
||||
#include <glib.h>
|
||||
#include <mode.h>
|
||||
|
@ -32,4 +32,4 @@ typedef struct {
|
|||
void dmenuscript_parse_entry_extras(G_GNUC_UNUSED Mode *sw,
|
||||
DmenuScriptEntry *entry, char *buffer,
|
||||
size_t length);
|
||||
#endif // ROFI_DIALOGS_DMENU_SCRIPT_SHARED_H
|
||||
#endif // ROFI_MODES_DMENU_SCRIPT_SHARED_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_DRUN_H
|
||||
#define ROFI_DIALOG_DRUN_H
|
||||
#ifndef ROFI_MODE_DRUN_H
|
||||
#define ROFI_MODE_DRUN_H
|
||||
|
||||
#include "mode.h"
|
||||
|
||||
|
@ -40,4 +40,4 @@
|
|||
extern Mode drun_mode;
|
||||
#endif // ENABLE_DRUN
|
||||
/**@}*/
|
||||
#endif // ROFI_DIALOG_DRUN_H
|
||||
#endif // ROFI_MODE_DRUN_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_FILE_BROWSER_H
|
||||
#define ROFI_DIALOG_FILE_BROWSER_H
|
||||
#ifndef ROFI_MODE_FILE_BROWSER_H
|
||||
#define ROFI_MODE_FILE_BROWSER_H
|
||||
#include "mode.h"
|
||||
/**
|
||||
* @defgroup FileBrowserMode FileBrowser
|
||||
|
@ -55,4 +55,4 @@ Mode *create_new_file_browser(void);
|
|||
ModeMode file_browser_mode_completer(Mode *sw, int mretv, char **input,
|
||||
unsigned int selected_line, char **path);
|
||||
/**@}*/
|
||||
#endif // ROFI_DIALOG_FILE_BROWSER_H
|
||||
#endif // ROFI_MODE_FILE_BROWSER_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_HELPKEYS_H
|
||||
#define ROFI_DIALOG_HELPKEYS_H
|
||||
#ifndef ROFI_MODE_HELPKEYS_H
|
||||
#define ROFI_MODE_HELPKEYS_H
|
||||
|
||||
#include "mode.h"
|
||||
/**
|
||||
|
@ -42,4 +42,4 @@
|
|||
*/
|
||||
extern Mode help_keys_mode;
|
||||
/**@}*/
|
||||
#endif // ROFI_DIALOG_HELPKEYS_H
|
||||
#endif // ROFI_MODE_HELPKEYS_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_RUN_H
|
||||
#define ROFI_DIALOG_RUN_H
|
||||
#ifndef ROFI_MODE_RUN_H
|
||||
#define ROFI_MODE_RUN_H
|
||||
|
||||
#include "mode.h"
|
||||
|
||||
|
@ -45,4 +45,4 @@
|
|||
extern Mode run_mode;
|
||||
|
||||
/**@}*/
|
||||
#endif // DIALOG_RUN_H
|
||||
#endif // ROFI_MODE_RUN_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_SCRIPT_H
|
||||
#define ROFI_DIALOG_SCRIPT_H
|
||||
#ifndef ROFI_MODE_SCRIPT_H
|
||||
#define ROFI_MODE_SCRIPT_H
|
||||
|
||||
#include "mode.h"
|
||||
|
||||
|
@ -55,4 +55,4 @@ Mode *script_mode_parse_setup(const char *str);
|
|||
*/
|
||||
gboolean script_mode_is_valid(const char *token);
|
||||
/**@}*/
|
||||
#endif // ROFI_DIALOG_SCRIPT_H
|
||||
#endif // ROFI_MODE_SCRIPT_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_SSH_H
|
||||
#define ROFI_DIALOG_SSH_H
|
||||
#ifndef ROFI_MODE_SSH_H
|
||||
#define ROFI_MODE_SSH_H
|
||||
#include "mode.h"
|
||||
/**
|
||||
* @defgroup SSHMode SSH
|
||||
|
@ -44,7 +44,7 @@
|
|||
* @{
|
||||
*/
|
||||
|
||||
/** #Mode object representing the ssh dialog. */
|
||||
/** #Mode object representing the ssh mode. */
|
||||
extern Mode ssh_mode;
|
||||
/**@}*/
|
||||
#endif // ROFI_DIALOG_SSH_H
|
||||
#endif // ROFI_MODE_SSH_H
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef ROFI_DIALOG_WINDOW_H
|
||||
#define ROFI_DIALOG_WINDOW_H
|
||||
#ifndef ROFI_MODE_WINDOW_H
|
||||
#define ROFI_MODE_WINDOW_H
|
||||
|
||||
#include "mode.h"
|
||||
|
||||
|
@ -44,4 +44,4 @@ extern Mode window_mode_cd;
|
|||
void window_client_handle_signal(xcb_window_t win, gboolean create);
|
||||
#endif // WINDOW_MODE
|
||||
/** @}*/
|
||||
#endif // ROFI_DIALOG_WINDOW_H
|
||||
#endif // ROFI_MODE_WINDOW_H
|
||||
|
|
Loading…
Reference in a new issue