# ifndef JUCI_FILES_H_
# define JUCI_FILES_H_
# include <string>
# define JUCI_VERSION "1.1.3"
const std : : string configjson =
" { \n "
" \" version \" : \" " + std : : string ( JUCI_VERSION ) + " \" , \n "
" \" default_window_size \" : { \n "
" \" width \" : 800, \n "
" \" height \" : 600 \n "
" }, \n "
" \" gtk_theme \" : { \n "
" \" name_comment \" : \" Use \\ \" \\ \" for default theme, At least these two exist on all systems: Adwaita, Raleigh \" , \n "
" \" name \" : \" \" , \n "
" \" variant_comment \" : \" Use \\ \" \\ \" for default variant, and \\ \" dark \\ \" for dark theme variant. Note that not all themes support dark variant, but for instance Adwaita does \" , \n "
" \" variant \" : \" \" \n "
" }, \n "
" \" terminal \" : { \n "
" \" history_size \" : 1000, \n "
" \" font_comment \" : \" Use \\ \" \\ \" to use source.font with slightly smaller size \" , \n "
" \" font \" : \" \" \n "
" }, \n "
" \" source \" : { \n "
" \" style_comment \" : \" Use \\ \" \\ \" for default style, and for instance juci-dark or juci-dark-blue together with dark gtk_theme variant. Styles from normal gtksourceview install: classic, cobalt, kate, oblivion, solarized-dark, solarized-light, tango \" , \n "
" \" style \" : \" juci-light \" , \n "
" \" font_comment \" : \" Use \\ \" \\ \" for default font, and for instance \\ \" Monospace 12 \\ \" to also set size \" , \n "
# ifdef __APPLE__
" \" font \" : \" Menlo 11 \" , \n "
# else
# ifdef _WIN32
" \" font \" : \" Consolas \" , \n "
# else
" \" font \" : \" Monospace \" , \n "
# endif
# endif
" \" cleanup_whitespace_characters_comment \" : \" Remove trailing whitespace characters on save, and add trailing newline if missing \" , \n "
" \" cleanup_whitespace_characters \" : false, \n "
" \" show_map \" : true, \n "
" \" map_font_size \" : \" 1 \" , \n "
" \" spellcheck_language_comment \" : \" Use \\ \" \\ \" to set language from your locale settings \" , \n "
" \" spellcheck_language \" : \" en_US \" , \n "
" \" auto_tab_char_and_size_comment \" : \" Use false to always use default tab char and size \" , \n "
" \" auto_tab_char_and_size \" : true, \n "
" \" default_tab_char_comment \" : \" Use \\ \" \\ t \\ \" for regular tab \" , \n "
" \" default_tab_char \" : \" \" , \n "
" \" default_tab_size \" : 2, \n "
" \" wrap_lines \" : false, \n "
" \" highlight_current_line \" : true, \n "
" \" show_line_numbers \" : true, \n "
" \" clang_types \" : { \n "
" \" 8 \" : \" def:function \" , \n "
" \" 21 \" : \" def:function \" , \n "
" \" 22 \" : \" def:identifier \" , \n "
" \" 24 \" : \" def:function \" , \n "
" \" 25 \" : \" def:function \" , \n "
" \" 43 \" : \" def:type \" , \n "
" \" 44 \" : \" def:type \" , \n "
" \" 45 \" : \" def:type \" , \n "
" \" 46 \" : \" def:identifier \" , \n "
" \" 109 \" : \" def:string \" , \n "
" \" 702 \" : \" def:statement \" , \n "
" \" 705 \" : \" def:comment \" \n "
" }, \n "
" \" clang_format_style_comment \" : \" IndentWidth, AccessModifierOffset and UseTab are set automatically. See http://clang.llvm.org/docs/ClangFormatStyleOptions.html \" , \n "
" \" clang_format_style \" : \" ColumnLimit: 0, MaxEmptyLinesToKeep: 2 \" \n "
" }, \n "
" \" keybindings \" : { \n "
" \" preferences \" : \" <primary>comma \" , \n "
" \" quit \" : \" <primary>q \" , \n "
" \" new_file \" : \" <primary>n \" , \n "
" \" new_folder \" : \" <primary><shift>n \" , \n "
" \" open_file \" : \" <primary>o \" , \n "
" \" open_folder \" : \" <primary><shift>o \" , \n "
" \" save \" : \" <primary>s \" , \n "
" \" save_as \" : \" <primary><shift>s \" , \n "
" \" print \" : \" <primary>p \" , \n "
" \" edit_undo \" : \" <primary>z \" , \n "
" \" edit_redo \" : \" <primary><shift>z \" , \n "
" \" edit_cut \" : \" <primary>x \" , \n "
" \" edit_copy \" : \" <primary>c \" , \n "
" \" edit_paste \" : \" <primary>v \" , \n "
" \" edit_find \" : \" <primary>f \" , \n "
" \" edit_set_tab \" : \" \" , \n "
" \" source_spellcheck \" : \" \" , \n "
" \" source_spellcheck_clear \" : \" \" , \n "
" \" source_spellcheck_next_error \" : \" <primary><shift>e \" , \n "
" \" source_indentation_set_buffer_tab \" : \" \" , \n "
" \" source_indentation_auto_indent_buffer \" : \" <primary><shift>i \" , \n "
" \" source_goto_line \" : \" <primary>g \" , \n "
" \" source_center_cursor \" : \" <primary>l \" , \n "
" \" source_find_documentation \" : \" <primary><shift>d \" , \n "
" \" source_goto_declaration \" : \" <primary>d \" , \n "
" \" source_goto_usage \" : \" <primary>u \" , \n "
" \" source_goto_method \" : \" <primary>m \" , \n "
" \" source_rename \" : \" <primary>r \" , \n "
" \" source_goto_next_diagnostic \" : \" <primary>e \" , \n "
" \" source_apply_fix_its \" : \" <control>space \" , \n "
" \" project_set_run_arguments \" : \" \" , \n "
" \" compile_and_run \" : \" <primary>Return \" , \n "
" \" compile \" : \" <primary><shift>Return \" , \n "
" \" run_command \" : \" <alt>Return \" , \n "
" \" kill_last_running \" : \" <primary>Escape \" , \n "
" \" force_kill_last_running \" : \" <primary><shift>Escape \" , \n "
" \" debug_set_run_arguments \" : \" \" , \n "
" \" debug_start_continue \" : \" <primary>y \" , \n "
" \" debug_stop \" : \" <primary><shift>y \" , \n "
" \" debug_kill \" : \" <primary><shift>k \" , \n "
" \" debug_step_over \" : \" <primary>j \" , \n "
" \" debug_step_into \" : \" <primary>t \" , \n "
" \" debug_step_out \" : \" <primary><shift>t \" , \n "
" \" debug_backtrace \" : \" <primary><shift>j \" , \n "
" \" debug_show_variables \" : \" <primary><shift>b \" , \n "
" \" debug_run_command \" : \" <alt><shift>Return \" , \n "
" \" debug_toggle_breakpoint \" : \" <primary>b \" , \n "
" \" debug_goto_stop \" : \" <primary><shift>l \" , \n "
# ifdef __linux
" \" next_tab \" : \" <primary>Tab \" , \n "
" \" previous_tab \" : \" <primary><shift>Tab \" , \n "
# else
" \" next_tab \" : \" <primary><alt>Right \" , \n "
" \" previous_tab \" : \" <primary><alt>Left \" , \n "
# endif
" \" close_tab \" : \" <primary>w \" \n "
" }, \n "
" \" project \" : { \n "
" \" default_build_path_comment \" : \" Use <project_directory_name> to insert the project top level directory name \" , \n "
" \" default_build_path \" : \" ./build \" , \n "
" \" debug_build_path_comment \" : \" Use <project_directory_name> to insert the project top level directory name, and <default_build_path> to insert your default_build_path setting. \" , \n "
" \" debug_build_path \" : \" <default_build_path>/debug \" , \n "
# ifdef _WIN32
" \" cmake_command \" : \" cmake -G \\ \" MSYS Makefiles \\ \" \" , \n "
# else
" \" cmake_command \" : \" cmake \" , \n "
# endif
" \" make_command \" : \" cmake --build . \" , \n "
" \" save_on_compile_or_run \" : true, \n "
" \" clear_terminal_on_compile \" : true \n "
" }, \n "
" \" documentation_searches \" : { \n "
" \" clang \" : { \n "
" \" separator \" : \" :: \" , \n "
" \" queries \" : { \n "
" \" @empty \" : \" https://www.google.com/search?btnI&q=c%2B%2B+ \" , \n "
" \" std \" : \" https://www.google.com/search?btnI&q=site:http://www.cplusplus.com/reference/+ \" , \n "
" \" boost \" : \" https://www.google.com/search?btnI&q=site:http://www.boost.org/doc/libs/1_59_0/+ \" , \n "
" \" Gtk \" : \" https://www.google.com/search?btnI&q=site:https://developer.gnome.org/gtkmm/stable/+ \" , \n "
" \" @any \" : \" https://www.google.com/search?btnI&q= \" \n "
" } \n "
" } \n "
" } \n "
" } \n " ;
const std : : string juci_light_style =
" <?xml version= \" 1.0 \" encoding= \" UTF-8 \" ?> \n "
" \n "
" <style-scheme id= \" juci-light \" _name= \" juci \" version= \" 1.0 \" > \n "
" <author>juCi++ team</author> \n "
" <_description>Default juCi++ style</_description> \n "
" \n "
" <!-- Palette --> \n "
" <color name= \" white \" value= \" #FFFFFF \" /> \n "
" <color name= \" black \" value= \" #000000 \" /> \n "
" <color name= \" gray \" value= \" #888888 \" /> \n "
" <color name= \" red \" value= \" #CC0000 \" /> \n "
" <color name= \" green \" value= \" #008800 \" /> \n "
" <color name= \" blue \" value= \" #0000FF \" /> \n "
" <color name= \" dark-blue \" value= \" #002299 \" /> \n "
" <color name= \" yellow \" value= \" #FFFF00 \" /> \n "
" <color name= \" light-yellow \" value= \" #FFFF88 \" /> \n "
" <color name= \" orange \" value= \" #FF8800 \" /> \n "
" <color name= \" purple \" value= \" #990099 \" /> \n "
" \n "
" <style name= \" text \" foreground= \" #000000 \" background= \" #FFFFFF \" /> \n "
" <style name= \" background-pattern \" background= \" #rgba(0,0,0,.03) \" /> \n "
" <style name= \" selection \" background= \" #4A90D9 \" /> \n "
" \n "
" <!-- Current Line Highlighting --> \n "
" <style name= \" current-line \" background= \" #rgba(0,0,0,.07) \" /> \n "
" \n "
" <!-- Bracket Matching --> \n "
" <style name= \" bracket-match \" foreground= \" white \" background= \" gray \" bold= \" true \" /> \n "
" <style name= \" bracket-mismatch \" foreground= \" white \" background= \" #FF0000 \" bold= \" true \" /> \n "
" \n "
" <!-- Search Matching --> \n "
" <style name= \" search-match \" background= \" yellow \" /> \n "
" \n "
" <!-- Language specifics --> \n "
" <style name= \" def:builtin \" foreground= \" blue \" /> \n "
" <style name= \" def:constant \" foreground= \" blue \" /> \n "
" <style name= \" def:boolean \" foreground= \" red \" /> \n "
" <style name= \" def:decimal \" foreground= \" red \" /> \n "
" <style name= \" def:base-n-integer \" foreground= \" red \" /> \n "
" <style name= \" def:floating-point \" foreground= \" red \" /> \n "
" <style name= \" def:complex \" foreground= \" red \" /> \n "
" <style name= \" def:character \" foreground= \" red \" /> \n "
" <style name= \" def:special-char \" foreground= \" red \" /> \n "
" \n \n "
" <!-- Language specifics used by clang-parser in default config --> \n "
" <style name= \" def:string \" foreground= \" red \" /> \n "
" <style name= \" def:comment \" foreground= \" gray \" /> \n "
" <style name= \" def:statement \" foreground= \" blue \" /> \n "
" <style name= \" def:type \" foreground= \" blue \" /> \n "
" <style name= \" def:function \" foreground= \" dark-blue \" /> \n "
" <style name= \" def:identifier \" foreground= \" purple \" /> \n "
" <style name= \" def:preprocessor \" foreground= \" green \" /> \n "
" <style name= \" def:error \" foreground= \" red \" /> \n "
" <style name= \" def:warning \" foreground= \" orange \" /> \n "
" <style name= \" def:note \" foreground= \" black \" background= \" light-yellow \" /> \n "
" \n "
" </style-scheme> \n " ;
const std : : string juci_dark_style =
" <?xml version= \" 1.0 \" encoding= \" UTF-8 \" ?> \n "
" \n "
" <style-scheme id= \" juci-dark \" _name= \" juci \" version= \" 1.0 \" > \n "
" <author>juCi++ team</author> \n "
" <_description>Dark juCi++ style</_description> \n "
" \n "
" <!-- Palette --> \n "
" <color name= \" white \" value= \" #CCCCCC \" /> \n "
" <color name= \" black \" value= \" #292929 \" /> \n "
" <color name= \" gray \" value= \" #888888 \" /> \n "
" <color name= \" red \" value= \" #FF9999 \" /> \n "
" <color name= \" green \" value= \" #AACC99 \" /> \n "
" <color name= \" blue \" value= \" #9090FF \" /> \n "
" <color name= \" light-blue \" value= \" #AAAAFF \" /> \n "
" <color name= \" purple \" value= \" #DD88DD \" /> \n "
" \n "
" <style name= \" text \" foreground= \" white \" background= \" black \" /> \n "
" <style name= \" background-pattern \" background= \" #rgba(255,255,255,.04) \" /> \n "
" <style name= \" selection \" background= \" #215D9C \" /> \n "
" \n "
" <!-- Current Line Highlighting --> \n "
" <style name= \" current-line \" background= \" #rgba(255,255,255,.06) \" /> \n "
" \n "
" <!-- Bracket Matching --> \n "
" <style name= \" bracket-match \" foreground= \" black \" background= \" gray \" bold= \" true \" /> \n "
" <style name= \" bracket-mismatch \" foreground= \" black \" background= \" #FF0000 \" bold= \" true \" /> \n "
" \n "
" <!-- Search Matching --> \n "
" <style name= \" search-match \" foreground= \" black \" background= \" white \" /> \n "
" \n "
" <!-- Language specifics --> \n "
" <style name= \" def:builtin \" foreground= \" blue \" /> \n "
" <style name= \" def:constant \" foreground= \" blue \" /> \n "
" <style name= \" def:boolean \" foreground= \" red \" /> \n "
" <style name= \" def:decimal \" foreground= \" red \" /> \n "
" <style name= \" def:base-n-integer \" foreground= \" red \" /> \n "
" <style name= \" def:floating-point \" foreground= \" red \" /> \n "
" <style name= \" def:complex \" foreground= \" red \" /> \n "
" <style name= \" def:character \" foreground= \" red \" /> \n "
" <style name= \" def:special-char \" foreground= \" red \" /> \n "
" \n \n "
" <!-- Language specifics used by clang-parser in default config --> \n "
" <style name= \" def:string \" foreground= \" red \" /> \n "
" <style name= \" def:comment \" foreground= \" gray \" /> \n "
" <style name= \" def:statement \" foreground= \" blue \" /> \n "
" <style name= \" def:type \" foreground= \" blue \" /> \n "
" <style name= \" def:function \" foreground= \" light-blue \" /> \n "
" <style name= \" def:identifier \" foreground= \" purple \" /> \n "
" <style name= \" def:preprocessor \" foreground= \" green \" /> \n "
" <style name= \" def:error \" foreground= \" #FF6666 \" /> \n "
" <style name= \" def:warning \" foreground= \" #FFE100 \" /> \n "
" <style name= \" def:note \" foreground= \" white \" background= \" #444444 \" /> \n "
" \n "
" </style-scheme> \n " ;
const std : : string juci_dark_blue_style =
" <?xml version= \" 1.0 \" encoding= \" UTF-8 \" ?> \n "
" \n "
" <style-scheme id= \" juci-dark-blue \" _name= \" juci \" version= \" 1.0 \" > \n "
" <author>juCi++ team</author> \n "
" <_description>Dark blue juCi++ style based on the Emacs deeper blue theme</_description> \n "
" \n "
" <!-- Palette --> \n "
" <color name= \" white \" value= \" #D6D6D6 \" /> \n "
" <color name= \" dark-blue \" value= \" #202233 \" /> \n "
" <color name= \" gray \" value= \" #919191 \" /> \n "
" <color name= \" red \" value= \" #FF7777 \" /> \n "
" <color name= \" yellow \" value= \" #FFE100 \" /> \n "
" <color name= \" light-yellow \" value= \" #EAC595 \" /> \n "
" <color name= \" light-blue \" value= \" #00CCFF \" /> \n "
" <color name= \" green \" value= \" #14ECA8 \" /> \n "
" <color name= \" blue \" value= \" #282A40 \" /> \n "
" <color name= \" orange \" value= \" #FF8800 \" /> \n "
" <color name= \" light-green \" value= \" #A0DB6B \" /> \n "
" \n "
" <style name= \" text \" foreground= \" white \" background= \" dark-blue \" /> \n "
" <style name= \" background-pattern \" background= \" #rgba(255,255,255,.04) \" /> \n "
" <style name= \" selection \" background= \" #215D9C \" /> \n "
" \n "
" <!-- Current Line Highlighting --> \n "
" <style name= \" current-line \" background= \" #rgba(255,255,255,.05) \" /> \n "
" \n "
" <!-- Bracket Matching --> \n "
" <style name= \" bracket-match \" foreground= \" dark-blue \" background= \" gray \" bold= \" true \" /> \n "
" <style name= \" bracket-mismatch \" foreground= \" dark-blue \" background= \" #FF0000 \" bold= \" true \" /> \n "
" \n "
" <!-- Search Matching --> \n "
" <style name= \" search-match \" foreground= \" dark-blue \" background= \" white \" /> \n "
" \n "
" <!-- Language specifics --> \n "
" <style name= \" def:builtin \" foreground= \" light-blue \" /> \n "
" <style name= \" def:constant \" foreground= \" light-blue \" /> \n "
" <style name= \" def:boolean \" foreground= \" light-yellow \" /> \n "
" <style name= \" def:decimal \" foreground= \" light-yellow \" /> \n "
" <style name= \" def:base-n-integer \" foreground= \" light-yellow \" /> \n "
" <style name= \" def:floating-point \" foreground= \" light-yellow \" /> \n "
" <style name= \" def:complex \" foreground= \" light-yellow \" /> \n "
" <style name= \" def:character \" foreground= \" light-yellow \" /> \n "
" <style name= \" def:special-char \" foreground= \" light-yellow \" /> \n "
" \n \n "
" <!-- Language specifics used by clang-parser in default config --> \n "
" <style name= \" def:string \" foreground= \" light-yellow \" /> \n "
" <style name= \" def:comment \" foreground= \" gray \" /> \n "
" <style name= \" def:statement \" foreground= \" light-blue \" /> \n "
" <style name= \" def:type \" foreground= \" light-blue \" /> \n "
" <style name= \" def:function \" foreground= \" green \" /> \n "
" <style name= \" def:identifier \" foreground= \" light-green \" /> \n "
" <style name= \" def:preprocessor \" foreground= \" yellow \" /> \n "
" <style name= \" def:error \" foreground= \" red \" /> \n "
" <style name= \" def:warning \" foreground= \" yellow \" /> \n "
" <style name= \" def:note \" foreground= \" white \" background= \" #404466 \" /> \n "
" \n "
" </style-scheme> \n " ;
# endif // JUCI_FILES_H_