medit/moo/mooedit/mooeditprefs.h

73 lines
2.9 KiB
C
Raw Normal View History

/*
2005-09-06 09:21:05 -07:00
* mooeditprefs.h
2005-06-22 11:20:32 -07:00
*
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
2005-06-22 11:20:32 -07:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* See COPYING file that comes with this distribution.
*/
2005-09-06 09:21:05 -07:00
#ifndef __MOO_EDIT_PREFS_H__
#define __MOO_EDIT_PREFS_H__
2005-06-22 11:20:32 -07:00
#include <mooedit/mooeditor.h>
2005-06-22 11:20:32 -07:00
G_BEGIN_DECLS
#define MOO_EDIT_PREFS_PREFIX "Editor"
GtkWidget *moo_edit_prefs_page_new (MooEditor *editor);
GtkWidget *moo_edit_colors_prefs_page_new (MooEditor *editor);
2005-06-22 11:20:32 -07:00
/* defined in mooeditprefs.c */
const char *moo_edit_setting (const char *setting_name);
2006-04-09 02:56:23 -07:00
#define MOO_EDIT_PREFS_DEFAULT_LANG "default_lang"
2006-06-01 00:09:07 -07:00
#define MOO_EDIT_PREFS_SAVE_SESSION "save_session"
2005-06-22 11:20:32 -07:00
2006-04-24 22:10:36 -07:00
#define MOO_EDIT_PREFS_TAB_KEY_ACTION "tab_key_action"
#define MOO_EDIT_PREFS_SPACES_NO_TABS "spaces_instead_of_tabs"
#define MOO_EDIT_PREFS_INDENT_WIDTH "indent_width"
2006-04-24 22:10:36 -07:00
#define MOO_EDIT_PREFS_AUTO_INDENT "auto_indent"
#define MOO_EDIT_PREFS_BACKSPACE_INDENTS "backspace_indents"
#define MOO_EDIT_PREFS_AUTO_SAVE "auto_save"
#define MOO_EDIT_PREFS_AUTO_SAVE_INTERVAL "auto_save_interval"
#define MOO_EDIT_PREFS_MAKE_BACKUPS "make_backups"
#define MOO_EDIT_PREFS_STRIP "strip"
#define MOO_EDIT_PREFS_COLOR_SCHEME "color_scheme"
#define MOO_EDIT_PREFS_SMART_HOME_END "smart_home_end"
#define MOO_EDIT_PREFS_WRAP_ENABLE "wrapping_enable"
#define MOO_EDIT_PREFS_WRAP_WORDS "wrapping_dont_split_words"
#define MOO_EDIT_PREFS_ENABLE_HIGHLIGHTING "enable_highlighting"
#define MOO_EDIT_PREFS_HIGHLIGHT_MATCHING "highlight_matching_brackets"
#define MOO_EDIT_PREFS_HIGHLIGHT_MISMATCHING "highlight_mismatching_brackets"
#define MOO_EDIT_PREFS_HIGHLIGHT_CURRENT_LINE "highlight_current_line"
#define MOO_EDIT_PREFS_SHOW_LINE_NUMBERS "show_line_numbers"
#define MOO_EDIT_PREFS_SHOW_TABS "show_tabs"
#define MOO_EDIT_PREFS_SHOW_TRAILING_SPACES "show_trailing_spaces"
#define MOO_EDIT_PREFS_USE_DEFAULT_FONT "use_default_font"
#define MOO_EDIT_PREFS_FONT "font"
2006-11-13 22:58:23 -08:00
#define MOO_EDIT_PREFS_LINE_NUMBERS_FONT "line_numbers_font"
#define MOO_EDIT_PREFS_LAST_DIR "last_dir"
2006-11-18 23:12:56 -08:00
#define MOO_EDIT_PREFS_PDF_LAST_DIR "pdf_last_dir"
2006-11-19 10:36:05 -08:00
#define MOO_EDIT_PREFS_DIALOGS "dialogs"
#define MOO_EDIT_PREFS_DIALOG_OPEN MOO_EDIT_PREFS_DIALOGS "/open"
2006-04-04 23:22:26 -07:00
#define MOO_EDIT_PREFS_QUICK_SEARCH_FLAGS "quick_search_flags"
2006-06-04 20:14:33 -07:00
#define MOO_EDIT_PREFS_SEARCH_FLAGS "search_flags"
2006-04-04 23:22:26 -07:00
2005-06-22 11:20:32 -07:00
G_END_DECLS
2005-09-06 09:21:05 -07:00
#endif /* __MOO_EDIT_PREFS_H__ */