├── .gitignore ├── COPYING ├── Makefile.am ├── autogen.sh ├── bindings ├── python │ ├── gtkscintilla.c │ ├── gtkscintilla.defs │ ├── gtkscintilla.override │ ├── gtkscintillaconstants.c │ ├── gtkscintillaconstants.defs │ ├── gtkscintillafunctions.c │ ├── gtkscintillafunctions.defs │ ├── gtkscintillaproperties.c │ └── gtkscintillaproperties.defs └── vala │ ├── gtkscintilla-1.0.files │ ├── gtkscintilla-1.0.gi │ ├── gtkscintilla-1.0.metadata │ └── gtkscintilla-1.0.namespace ├── compile ├── config.h.in ├── configure.ac ├── data ├── Makefile.am └── gtkscintilla-1.0.xml ├── demo ├── .debugger ├── .gitignore ├── Makefile.am ├── demo.c ├── demo2.c ├── demo2.ui └── helloworld.c ├── docs └── reference │ ├── .gitignore │ ├── Makefile.am │ ├── gtkscintilla-docs.sgml │ ├── gtkscintilla-overrides.txt │ ├── gtkscintilla-sections.txt │ └── gtkscintilla.types ├── gtk-doc.make ├── gtkscintilla-1.0.pc.in ├── m4 ├── gtk-doc.m4 └── introspection.m4 ├── scintilla ├── .hg │ ├── 00changelog.i │ ├── branch │ ├── branchheads.cache │ ├── cache │ │ └── branchheads │ ├── dirstate │ ├── hgrc │ ├── requires │ ├── store │ │ ├── 00changelog.d │ │ ├── 00changelog.i │ │ ├── 00manifest.d │ │ ├── 00manifest.i │ │ ├── data │ │ │ ├── .hgeol.i │ │ │ ├── .hgignore.i │ │ │ ├── .hgtags.i │ │ │ ├── _license.txt.i │ │ │ ├── _r_e_a_d_m_e.i │ │ │ ├── bin │ │ │ │ ├── .cvsignore.i │ │ │ │ └── empty.txt.i │ │ │ ├── cocoa │ │ │ │ ├── _framework.mk.i │ │ │ │ ├── _info_bar.h.i │ │ │ │ ├── _info_bar.mm.i │ │ │ │ ├── _info_bar_communicator.h.i │ │ │ │ ├── _plat_cocoa.h.i │ │ │ │ ├── _plat_cocoa.mm.i │ │ │ │ ├── _quartz_text_layout.h.i │ │ │ │ ├── _quartz_text_style.h.i │ │ │ │ ├── _quartz_text_style_attribute.h.i │ │ │ │ ├── _sci_test.mk.i │ │ │ │ ├── _scintilla_call_tip.h.i │ │ │ │ ├── _scintilla_call_tip.mm.i │ │ │ │ ├── _scintilla_cocoa.h.i │ │ │ │ ├── _scintilla_cocoa.mm.i │ │ │ │ ├── _scintilla_framework │ │ │ │ │ ├── _english.lproj │ │ │ │ │ │ └── _info_plist.strings.i │ │ │ │ │ ├── _info.plist.i │ │ │ │ │ ├── _scintilla___prefix.pch.i │ │ │ │ │ └── _scintilla_framework.xcodeproj │ │ │ │ │ │ └── project.pbxproj.i │ │ │ │ ├── _scintilla_list_box.h.i │ │ │ │ ├── _scintilla_list_box.mm.i │ │ │ │ ├── _scintilla_test │ │ │ │ │ ├── _app_controller.h.i │ │ │ │ │ ├── _app_controller.mm.i │ │ │ │ │ ├── _english.lproj │ │ │ │ │ │ ├── _info_plist.strings.i │ │ │ │ │ │ └── _main_menu.xib.i │ │ │ │ │ ├── _info.plist.i │ │ │ │ │ ├── _scintilla-_info.plist.i │ │ │ │ │ ├── _scintilla_test.xcodeproj │ │ │ │ │ │ └── project.pbxproj.i │ │ │ │ │ ├── _scintilla_test___prefix.pch.i │ │ │ │ │ ├── _test_data.sql.i │ │ │ │ │ └── main.m.i │ │ │ │ ├── _scintilla_view.h.i │ │ │ │ ├── _scintilla_view.mm.i │ │ │ │ ├── common.mk.i │ │ │ │ └── res │ │ │ │ │ ├── info__bar__bg.png.i │ │ │ │ │ ├── mac__cursor__busy.png.i │ │ │ │ │ └── mac__cursor__flipped.png.i │ │ │ ├── delbin.bat.i │ │ │ ├── delcvs.bat.i │ │ │ ├── doc │ │ │ │ ├── _design.html.i │ │ │ │ ├── _icons.html.i │ │ │ │ ├── _lexer.txt.i │ │ │ │ ├── _sci_break.jpg.i │ │ │ │ ├── _sci_coding.html.i │ │ │ │ ├── _sci_rest.jpg.i │ │ │ │ ├── _sci_t_e_ico.png.i │ │ │ │ ├── _sci_word.jpg.i │ │ │ │ ├── _scintilla_doc.html.d │ │ │ │ ├── _scintilla_doc.html.i │ │ │ │ ├── _scintilla_download.html.i │ │ │ │ ├── _scintilla_history.html.d │ │ │ │ ├── _scintilla_history.html.i │ │ │ │ ├── _scintilla_related.html.i │ │ │ │ ├── _scintilla_to_do.html.i │ │ │ │ ├── _scintilla_usage.html.i │ │ │ │ ├── _steps.html.i │ │ │ │ ├── annotations.png.i │ │ │ │ ├── index.html.i │ │ │ │ └── styledmargin.png.i │ │ │ ├── gtk │ │ │ │ ├── _converter.h.i │ │ │ │ ├── _plat_g_t_k.cxx.i │ │ │ │ ├── _scintilla_g_t_k.cxx.i │ │ │ │ ├── deps.mak.i │ │ │ │ ├── makefile.i │ │ │ │ ├── scintilla-marshal.c.i │ │ │ │ ├── scintilla-marshal.h.i │ │ │ │ ├── scintilla-marshal.list.i │ │ │ │ └── scintilla.mak.i │ │ │ ├── include │ │ │ │ ├── .cvsignore.i │ │ │ │ ├── _accessor.h.i │ │ │ │ ├── _face.py.i │ │ │ │ ├── _h_facer.py.i │ │ │ │ ├── _i_lexer.h.i │ │ │ │ ├── _key_words.h.i │ │ │ │ ├── _platform.h.i │ │ │ │ ├── _pos_reg_exp.h.i │ │ │ │ ├── _prop_set.h.i │ │ │ │ ├── _s_string.h.i │ │ │ │ ├── _sci_lexer.h.i │ │ │ │ ├── _scintilla.h.i │ │ │ │ ├── _scintilla.iface.i │ │ │ │ ├── _scintilla_widget.h.i │ │ │ │ ├── _win_defs.h.i │ │ │ │ └── _window_accessor.h.i │ │ │ ├── lexers │ │ │ │ ├── _lex_a68k.cxx.i │ │ │ │ ├── _lex_a_p_d_l.cxx.i │ │ │ │ ├── _lex_a_s_y.cxx.i │ │ │ │ ├── _lex_a_u3.cxx.i │ │ │ │ ├── _lex_a_v_e.cxx.i │ │ │ │ ├── _lex_a_v_s.cxx.i │ │ │ │ ├── _lex_abaqus.cxx.i │ │ │ │ ├── _lex_ada.cxx.i │ │ │ │ ├── _lex_asm.cxx.i │ │ │ │ ├── _lex_asn1.cxx.i │ │ │ │ ├── _lex_baan.cxx.i │ │ │ │ ├── _lex_bash.cxx.i │ │ │ │ ├── _lex_basic.cxx.i │ │ │ │ ├── _lex_bullant.cxx.i │ │ │ │ ├── _lex_c_l_w.cxx.i │ │ │ │ ├── _lex_c_o_b_o_l.cxx.i │ │ │ │ ├── _lex_c_p_p.cxx.i │ │ │ │ ├── _lex_c_s_s.cxx.i │ │ │ │ ├── _lex_caml.cxx.i │ │ │ │ ├── _lex_cmake.cxx.i │ │ │ │ ├── _lex_coffee_script.cxx.i │ │ │ │ ├── _lex_conf.cxx.i │ │ │ │ ├── _lex_crontab.cxx.i │ │ │ │ ├── _lex_csound.cxx.i │ │ │ │ ├── _lex_d.cxx.i │ │ │ │ ├── _lex_e_c_l.cxx.i │ │ │ │ ├── _lex_e_script.cxx.i │ │ │ │ ├── _lex_eiffel.cxx.i │ │ │ │ ├── _lex_erlang.cxx.i │ │ │ │ ├── _lex_flagship.cxx.i │ │ │ │ ├── _lex_forth.cxx.i │ │ │ │ ├── _lex_fortran.cxx.i │ │ │ │ ├── _lex_g_a_p.cxx.i │ │ │ │ ├── _lex_gui4_cli.cxx.i │ │ │ │ ├── _lex_h_t_m_l.cxx.i │ │ │ │ ├── _lex_haskell.cxx.i │ │ │ │ ├── _lex_inno.cxx.i │ │ │ │ ├── _lex_kix.cxx.i │ │ │ │ ├── _lex_lisp.cxx.i │ │ │ │ ├── _lex_lout.cxx.i │ │ │ │ ├── _lex_lua.cxx.i │ │ │ │ ├── _lex_m_m_i_x_a_l.cxx.i │ │ │ │ ├── _lex_m_p_t.cxx.i │ │ │ │ ├── _lex_m_s_s_q_l.cxx.i │ │ │ │ ├── _lex_magik.cxx.i │ │ │ │ ├── _lex_markdown.cxx.i │ │ │ │ ├── _lex_matlab.cxx.i │ │ │ │ ├── _lex_metapost.cxx.i │ │ │ │ ├── _lex_modula.cxx.i │ │ │ │ ├── _lex_my_s_q_l.cxx.i │ │ │ │ ├── _lex_nimrod.cxx.i │ │ │ │ ├── _lex_nsis.cxx.i │ │ │ │ ├── _lex_opal.cxx.i │ │ │ │ ├── _lex_others.cxx.i │ │ │ │ ├── _lex_p_b.cxx.i │ │ │ │ ├── _lex_p_l_m.cxx.i │ │ │ │ ├── _lex_p_o_v.cxx.i │ │ │ │ ├── _lex_p_s.cxx.i │ │ │ │ ├── _lex_pascal.cxx.i │ │ │ │ ├── _lex_perl.cxx.i │ │ │ │ ├── _lex_power_pro.cxx.i │ │ │ │ ├── _lex_power_shell.cxx.i │ │ │ │ ├── _lex_progress.cxx.i │ │ │ │ ├── _lex_python.cxx.i │ │ │ │ ├── _lex_r.cxx.i │ │ │ │ ├── _lex_rebol.cxx.i │ │ │ │ ├── _lex_ruby.cxx.i │ │ │ │ ├── _lex_s_m_l.cxx.i │ │ │ │ ├── _lex_s_q_l.cxx.i │ │ │ │ ├── _lex_scriptol.cxx.i │ │ │ │ ├── _lex_smalltalk.cxx.i │ │ │ │ ├── _lex_sorcus.cxx.i │ │ │ │ ├── _lex_specman.cxx.i │ │ │ │ ├── _lex_spice.cxx.i │ │ │ │ ├── _lex_t_a_c_l.cxx.i │ │ │ │ ├── _lex_t_a_d_s3.cxx.i │ │ │ │ ├── _lex_t_a_l.cxx.i │ │ │ │ ├── _lex_t_c_l.cxx.i │ │ │ │ ├── _lex_t_c_m_d.cxx.i │ │ │ │ ├── _lex_te_x.cxx.i │ │ │ │ ├── _lex_txt2tags.cxx.i │ │ │ │ ├── _lex_v_b.cxx.i │ │ │ │ ├── _lex_v_h_d_l.cxx.i │ │ │ │ ├── _lex_verilog.cxx.i │ │ │ │ └── _lex_y_a_m_l.cxx.i │ │ │ ├── lexlib │ │ │ │ ├── _accessor.cxx.i │ │ │ │ ├── _accessor.h.i │ │ │ │ ├── _character_set.cxx.i │ │ │ │ ├── _character_set.h.i │ │ │ │ ├── _lex_accessor.h.i │ │ │ │ ├── _lexer_base.cxx.i │ │ │ │ ├── _lexer_base.h.i │ │ │ │ ├── _lexer_module.cxx.i │ │ │ │ ├── _lexer_module.h.i │ │ │ │ ├── _lexer_no_exceptions.cxx.i │ │ │ │ ├── _lexer_no_exceptions.h.i │ │ │ │ ├── _lexer_simple.cxx.i │ │ │ │ ├── _lexer_simple.h.i │ │ │ │ ├── _option_set.h.i │ │ │ │ ├── _prop_set_simple.cxx.i │ │ │ │ ├── _prop_set_simple.h.i │ │ │ │ ├── _sparse_state.h.i │ │ │ │ ├── _style_context.cxx.i │ │ │ │ ├── _style_context.h.i │ │ │ │ ├── _word_list.cxx.i │ │ │ │ └── _word_list.h.i │ │ │ ├── macosx │ │ │ │ ├── _ext_input.cxx.i │ │ │ │ ├── _ext_input.h.i │ │ │ │ ├── _plat_mac_o_s_x.cxx.i │ │ │ │ ├── _plat_mac_o_s_x.h.i │ │ │ │ ├── _quartz_text_layout.h.i │ │ │ │ ├── _quartz_text_style.h.i │ │ │ │ ├── _quartz_text_style_attribute.h.i │ │ │ │ ├── _sci_test │ │ │ │ │ ├── _english.lproj │ │ │ │ │ │ ├── _info_plist.strings.i │ │ │ │ │ │ ├── main.nib │ │ │ │ │ │ │ ├── classes.nib.i │ │ │ │ │ │ │ ├── info.nib.i │ │ │ │ │ │ │ └── objects.xib.i │ │ │ │ │ │ └── main.xib.i │ │ │ │ │ ├── _info.plist.i │ │ │ │ │ ├── _sci_test.xcode │ │ │ │ │ │ └── project.pbxproj.i │ │ │ │ │ ├── _sci_test___prefix.pch.i │ │ │ │ │ ├── main.cpp.i │ │ │ │ │ └── version.plist.i │ │ │ │ ├── _scintilla_call_tip.cxx.i │ │ │ │ ├── _scintilla_call_tip.h.i │ │ │ │ ├── _scintilla_list_box.cxx.i │ │ │ │ ├── _scintilla_list_box.h.i │ │ │ │ ├── _scintilla_mac_o_s_x.cxx.i │ │ │ │ ├── _scintilla_mac_o_s_x.h.i │ │ │ │ ├── _t_carbon_event.cxx.i │ │ │ │ ├── _t_carbon_event.h.i │ │ │ │ ├── _t_rect.h.i │ │ │ │ ├── _t_view.cxx.i │ │ │ │ ├── _t_view.h.i │ │ │ │ ├── deps.mak.i │ │ │ │ └── makefile.i │ │ │ ├── src │ │ │ │ ├── _accessor.cxx.i │ │ │ │ ├── _auto_complete.cxx.i │ │ │ │ ├── _auto_complete.h.i │ │ │ │ ├── _call_tip.cxx.i │ │ │ │ ├── _call_tip.h.i │ │ │ │ ├── _catalogue.cxx.i │ │ │ │ ├── _catalogue.h.i │ │ │ │ ├── _cell_buffer.cxx.i │ │ │ │ ├── _cell_buffer.h.i │ │ │ │ ├── _char_classify.cxx.i │ │ │ │ ├── _char_classify.h.i │ │ │ │ ├── _character_set.h.i │ │ │ │ ├── _contraction_state.cxx.i │ │ │ │ ├── _contraction_state.h.i │ │ │ │ ├── _decoration.cxx.i │ │ │ │ ├── _decoration.h.i │ │ │ │ ├── _document.cxx.i │ │ │ │ ├── _document.h.i │ │ │ │ ├── _document_accessor.cxx.i │ │ │ │ ├── _document_accessor.h.i │ │ │ │ ├── _editor.cxx.d │ │ │ │ ├── _editor.cxx.i │ │ │ │ ├── _editor.h.i │ │ │ │ ├── _external_lexer.cxx.i │ │ │ │ ├── _external_lexer.h.i │ │ │ │ ├── _font_quality.h.i │ │ │ │ ├── _indicator.cxx.i │ │ │ │ ├── _indicator.h.i │ │ │ │ ├── _key_map.cxx.i │ │ │ │ ├── _key_map.h.i │ │ │ │ ├── _key_words.cxx.i │ │ │ │ ├── _lex_a_p_d_l.cxx.i │ │ │ │ ├── _lex_a_s_y.cxx.i │ │ │ │ ├── _lex_a_u3.cxx.i │ │ │ │ ├── _lex_a_v_e.cxx.i │ │ │ │ ├── _lex_abaqus.cxx.i │ │ │ │ ├── _lex_ada.cxx.i │ │ │ │ ├── _lex_asm.cxx.i │ │ │ │ ├── _lex_asn1.cxx.i │ │ │ │ ├── _lex_b_b.cxx.i │ │ │ │ ├── _lex_baan.cxx.i │ │ │ │ ├── _lex_bash.cxx.i │ │ │ │ ├── _lex_basic.cxx.i │ │ │ │ ├── _lex_bullant.cxx.i │ │ │ │ ├── _lex_c_l_w.cxx.i │ │ │ │ ├── _lex_c_o_b_o_l.cxx.i │ │ │ │ ├── _lex_c_p_p.cxx.i │ │ │ │ ├── _lex_c_s_s.cxx.i │ │ │ │ ├── _lex_caml.cxx.i │ │ │ │ ├── _lex_cmake.cxx.i │ │ │ │ ├── _lex_conf.cxx.i │ │ │ │ ├── _lex_crontab.cxx.i │ │ │ │ ├── _lex_csound.cxx.i │ │ │ │ ├── _lex_d.cxx.i │ │ │ │ ├── _lex_e_script.cxx.i │ │ │ │ ├── _lex_eiffel.cxx.i │ │ │ │ ├── _lex_erlang.cxx.i │ │ │ │ ├── _lex_flagship.cxx.i │ │ │ │ ├── _lex_forth.cxx.i │ │ │ │ ├── _lex_fortran.cxx.i │ │ │ │ ├── _lex_g_a_p.cxx.i │ │ │ │ ├── _lex_gen.py.i │ │ │ │ ├── _lex_gui4_cli.cxx.i │ │ │ │ ├── _lex_h_t_m_l.cxx.i │ │ │ │ ├── _lex_haskell.cxx.i │ │ │ │ ├── _lex_inno.cxx.i │ │ │ │ ├── _lex_kix.cxx.i │ │ │ │ ├── _lex_lisp.cxx.i │ │ │ │ ├── _lex_lout.cxx.i │ │ │ │ ├── _lex_lua.cxx.i │ │ │ │ ├── _lex_m_m_i_x_a_l.cxx.i │ │ │ │ ├── _lex_m_p_t.cxx.i │ │ │ │ ├── _lex_m_s_s_q_l.cxx.i │ │ │ │ ├── _lex_magik.cxx.i │ │ │ │ ├── _lex_markdown.cxx.i │ │ │ │ ├── _lex_matlab.cxx.i │ │ │ │ ├── _lex_metapost.cxx.i │ │ │ │ ├── _lex_my_s_q_l.cxx.i │ │ │ │ ├── _lex_nimrod.cxx.i │ │ │ │ ├── _lex_nsis.cxx.i │ │ │ │ ├── _lex_opal.cxx.i │ │ │ │ ├── _lex_others.cxx.i │ │ │ │ ├── _lex_p_b.cxx.i │ │ │ │ ├── _lex_p_l_m.cxx.i │ │ │ │ ├── _lex_p_o_v.cxx.i │ │ │ │ ├── _lex_p_s.cxx.i │ │ │ │ ├── _lex_pascal.cxx.i │ │ │ │ ├── _lex_perl.cxx.i │ │ │ │ ├── _lex_power_pro.cxx.i │ │ │ │ ├── _lex_power_shell.cxx.i │ │ │ │ ├── _lex_progress.cxx.i │ │ │ │ ├── _lex_python.cxx.i │ │ │ │ ├── _lex_r.cxx.i │ │ │ │ ├── _lex_rebol.cxx.i │ │ │ │ ├── _lex_ruby.cxx.i │ │ │ │ ├── _lex_s_m_l.cxx.i │ │ │ │ ├── _lex_s_q_l.cxx.i │ │ │ │ ├── _lex_scriptol.cxx.i │ │ │ │ ├── _lex_smalltalk.cxx.i │ │ │ │ ├── _lex_sorcus.cxx.i │ │ │ │ ├── _lex_specman.cxx.i │ │ │ │ ├── _lex_spice.cxx.i │ │ │ │ ├── _lex_t_a_c_l.cxx.i │ │ │ │ ├── _lex_t_a_d_s3.cxx.i │ │ │ │ ├── _lex_t_a_l.cxx.i │ │ │ │ ├── _lex_t_c_l.cxx.i │ │ │ │ ├── _lex_te_x.cxx.i │ │ │ │ ├── _lex_v_b.cxx.i │ │ │ │ ├── _lex_v_h_d_l.cxx.i │ │ │ │ ├── _lex_verilog.cxx.i │ │ │ │ ├── _lex_y_a_m_l.cxx.i │ │ │ │ ├── _line_marker.cxx.i │ │ │ │ ├── _line_marker.h.i │ │ │ │ ├── _partitioning.h.i │ │ │ │ ├── _per_line.cxx.i │ │ │ │ ├── _per_line.h.i │ │ │ │ ├── _pos_reg_exp.cxx.i │ │ │ │ ├── _position_cache.cxx.i │ │ │ │ ├── _position_cache.h.i │ │ │ │ ├── _prop_set.cxx.i │ │ │ │ ├── _prop_set_simple.h.i │ │ │ │ ├── _r_e_search.cxx.i │ │ │ │ ├── _r_e_search.h.i │ │ │ │ ├── _run_styles.cxx.i │ │ │ │ ├── _run_styles.h.i │ │ │ │ ├── _s_vector.h.i │ │ │ │ ├── _sci_t_e.properties.i │ │ │ │ ├── _scintilla_base.cxx.i │ │ │ │ ├── _scintilla_base.h.i │ │ │ │ ├── _selection.cxx.i │ │ │ │ ├── _selection.h.i │ │ │ │ ├── _split_vector.h.i │ │ │ │ ├── _style.cxx.i │ │ │ │ ├── _style.h.i │ │ │ │ ├── _style_context.cxx.i │ │ │ │ ├── _style_context.h.i │ │ │ │ ├── _uni_conversion.cxx.i │ │ │ │ ├── _uni_conversion.h.i │ │ │ │ ├── _view_style.cxx.i │ │ │ │ ├── _view_style.h.i │ │ │ │ ├── _window_accessor.cxx.i │ │ │ │ ├── _x_p_m.cxx.i │ │ │ │ └── _x_p_m.h.i │ │ │ ├── test │ │ │ │ ├── _message_numbers.py.i │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ ├── _xite_menu.py.i │ │ │ │ ├── _xite_win.py.i │ │ │ │ ├── examples │ │ │ │ │ ├── x.asp.i │ │ │ │ │ ├── x.asp.styled.i │ │ │ │ │ ├── x.cxx.i │ │ │ │ │ ├── x.cxx.styled.i │ │ │ │ │ ├── x.d.i │ │ │ │ │ ├── x.d.styled.i │ │ │ │ │ ├── x.html.i │ │ │ │ │ ├── x.html.styled.i │ │ │ │ │ ├── x.php.i │ │ │ │ │ ├── x.php.styled.i │ │ │ │ │ ├── x.py.i │ │ │ │ │ ├── x.py.styled.i │ │ │ │ │ ├── x.vb.i │ │ │ │ │ └── x.vb.styled.i │ │ │ │ ├── lex_tests.py.i │ │ │ │ ├── performance_tests.py.i │ │ │ │ ├── simple_tests.py.i │ │ │ │ ├── unit │ │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ │ ├── _sci_t_e.properties.i │ │ │ │ │ ├── makefile.i │ │ │ │ │ ├── test_contraction_state.cxx.i │ │ │ │ │ ├── test_partitioning.cxx.i │ │ │ │ │ ├── test_run_styles.cxx.i │ │ │ │ │ ├── test_sparse_state.cxx.i │ │ │ │ │ ├── test_split_vector.cxx.i │ │ │ │ │ └── unit_test.cxx.i │ │ │ │ └── xite.py.i │ │ │ ├── tgzsrc.i │ │ │ ├── vcbuild │ │ │ │ ├── .cvsignore.i │ │ │ │ ├── _sci_lexer.dsp.i │ │ │ │ └── vcbuild.dsp.i │ │ │ ├── version.txt.i │ │ │ ├── win32 │ │ │ │ ├── .cvsignore.i │ │ │ │ ├── _external_lexer.cxx.i │ │ │ │ ├── _external_lexer.h.i │ │ │ │ ├── _margin.cur.i │ │ │ │ ├── _plat_win.cxx.i │ │ │ │ ├── _plat_win.h.i │ │ │ │ ├── _platform_res.h.i │ │ │ │ ├── _sci_t_e.properties.i │ │ │ │ ├── _scint_res.rc.i │ │ │ │ ├── _scintilla.def.i │ │ │ │ ├── _scintilla_win.cxx.i │ │ │ │ ├── depend.i │ │ │ │ ├── deps.mak.i │ │ │ │ ├── makefile.i │ │ │ │ ├── makefile__bor.i │ │ │ │ ├── makefile__vc.i │ │ │ │ ├── objs.mak.i │ │ │ │ ├── scintilla.mak.i │ │ │ │ └── scintilla__vc6.mak.i │ │ │ └── zipsrc.bat.i │ │ ├── fncache │ │ └── undo │ ├── tags.cache │ ├── undo.bookmarks │ ├── undo.branch │ ├── undo.desc │ └── undo.dirstate ├── .hgeol ├── .hgignore ├── .hgtags ├── License.txt ├── Makefile.am ├── README ├── bin │ ├── .cvsignore │ └── empty.txt ├── cocoa │ ├── Framework.mk │ ├── InfoBar.h │ ├── InfoBar.mm │ ├── InfoBarCommunicator.h │ ├── PlatCocoa.h │ ├── PlatCocoa.mm │ ├── QuartzTextLayout.h │ ├── QuartzTextStyle.h │ ├── QuartzTextStyleAttribute.h │ ├── SciTest.mk │ ├── ScintillaCocoa.h │ ├── ScintillaCocoa.mm │ ├── ScintillaFramework │ │ ├── English.lproj │ │ │ └── InfoPlist.strings │ │ ├── Info.plist │ │ ├── ScintillaFramework.xcodeproj │ │ │ └── project.pbxproj │ │ └── Scintilla_Prefix.pch │ ├── ScintillaTest │ │ ├── AppController.h │ │ ├── AppController.mm │ │ ├── English.lproj │ │ │ ├── InfoPlist.strings │ │ │ └── MainMenu.xib │ │ ├── Info.plist │ │ ├── Scintilla-Info.plist │ │ ├── ScintillaTest.xcodeproj │ │ │ └── project.pbxproj │ │ ├── ScintillaTest_Prefix.pch │ │ ├── TestData.sql │ │ └── main.m │ ├── ScintillaView.h │ ├── ScintillaView.mm │ ├── common.mk │ └── res │ │ ├── info_bar_bg.png │ │ ├── mac_cursor_busy.png │ │ └── mac_cursor_flipped.png ├── delbin.bat ├── delcvs.bat ├── doc │ ├── Design.html │ ├── Icons.html │ ├── Lexer.txt │ ├── SciBreak.jpg │ ├── SciCoding.html │ ├── SciRest.jpg │ ├── SciTEIco.png │ ├── SciWord.jpg │ ├── ScintillaDoc.html │ ├── ScintillaDownload.html │ ├── ScintillaHistory.html │ ├── ScintillaRelated.html │ ├── ScintillaToDo.html │ ├── ScintillaUsage.html │ ├── Steps.html │ ├── annotations.png │ ├── index.html │ └── styledmargin.png ├── gtk │ ├── Converter.h │ ├── PlatGTK.cxx │ ├── ScintillaGTK.cxx │ ├── deps.mak │ ├── makefile │ ├── scintilla-marshal.c │ ├── scintilla-marshal.h │ └── scintilla-marshal.list ├── include │ ├── .cvsignore │ ├── Face.py │ ├── HFacer.py │ ├── ILexer.h │ ├── Platform.h │ ├── SciLexer.h │ ├── Scintilla.h │ ├── Scintilla.iface │ └── ScintillaWidget.h ├── lexers │ ├── LexA68k.cxx │ ├── LexAPDL.cxx │ ├── LexASY.cxx │ ├── LexAU3.cxx │ ├── LexAVE.cxx │ ├── LexAVS.cxx │ ├── LexAbaqus.cxx │ ├── LexAda.cxx │ ├── LexAsm.cxx │ ├── LexAsn1.cxx │ ├── LexBaan.cxx │ ├── LexBash.cxx │ ├── LexBasic.cxx │ ├── LexBullant.cxx │ ├── LexCLW.cxx │ ├── LexCOBOL.cxx │ ├── LexCPP.cxx │ ├── LexCSS.cxx │ ├── LexCaml.cxx │ ├── LexCmake.cxx │ ├── LexCoffeeScript.cxx │ ├── LexConf.cxx │ ├── LexCrontab.cxx │ ├── LexCsound.cxx │ ├── LexD.cxx │ ├── LexECL.cxx │ ├── LexEScript.cxx │ ├── LexEiffel.cxx │ ├── LexErlang.cxx │ ├── LexFlagship.cxx │ ├── LexForth.cxx │ ├── LexFortran.cxx │ ├── LexGAP.cxx │ ├── LexGui4Cli.cxx │ ├── LexHTML.cxx │ ├── LexHaskell.cxx │ ├── LexInno.cxx │ ├── LexKix.cxx │ ├── LexLisp.cxx │ ├── LexLout.cxx │ ├── LexLua.cxx │ ├── LexMMIXAL.cxx │ ├── LexMPT.cxx │ ├── LexMSSQL.cxx │ ├── LexMagik.cxx │ ├── LexMarkdown.cxx │ ├── LexMatlab.cxx │ ├── LexMetapost.cxx │ ├── LexModula.cxx │ ├── LexMySQL.cxx │ ├── LexNimrod.cxx │ ├── LexNsis.cxx │ ├── LexOpal.cxx │ ├── LexOthers.cxx │ ├── LexPB.cxx │ ├── LexPLM.cxx │ ├── LexPOV.cxx │ ├── LexPS.cxx │ ├── LexPascal.cxx │ ├── LexPerl.cxx │ ├── LexPowerPro.cxx │ ├── LexPowerShell.cxx │ ├── LexProgress.cxx │ ├── LexPython.cxx │ ├── LexR.cxx │ ├── LexRebol.cxx │ ├── LexRuby.cxx │ ├── LexSML.cxx │ ├── LexSQL.cxx │ ├── LexScriptol.cxx │ ├── LexSmalltalk.cxx │ ├── LexSorcus.cxx │ ├── LexSpecman.cxx │ ├── LexSpice.cxx │ ├── LexTACL.cxx │ ├── LexTADS3.cxx │ ├── LexTAL.cxx │ ├── LexTCL.cxx │ ├── LexTCMD.cxx │ ├── LexTeX.cxx │ ├── LexTxt2tags.cxx │ ├── LexVB.cxx │ ├── LexVHDL.cxx │ ├── LexVerilog.cxx │ └── LexYAML.cxx ├── lexlib │ ├── Accessor.cxx │ ├── Accessor.h │ ├── CharacterSet.cxx │ ├── CharacterSet.h │ ├── LexAccessor.h │ ├── LexerBase.cxx │ ├── LexerBase.h │ ├── LexerModule.cxx │ ├── LexerModule.h │ ├── LexerNoExceptions.cxx │ ├── LexerNoExceptions.h │ ├── LexerSimple.cxx │ ├── LexerSimple.h │ ├── OptionSet.h │ ├── PropSetSimple.cxx │ ├── PropSetSimple.h │ ├── SparseState.h │ ├── StyleContext.cxx │ ├── StyleContext.h │ ├── WordList.cxx │ └── WordList.h ├── src │ ├── AutoComplete.cxx │ ├── AutoComplete.h │ ├── CallTip.cxx │ ├── CallTip.h │ ├── Catalogue.cxx │ ├── Catalogue.h │ ├── CellBuffer.cxx │ ├── CellBuffer.h │ ├── CharClassify.cxx │ ├── CharClassify.h │ ├── ContractionState.cxx │ ├── ContractionState.h │ ├── Decoration.cxx │ ├── Decoration.h │ ├── Document.cxx │ ├── Document.h │ ├── Editor.cxx │ ├── Editor.h │ ├── ExternalLexer.cxx │ ├── ExternalLexer.h │ ├── FontQuality.h │ ├── Indicator.cxx │ ├── Indicator.h │ ├── KeyMap.cxx │ ├── KeyMap.h │ ├── LexGen.py │ ├── LineMarker.cxx │ ├── LineMarker.h │ ├── Partitioning.h │ ├── PerLine.cxx │ ├── PerLine.h │ ├── PositionCache.cxx │ ├── PositionCache.h │ ├── RESearch.cxx │ ├── RESearch.h │ ├── RunStyles.cxx │ ├── RunStyles.h │ ├── SVector.h │ ├── SciTE.properties │ ├── ScintillaBase.cxx │ ├── ScintillaBase.h │ ├── Selection.cxx │ ├── Selection.h │ ├── SplitVector.h │ ├── Style.cxx │ ├── Style.h │ ├── UniConversion.cxx │ ├── UniConversion.h │ ├── ViewStyle.cxx │ ├── ViewStyle.h │ ├── XPM.cxx │ └── XPM.h ├── test │ ├── MessageNumbers.py │ ├── README │ ├── XiteMenu.py │ ├── XiteWin.py │ ├── examples │ │ ├── x.asp │ │ ├── x.asp.styled │ │ ├── x.cxx │ │ ├── x.cxx.styled │ │ ├── x.d │ │ ├── x.d.styled │ │ ├── x.html │ │ ├── x.html.styled │ │ ├── x.php │ │ ├── x.php.styled │ │ ├── x.py │ │ ├── x.py.styled │ │ ├── x.vb │ │ └── x.vb.styled │ ├── lexTests.py │ ├── performanceTests.py │ ├── simpleTests.py │ ├── unit │ │ ├── README │ │ ├── SciTE.properties │ │ ├── makefile │ │ ├── testContractionState.cxx │ │ ├── testPartitioning.cxx │ │ ├── testRunStyles.cxx │ │ ├── testSparseState.cxx │ │ ├── testSplitVector.cxx │ │ └── unitTest.cxx │ └── xite.py ├── tgzsrc ├── version.txt ├── win32 │ ├── .cvsignore │ ├── PlatWin.cxx │ ├── PlatWin.h │ ├── SciTE.properties │ ├── ScintRes.rc │ ├── Scintilla.def │ ├── ScintillaWin.cxx │ ├── deps.mak │ ├── makefile │ ├── scintilla.mak │ └── scintilla_vc6.mak └── zipsrc.bat └── src ├── .gitignore ├── Makefile.am ├── accessors.c ├── constants.h ├── enums.c.tpl ├── enums.h.tpl ├── functions.c ├── gtkscintilla.c ├── gtkscintilla.h ├── lexer.c ├── lexer.h ├── properties.c ├── properties.h ├── search.c ├── signals.c ├── signals.h ├── style-properties.c ├── style-properties.h ├── style.c ├── style.h ├── text.c └── utils.c /.gitignore: -------------------------------------------------------------------------------- 1 | # Autotools 2 | /install-sh 3 | /ltmain.sh 4 | /m4/libtool.m4 5 | /m4/ltoptions.m4 6 | /m4/ltsugar.m4 7 | /m4/ltversion.m4 8 | /m4/lt~obsolete.m4 9 | /missing 10 | /aclocal.m4 11 | /autom4te.cache/ 12 | /autoscan.log 13 | /config.guess 14 | /config.h.in~ 15 | /config.sub 16 | /config.status 17 | /configure 18 | /depcomp 19 | /*.pc 20 | /config.h 21 | /config.h.in~ 22 | /stamp-h1 23 | /libtool 24 | .deps/ 25 | .libs/ 26 | Makefile.in 27 | Makefile 28 | 29 | # Compiled 30 | *.com 31 | *.class 32 | *.dll 33 | *.exe 34 | *.o 35 | *.so 36 | *.lo 37 | *.la 38 | 39 | # Archives 40 | *.7z 41 | *.dmg 42 | *.gz 43 | *.iso 44 | *.jar 45 | *.rar 46 | *.tar 47 | *.zip 48 | 49 | # OS gnerated files 50 | .DS_Store? 51 | ehthumbs.db 52 | Icon? 53 | Thumbs.db 54 | 55 | # Misc/TODO 56 | *.log 57 | /misc/ 58 | /bindings/ 59 | git_ignore_orig 60 | 61 | demo/gtkscintilla-demo 62 | demo/gtkscintilla-demo2 63 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- 1 | ACLOCAL_AMFLAGS = -I m4 2 | 3 | DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc --enable-introspection 4 | 5 | EXTRA_DIST = m4/introspection.m4 6 | 7 | SUBDIRS = scintilla src demo docs/reference data 8 | 9 | pkgconfigdir = $(libdir)/pkgconfig 10 | pkgconfig_DATA = gtkscintilla-1.0.pc 11 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gtkdocize || exit 1 4 | autoreconf -vfi 5 | 6 | echo 'Build system setup complete.' 7 | echo 'Now type `./configure` to configure the build system.' -------------------------------------------------------------------------------- /bindings/python/gtkscintilla.override: -------------------------------------------------------------------------------- 1 | %% 2 | headers 3 | #include 4 | #include "pygobject.h" 5 | #include "gtkscintilla.h" 6 | %% 7 | modulename gtkscintilla 8 | %% 9 | import gobject.GObject as PyGObject_Type 10 | %% 11 | ignore-glob 12 | *_get_type 13 | %% 14 | -------------------------------------------------------------------------------- /bindings/python/gtkscintillafunctions.c: -------------------------------------------------------------------------------- 1 | /* -- THIS FILE IS GENERATED - DO NOT EDIT *//* -*- Mode: C; c-basic-offset: 4 -*- */ 2 | 3 | #include 4 | 5 | 6 | 7 | #line 3 "gtkscintilla.override" 8 | #include 9 | #include "pygobject.h" 10 | #include "gtkscintilla.h" 11 | #line 12 "gtkscintillafunctions.c" 12 | 13 | 14 | /* ---------- types from other modules ---------- */ 15 | static PyTypeObject *_PyGObject_Type; 16 | #define PyGObject_Type (*_PyGObject_Type) 17 | 18 | 19 | /* ---------- forward type declarations ---------- */ 20 | 21 | #line 22 "gtkscintillafunctions.c" 22 | 23 | 24 | 25 | /* ----------- functions ----------- */ 26 | 27 | const PyMethodDef gtk_scintilla_functions[] = { 28 | { NULL, NULL, 0, NULL } 29 | }; 30 | 31 | /* initialise stuff extension classes */ 32 | void 33 | gtk_scintilla_register_classes(PyObject *d) 34 | { 35 | PyObject *module; 36 | 37 | if ((module = PyImport_ImportModule("gobject")) != NULL) { 38 | _PyGObject_Type = (PyTypeObject *)PyObject_GetAttrString(module, "GObject"); 39 | if (_PyGObject_Type == NULL) { 40 | PyErr_SetString(PyExc_ImportError, 41 | "cannot import name GObject from gobject"); 42 | return ; 43 | } 44 | } else { 45 | PyErr_SetString(PyExc_ImportError, 46 | "could not import gobject"); 47 | return ; 48 | } 49 | 50 | 51 | #line 52 "gtkscintillafunctions.c" 52 | } 53 | -------------------------------------------------------------------------------- /bindings/python/gtkscintillafunctions.defs: -------------------------------------------------------------------------------- 1 | ;; -*- scheme -*- 2 | ; object definitions ... 3 | ;; Enumerations and flags ... 4 | 5 | 6 | ;; From gtkscintillafunctions.h 7 | 8 | 9 | -------------------------------------------------------------------------------- /bindings/python/gtkscintillaproperties.c: -------------------------------------------------------------------------------- 1 | /* -- THIS FILE IS GENERATED - DO NOT EDIT *//* -*- Mode: C; c-basic-offset: 4 -*- */ 2 | 3 | #include 4 | 5 | 6 | 7 | #line 3 "gtkscintilla.override" 8 | #include 9 | #include "pygobject.h" 10 | #include "gtkscintilla.h" 11 | #line 12 "gtkscintillaproperties.c" 12 | 13 | 14 | /* ---------- types from other modules ---------- */ 15 | static PyTypeObject *_PyGObject_Type; 16 | #define PyGObject_Type (*_PyGObject_Type) 17 | 18 | 19 | /* ---------- forward type declarations ---------- */ 20 | 21 | #line 22 "gtkscintillaproperties.c" 22 | 23 | 24 | 25 | /* ----------- functions ----------- */ 26 | 27 | const PyMethodDef gtk_scintilla_functions[] = { 28 | { NULL, NULL, 0, NULL } 29 | }; 30 | 31 | /* initialise stuff extension classes */ 32 | void 33 | gtk_scintilla_register_classes(PyObject *d) 34 | { 35 | PyObject *module; 36 | 37 | if ((module = PyImport_ImportModule("gobject")) != NULL) { 38 | _PyGObject_Type = (PyTypeObject *)PyObject_GetAttrString(module, "GObject"); 39 | if (_PyGObject_Type == NULL) { 40 | PyErr_SetString(PyExc_ImportError, 41 | "cannot import name GObject from gobject"); 42 | return ; 43 | } 44 | } else { 45 | PyErr_SetString(PyExc_ImportError, 46 | "could not import gobject"); 47 | return ; 48 | } 49 | 50 | 51 | #line 52 "gtkscintillaproperties.c" 52 | } 53 | -------------------------------------------------------------------------------- /bindings/python/gtkscintillaproperties.defs: -------------------------------------------------------------------------------- 1 | ;; -*- scheme -*- 2 | ; object definitions ... 3 | ;; Enumerations and flags ... 4 | 5 | 6 | ;; From gtkscintillaproperties.h 7 | 8 | 9 | -------------------------------------------------------------------------------- /bindings/vala/gtkscintilla-1.0.files: -------------------------------------------------------------------------------- 1 | include/gtkscintilla-1.0/gtkscintilla/*.h 2 | include/gtkscintilla-1.0/scintilla/*.h 3 | -------------------------------------------------------------------------------- /bindings/vala/gtkscintilla-1.0.metadata: -------------------------------------------------------------------------------- 1 | *.priv hidden="1" 2 | *.parent_class hidden="1" 3 | -------------------------------------------------------------------------------- /bindings/vala/gtkscintilla-1.0.namespace: -------------------------------------------------------------------------------- 1 | GtkScintilla 2 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- 1 | AC_PREREQ([2.67]) 2 | AC_INIT([gtkscintilla], [1.0], [mbrush@leftclick.ca]) 3 | AC_CONFIG_MACRO_DIR([m4]) 4 | AM_INIT_AUTOMAKE([foreign silent-rules]) 5 | AM_SILENT_RULES([yes]) 6 | LT_INIT 7 | 8 | AC_PROG_CC 9 | AC_PROG_CXX 10 | AM_PROG_CC_C_O 11 | AC_PROG_INSTALL 12 | AC_PROG_LIBTOOL 13 | 14 | PKG_CHECK_MODULES([GTK], [gtk+-3.0], [], [ 15 | PKG_CHECK_MODULES([GTK], [gtk+-2.0]) 16 | ]) 17 | 18 | AC_PATH_PROG([GLIB_MKENUMS], [glib-mkenums], [no]) 19 | AC_SUBST([GLIB_MKENUMS]) 20 | if [[ x"$GLIB_MKENUMS" = "xno" ]]; then 21 | AC_MSG_ERROR([glib-mkenums not found, are GLib dev tools installed?]) 22 | fi 23 | 24 | GTK_DOC_CHECK([1.14], [--flavour no-tmpl]) 25 | 26 | GOBJECT_INTROSPECTION_CHECK([0.6.7]) 27 | 28 | 29 | AC_CONFIG_HEADERS([config.h]) 30 | AC_CONFIG_FILES([ gtkscintilla-1.0.pc 31 | Makefile 32 | scintilla/Makefile 33 | src/Makefile 34 | demo/Makefile 35 | docs/reference/Makefile 36 | data/Makefile]) 37 | AC_OUTPUT 38 | -------------------------------------------------------------------------------- /data/Makefile.am: -------------------------------------------------------------------------------- 1 | 2 | gladecatalogdir = `pkg-config --variable=catalogdir gladeui-1.0` 3 | gladecatalog_DATA = gtkscintilla-1.0.xml 4 | -------------------------------------------------------------------------------- /data/gtkscintilla-1.0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /demo/.debugger: -------------------------------------------------------------------------------- 1 | /tmp/test/bin/demo2 2 | GDB 3 | 4 | -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Compiled demos 3 | /demo 4 | /demo2 5 | -------------------------------------------------------------------------------- /demo/Makefile.am: -------------------------------------------------------------------------------- 1 | bin_PROGRAMS = gtkscintilla-demo gtkscintilla-demo2 2 | 3 | 4 | gtkscintilla_demo_CFLAGS = @GTK_CFLAGS@ \ 5 | -I$(top_srcdir)/src \ 6 | -I$(top_builddir)/src \ 7 | -I$(top_srcdir)/scintilla/include 8 | gtkscintilla_demo_LDADD = @GTK_LIBS@ \ 9 | $(top_builddir)/src/libgtkscintilla-1.0.la 10 | gtkscintilla_demo_SOURCES = demo.c 11 | 12 | 13 | gtkscintilla_demo2dir = $(pkgdatadir)/demo2 14 | gtkscintilla_demo2_DATA = demo2.ui helloworld.c 15 | gtkscintilla_demo2_CFLAGS = @GTK_CFLAGS@ \ 16 | -I$(top_srcdir)/src \ 17 | -I$(top_builddir)/src \ 18 | -I$(top_srcdir)/scintilla/include \ 19 | -DDEMO_UI_FILE=\"$(gtkscintilla_demo2dir)/demo2.ui\" \ 20 | -DDEMO_SAMPLE_FILE=\"$(gtkscintilla_demo2dir)/helloworld.c\" 21 | gtkscintilla_demo2_LDADD = @GTK_LIBS@ \ 22 | $(top_builddir)/src/libgtkscintilla-1.0.la 23 | gtkscintilla_demo2_SOURCES = demo2.c 24 | -------------------------------------------------------------------------------- /demo/demo.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | 4 | int main(int argc, char *argv[]) 5 | { 6 | GtkWidget *win, *sci; 7 | 8 | gtk_init(&argc, &argv); 9 | 10 | win = gtk_window_new(GTK_WINDOW_TOPLEVEL); 11 | gtk_window_set_default_size(GTK_WINDOW(win), 640, 480); 12 | gtk_window_set_title(GTK_WINDOW(win), "GtkScintilla Basic Demo"); 13 | g_signal_connect(win, "destroy", gtk_main_quit, NULL); 14 | 15 | sci = gtk_scintilla_new(); 16 | 17 | gtk_scintilla_set_lexer(GTK_SCINTILLA(sci), GTK_SCINTILLA_LEXER_CPP); 18 | 19 | /* access through gobject property */ 20 | g_object_set(G_OBJECT(sci), 21 | "text", 22 | "#include \n" 23 | "\nint main(int argc, char *argv[])\n" 24 | "{\n" 25 | " printf(\"Hello World\");\n" 26 | " return 0;\n" 27 | "}\n", 28 | NULL); 29 | 30 | gtk_container_add(GTK_CONTAINER(win), sci); 31 | gtk_widget_show_all(win); 32 | 33 | gtk_main(); 34 | 35 | return 0; 36 | } 37 | -------------------------------------------------------------------------------- /demo/helloworld.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char *argv[]) 4 | { 5 | printf("Hello World\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /docs/reference/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # GTK-DOC generated files in reference root 3 | /gtkscintilla-decl-list.txt 4 | /gtkscintilla-decl-list.txt.bak 5 | /gtkscintilla-decl.txt 6 | /gtkscintilla-decl.txt.bak 7 | /gtkscintilla-undeclared.txt 8 | /gtkscintilla-undocumented.txt 9 | /gtkscintilla-unused.txt 10 | /gtkscintilla.args 11 | /gtkscintilla.hierarchy 12 | /gtkscintilla.interfaces 13 | /gtkscintilla.prerequisites 14 | /gtkscintilla.signals 15 | /*.stamp 16 | 17 | # Generated documentation 18 | /html/ 19 | /xml/ 20 | -------------------------------------------------------------------------------- /docs/reference/gtkscintilla-overrides.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/docs/reference/gtkscintilla-overrides.txt -------------------------------------------------------------------------------- /docs/reference/gtkscintilla.types: -------------------------------------------------------------------------------- 1 | gtk_scintilla_get_type 2 | -------------------------------------------------------------------------------- /gtk-doc.make: -------------------------------------------------------------------------------- 1 | /usr/share/gtk-doc/data/gtk-doc.notmpl.make -------------------------------------------------------------------------------- /gtkscintilla-1.0.pc.in: -------------------------------------------------------------------------------- 1 | prefix=@prefix@ 2 | exec_prefix=@exec_prefix@ 3 | libdir=@libdir@ 4 | includedir=@includedir@ 5 | 6 | Name: GtkScintilla 7 | Description: A GTK+2 wrapper for the Scintilla editing component. 8 | Version: @VERSION@ 9 | Requires: gtk+-2.0 10 | Libs: -L${libdir} -lgtkscintilla-1.0 11 | Cflags: -I${includedir}/gtkscintilla-1.0 12 | 13 | -------------------------------------------------------------------------------- /m4/gtk-doc.m4: -------------------------------------------------------------------------------- 1 | /usr/share/aclocal/gtk-doc.m4 -------------------------------------------------------------------------------- /scintilla/.hg/00changelog.i: -------------------------------------------------------------------------------- 1 |  dummy changelog to prevent using the old repo layout -------------------------------------------------------------------------------- /scintilla/.hg/branch: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /scintilla/.hg/branchheads.cache: -------------------------------------------------------------------------------- 1 | c18e7d5ea58e394af4f4c9b30d9d857ba553bfbf 3607 2 | c18e7d5ea58e394af4f4c9b30d9d857ba553bfbf default 3 | 6b9c7f104c6160507212e5412ba79ecffc6f9057 scintilla 4 | b8fc14e068852eab14c1676972ecfe2dc9b3eb1c rel-1-66-osx-carbon 5 | -------------------------------------------------------------------------------- /scintilla/.hg/cache/branchheads: -------------------------------------------------------------------------------- 1 | a4776592168657e1a1d8dea8523c05abf0a95c38 4118 2 | a4776592168657e1a1d8dea8523c05abf0a95c38 default 3 | 6b9c7f104c6160507212e5412ba79ecffc6f9057 scintilla 4 | b8fc14e068852eab14c1676972ecfe2dc9b3eb1c rel-1-66-osx-carbon 5 | -------------------------------------------------------------------------------- /scintilla/.hg/dirstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/dirstate -------------------------------------------------------------------------------- /scintilla/.hg/hgrc: -------------------------------------------------------------------------------- 1 | [paths] 2 | default = http://scintilla.hg.sourceforge.net:8000/hgroot/scintilla/scintilla 3 | -------------------------------------------------------------------------------- /scintilla/.hg/requires: -------------------------------------------------------------------------------- 1 | revlogv1 2 | store 3 | fncache 4 | -------------------------------------------------------------------------------- /scintilla/.hg/store/00changelog.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/00changelog.d -------------------------------------------------------------------------------- /scintilla/.hg/store/00changelog.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/00changelog.i -------------------------------------------------------------------------------- /scintilla/.hg/store/00manifest.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/00manifest.d -------------------------------------------------------------------------------- /scintilla/.hg/store/00manifest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/00manifest.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/.hgeol.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/.hgeol.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/.hgignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/.hgignore.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/.hgtags.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/.hgtags.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/_license.txt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/_license.txt.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/_r_e_a_d_m_e.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/_r_e_a_d_m_e.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/bin/.cvsignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/bin/.cvsignore.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/bin/empty.txt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/bin/empty.txt.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_framework.mk.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_framework.mk.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_info_bar.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_info_bar.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_info_bar.mm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_info_bar.mm.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_info_bar_communicator.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_info_bar_communicator.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_plat_cocoa.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_plat_cocoa.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_plat_cocoa.mm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_plat_cocoa.mm.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_quartz_text_layout.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_quartz_text_layout.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_quartz_text_style.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_quartz_text_style.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_quartz_text_style_attribute.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_quartz_text_style_attribute.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_sci_test.mk.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_sci_test.mk.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_call_tip.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_call_tip.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_call_tip.mm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_call_tip.mm.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_cocoa.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_cocoa.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_cocoa.mm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_cocoa.mm.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_framework/_english.lproj/_info_plist.strings.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_framework/_english.lproj/_info_plist.strings.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_framework/_info.plist.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_framework/_info.plist.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_framework/_scintilla___prefix.pch.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_framework/_scintilla___prefix.pch.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_framework/_scintilla_framework.xcodeproj/project.pbxproj.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_framework/_scintilla_framework.xcodeproj/project.pbxproj.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_list_box.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_list_box.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_list_box.mm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_list_box.mm.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_app_controller.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_app_controller.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_app_controller.mm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_app_controller.mm.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_english.lproj/_info_plist.strings.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_english.lproj/_info_plist.strings.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_english.lproj/_main_menu.xib.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_english.lproj/_main_menu.xib.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_info.plist.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_info.plist.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_scintilla-_info.plist.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_scintilla-_info.plist.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_scintilla_test.xcodeproj/project.pbxproj.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_scintilla_test.xcodeproj/project.pbxproj.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_scintilla_test___prefix.pch.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_scintilla_test___prefix.pch.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/_test_data.sql.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/_test_data.sql.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_test/main.m.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_test/main.m.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_view.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_view.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/_scintilla_view.mm.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/_scintilla_view.mm.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/common.mk.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/common.mk.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/res/info__bar__bg.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/res/info__bar__bg.png.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/res/mac__cursor__busy.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/res/mac__cursor__busy.png.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/cocoa/res/mac__cursor__flipped.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/cocoa/res/mac__cursor__flipped.png.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/delbin.bat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/delbin.bat.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/delcvs.bat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/delcvs.bat.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_design.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_design.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_icons.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_icons.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_lexer.txt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_lexer.txt.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_sci_break.jpg.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_sci_break.jpg.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_sci_coding.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_sci_coding.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_sci_rest.jpg.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_sci_rest.jpg.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_sci_t_e_ico.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_sci_t_e_ico.png.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_sci_word.jpg.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_sci_word.jpg.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_scintilla_doc.html.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_scintilla_doc.html.d -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_scintilla_doc.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_scintilla_doc.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_scintilla_download.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_scintilla_download.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_scintilla_history.html.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_scintilla_history.html.d -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_scintilla_history.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_scintilla_history.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_scintilla_related.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_scintilla_related.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_scintilla_to_do.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_scintilla_to_do.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_scintilla_usage.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_scintilla_usage.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/_steps.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/_steps.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/annotations.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/annotations.png.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/index.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/index.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/doc/styledmargin.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/doc/styledmargin.png.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/_converter.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/_converter.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/_plat_g_t_k.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/_plat_g_t_k.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/_scintilla_g_t_k.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/_scintilla_g_t_k.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/deps.mak.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/deps.mak.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/makefile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/makefile.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/scintilla-marshal.c.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/scintilla-marshal.c.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/scintilla-marshal.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/scintilla-marshal.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/scintilla-marshal.list.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/scintilla-marshal.list.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/gtk/scintilla.mak.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/gtk/scintilla.mak.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/.cvsignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/.cvsignore.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_accessor.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_accessor.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_face.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_face.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_h_facer.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_h_facer.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_i_lexer.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_i_lexer.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_key_words.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_key_words.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_platform.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_platform.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_pos_reg_exp.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_pos_reg_exp.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_prop_set.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_prop_set.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_s_string.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_s_string.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_sci_lexer.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_sci_lexer.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_scintilla.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_scintilla.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_scintilla.iface.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_scintilla.iface.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_scintilla_widget.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_scintilla_widget.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_win_defs.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_win_defs.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/include/_window_accessor.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/include/_window_accessor.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_a68k.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_a68k.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_a_p_d_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_a_p_d_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_a_s_y.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_a_s_y.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_a_u3.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_a_u3.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_a_v_e.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_a_v_e.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_a_v_s.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_a_v_s.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_abaqus.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_abaqus.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_ada.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_ada.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_asm.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_asm.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_asn1.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_asn1.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_baan.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_baan.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_bash.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_bash.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_basic.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_basic.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_bullant.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_bullant.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_c_l_w.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_c_l_w.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_c_o_b_o_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_c_o_b_o_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_c_p_p.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_c_p_p.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_c_s_s.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_c_s_s.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_caml.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_caml.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_cmake.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_cmake.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_coffee_script.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_coffee_script.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_conf.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_conf.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_crontab.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_crontab.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_csound.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_csound.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_d.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_d.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_e_c_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_e_c_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_e_script.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_e_script.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_eiffel.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_eiffel.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_erlang.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_erlang.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_flagship.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_flagship.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_forth.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_forth.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_fortran.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_fortran.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_g_a_p.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_g_a_p.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_gui4_cli.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_gui4_cli.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_h_t_m_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_h_t_m_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_haskell.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_haskell.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_inno.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_inno.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_kix.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_kix.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_lisp.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_lisp.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_lout.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_lout.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_lua.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_lua.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_m_m_i_x_a_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_m_m_i_x_a_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_m_p_t.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_m_p_t.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_m_s_s_q_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_m_s_s_q_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_magik.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_magik.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_markdown.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_markdown.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_matlab.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_matlab.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_metapost.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_metapost.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_modula.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_modula.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_my_s_q_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_my_s_q_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_nimrod.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_nimrod.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_nsis.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_nsis.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_opal.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_opal.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_others.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_others.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_p_b.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_p_b.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_p_l_m.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_p_l_m.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_p_o_v.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_p_o_v.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_p_s.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_p_s.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_pascal.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_pascal.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_perl.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_perl.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_power_pro.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_power_pro.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_power_shell.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_power_shell.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_progress.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_progress.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_python.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_python.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_r.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_r.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_rebol.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_rebol.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_ruby.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_ruby.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_s_m_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_s_m_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_s_q_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_s_q_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_scriptol.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_scriptol.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_smalltalk.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_smalltalk.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_sorcus.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_sorcus.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_specman.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_specman.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_spice.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_spice.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_t_a_c_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_t_a_c_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_t_a_d_s3.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_t_a_d_s3.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_t_a_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_t_a_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_t_c_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_t_c_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_t_c_m_d.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_t_c_m_d.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_te_x.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_te_x.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_txt2tags.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_txt2tags.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_v_b.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_v_b.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_v_h_d_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_v_h_d_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_verilog.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_verilog.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexers/_lex_y_a_m_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexers/_lex_y_a_m_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_accessor.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_accessor.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_accessor.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_accessor.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_character_set.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_character_set.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_character_set.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_character_set.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lex_accessor.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lex_accessor.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lexer_base.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lexer_base.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lexer_base.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lexer_base.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lexer_module.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lexer_module.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lexer_module.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lexer_module.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lexer_no_exceptions.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lexer_no_exceptions.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lexer_no_exceptions.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lexer_no_exceptions.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lexer_simple.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lexer_simple.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_lexer_simple.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_lexer_simple.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_option_set.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_option_set.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_prop_set_simple.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_prop_set_simple.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_prop_set_simple.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_prop_set_simple.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_sparse_state.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_sparse_state.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_style_context.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_style_context.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_style_context.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_style_context.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_word_list.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_word_list.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/lexlib/_word_list.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/lexlib/_word_list.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_ext_input.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_ext_input.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_ext_input.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_ext_input.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_plat_mac_o_s_x.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_plat_mac_o_s_x.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_plat_mac_o_s_x.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_plat_mac_o_s_x.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_quartz_text_layout.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_quartz_text_layout.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_quartz_text_style.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_quartz_text_style.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_quartz_text_style_attribute.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_quartz_text_style_attribute.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/_info_plist.strings.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/_info_plist.strings.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/main.nib/classes.nib.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/main.nib/classes.nib.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/main.nib/info.nib.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/main.nib/info.nib.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/main.nib/objects.xib.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/main.nib/objects.xib.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/main.xib.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/_english.lproj/main.xib.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/_info.plist.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/_info.plist.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/_sci_test.xcode/project.pbxproj.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/_sci_test.xcode/project.pbxproj.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/_sci_test___prefix.pch.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/_sci_test___prefix.pch.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/main.cpp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/main.cpp.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_sci_test/version.plist.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_sci_test/version.plist.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_scintilla_call_tip.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_scintilla_call_tip.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_scintilla_call_tip.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_scintilla_call_tip.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_scintilla_list_box.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_scintilla_list_box.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_scintilla_list_box.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_scintilla_list_box.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_scintilla_mac_o_s_x.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_scintilla_mac_o_s_x.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_scintilla_mac_o_s_x.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_scintilla_mac_o_s_x.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_t_carbon_event.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_t_carbon_event.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_t_carbon_event.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_t_carbon_event.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_t_rect.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_t_rect.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_t_view.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_t_view.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/_t_view.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/_t_view.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/deps.mak.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/deps.mak.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/macosx/makefile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/macosx/makefile.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_accessor.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_accessor.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_auto_complete.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_auto_complete.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_auto_complete.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_auto_complete.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_call_tip.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_call_tip.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_call_tip.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_call_tip.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_catalogue.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_catalogue.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_catalogue.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_catalogue.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_cell_buffer.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_cell_buffer.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_cell_buffer.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_cell_buffer.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_char_classify.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_char_classify.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_char_classify.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_char_classify.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_character_set.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_character_set.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_contraction_state.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_contraction_state.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_contraction_state.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_contraction_state.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_decoration.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_decoration.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_decoration.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_decoration.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_document.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_document.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_document.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_document.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_document_accessor.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_document_accessor.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_document_accessor.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_document_accessor.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_editor.cxx.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_editor.cxx.d -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_editor.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_editor.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_editor.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_editor.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_external_lexer.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_external_lexer.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_external_lexer.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_external_lexer.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_font_quality.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_font_quality.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_indicator.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_indicator.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_indicator.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_indicator.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_key_map.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_key_map.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_key_map.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_key_map.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_key_words.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_key_words.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_a_p_d_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_a_p_d_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_a_s_y.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_a_s_y.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_a_u3.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_a_u3.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_a_v_e.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_a_v_e.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_abaqus.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_abaqus.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_ada.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_ada.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_asm.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_asm.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_asn1.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_asn1.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_b_b.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_b_b.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_baan.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_baan.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_bash.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_bash.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_basic.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_basic.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_bullant.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_bullant.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_c_l_w.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_c_l_w.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_c_o_b_o_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_c_o_b_o_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_c_p_p.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_c_p_p.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_c_s_s.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_c_s_s.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_caml.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_caml.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_cmake.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_cmake.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_conf.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_conf.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_crontab.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_crontab.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_csound.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_csound.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_d.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_d.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_e_script.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_e_script.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_eiffel.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_eiffel.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_erlang.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_erlang.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_flagship.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_flagship.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_forth.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_forth.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_fortran.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_fortran.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_g_a_p.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_g_a_p.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_gen.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_gen.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_gui4_cli.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_gui4_cli.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_h_t_m_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_h_t_m_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_haskell.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_haskell.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_inno.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_inno.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_kix.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_kix.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_lisp.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_lisp.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_lout.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_lout.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_lua.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_lua.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_m_m_i_x_a_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_m_m_i_x_a_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_m_p_t.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_m_p_t.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_m_s_s_q_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_m_s_s_q_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_magik.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_magik.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_markdown.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_markdown.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_matlab.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_matlab.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_metapost.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_metapost.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_my_s_q_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_my_s_q_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_nimrod.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_nimrod.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_nsis.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_nsis.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_opal.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_opal.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_others.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_others.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_p_b.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_p_b.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_p_l_m.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_p_l_m.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_p_o_v.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_p_o_v.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_p_s.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_p_s.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_pascal.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_pascal.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_perl.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_perl.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_power_pro.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_power_pro.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_power_shell.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_power_shell.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_progress.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_progress.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_python.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_python.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_r.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_r.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_rebol.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_rebol.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_ruby.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_ruby.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_s_m_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_s_m_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_s_q_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_s_q_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_scriptol.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_scriptol.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_smalltalk.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_smalltalk.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_sorcus.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_sorcus.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_specman.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_specman.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_spice.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_spice.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_t_a_c_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_t_a_c_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_t_a_d_s3.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_t_a_d_s3.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_t_a_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_t_a_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_t_c_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_t_c_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_te_x.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_te_x.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_v_b.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_v_b.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_v_h_d_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_v_h_d_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_verilog.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_verilog.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_lex_y_a_m_l.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_lex_y_a_m_l.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_line_marker.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_line_marker.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_line_marker.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_line_marker.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_partitioning.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_partitioning.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_per_line.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_per_line.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_per_line.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_per_line.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_pos_reg_exp.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_pos_reg_exp.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_position_cache.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_position_cache.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_position_cache.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_position_cache.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_prop_set.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_prop_set.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_prop_set_simple.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_prop_set_simple.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_r_e_search.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_r_e_search.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_r_e_search.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_r_e_search.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_run_styles.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_run_styles.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_run_styles.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_run_styles.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_s_vector.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_s_vector.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_sci_t_e.properties.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_sci_t_e.properties.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_scintilla_base.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_scintilla_base.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_scintilla_base.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_scintilla_base.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_selection.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_selection.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_selection.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_selection.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_split_vector.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_split_vector.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_style.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_style.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_style.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_style.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_style_context.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_style_context.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_style_context.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_style_context.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_uni_conversion.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_uni_conversion.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_uni_conversion.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_uni_conversion.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_view_style.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_view_style.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_view_style.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_view_style.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_window_accessor.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_window_accessor.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_x_p_m.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_x_p_m.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/src/_x_p_m.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/src/_x_p_m.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/_message_numbers.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/_message_numbers.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/_r_e_a_d_m_e.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/_r_e_a_d_m_e.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/_xite_menu.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/_xite_menu.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/_xite_win.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/_xite_win.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.asp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.asp.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.asp.styled.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.asp.styled.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.cxx.styled.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.cxx.styled.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.d.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.d.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.d.styled.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.d.styled.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.html.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.html.styled.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.html.styled.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.php.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.php.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.php.styled.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.php.styled.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.py.styled.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.py.styled.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.vb.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.vb.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/examples/x.vb.styled.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/examples/x.vb.styled.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/lex_tests.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/lex_tests.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/performance_tests.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/performance_tests.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/simple_tests.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/simple_tests.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/_r_e_a_d_m_e.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/_r_e_a_d_m_e.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/_sci_t_e.properties.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/_sci_t_e.properties.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/makefile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/makefile.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/test_contraction_state.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/test_contraction_state.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/test_partitioning.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/test_partitioning.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/test_run_styles.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/test_run_styles.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/test_sparse_state.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/test_sparse_state.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/test_split_vector.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/test_split_vector.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/unit/unit_test.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/unit/unit_test.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/test/xite.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/test/xite.py.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/tgzsrc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/tgzsrc.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/vcbuild/.cvsignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/vcbuild/.cvsignore.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/vcbuild/_sci_lexer.dsp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/vcbuild/_sci_lexer.dsp.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/vcbuild/vcbuild.dsp.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/vcbuild/vcbuild.dsp.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/version.txt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/version.txt.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/.cvsignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/.cvsignore.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_external_lexer.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_external_lexer.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_external_lexer.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_external_lexer.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_margin.cur.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_margin.cur.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_plat_win.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_plat_win.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_plat_win.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_plat_win.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_platform_res.h.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_platform_res.h.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_sci_t_e.properties.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_sci_t_e.properties.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_scint_res.rc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_scint_res.rc.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_scintilla.def.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_scintilla.def.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/_scintilla_win.cxx.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/_scintilla_win.cxx.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/depend.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/depend.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/deps.mak.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/deps.mak.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/makefile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/makefile.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/makefile__bor.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/makefile__bor.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/makefile__vc.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/makefile__vc.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/objs.mak.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/objs.mak.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/scintilla.mak.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/scintilla.mak.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/win32/scintilla__vc6.mak.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/win32/scintilla__vc6.mak.i -------------------------------------------------------------------------------- /scintilla/.hg/store/data/zipsrc.bat.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/store/data/zipsrc.bat.i -------------------------------------------------------------------------------- /scintilla/.hg/undo.bookmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/undo.bookmarks -------------------------------------------------------------------------------- /scintilla/.hg/undo.branch: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /scintilla/.hg/undo.desc: -------------------------------------------------------------------------------- 1 | 3915 2 | pull 3 | http://scintilla.hg.sourceforge.net:8000/hgroot/scintilla/scintilla 4 | -------------------------------------------------------------------------------- /scintilla/.hg/undo.dirstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/.hg/undo.dirstate -------------------------------------------------------------------------------- /scintilla/.hgeol: -------------------------------------------------------------------------------- 1 | [patterns] 2 | **.cxx = native 3 | **.c = native 4 | **.h = native 5 | **.m = native 6 | **.mm = native 7 | **.iface = native 8 | **.mk = native 9 | **.py = native 10 | **.rc = native 11 | **.html = native 12 | **.bat = native 13 | **.mak = native 14 | **.def = native 15 | **.manifest = native 16 | **.properties = native 17 | **.styled = native 18 | **.asp = native 19 | **.php = native 20 | **.vb = native 21 | **.d = native 22 | **.txt = native 23 | **.pch = native 24 | **.hgeol = native 25 | **.dsp = native 26 | **.sln = native 27 | **.vcproj = native 28 | **.gen = native 29 | **makefile = native 30 | README = native 31 | **.bmp = BIN 32 | **.cur = BIN 33 | **.ico = BIN 34 | **.jpg = BIN 35 | **.png = BIN 36 | tgzsrc = LF 37 | -------------------------------------------------------------------------------- /scintilla/.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | *.o 3 | *.a 4 | *.lib 5 | *.obj 6 | *.pyc 7 | *.dll 8 | *.exp 9 | *.lib 10 | *.pdb 11 | *.res 12 | *.bak 13 | *.sbr 14 | *.idb 15 | *.ilk 16 | *.ncb 17 | *.opt 18 | *.plg 19 | *.pbxbtree 20 | *.mode1v3 21 | *.pbxuser 22 | *.xcbkptlist 23 | *.xcscheme 24 | *.xcworkspacedata 25 | *.xcuserstate 26 | *.xcsettings 27 | xcschememanagement.plist 28 | .DS_Store 29 | cocoa/build 30 | cocoa/ScintillaFramework/build 31 | cocoa/ScintillaTest/build 32 | macosx/SciTest/build 33 | *.cppcheck 34 | 35 | -------------------------------------------------------------------------------- /scintilla/License.txt: -------------------------------------------------------------------------------- 1 | License for Scintilla and SciTE 2 | 3 | Copyright 1998-2003 by Neil Hodgson 4 | 5 | All Rights Reserved 6 | 7 | Permission to use, copy, modify, and distribute this software and its 8 | documentation for any purpose and without fee is hereby granted, 9 | provided that the above copyright notice appear in all copies and that 10 | both that copyright notice and this permission notice appear in 11 | supporting documentation. 12 | 13 | NEIL HODGSON DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS 14 | SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 15 | AND FITNESS, IN NO EVENT SHALL NEIL HODGSON BE LIABLE FOR ANY 16 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 17 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 18 | WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 19 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE 20 | OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /scintilla/bin/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | *.dll 3 | -------------------------------------------------------------------------------- /scintilla/bin/empty.txt: -------------------------------------------------------------------------------- 1 | This empty files ensures that the directory is created. -------------------------------------------------------------------------------- /scintilla/cocoa/InfoBar.h: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Scintilla source code edit control 4 | * InfoBar.h - Implements special info bar with zoom info, caret position etc. to be used with 5 | * ScintillaView. 6 | * 7 | * Mike Lischke 8 | * 9 | * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 10 | * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). 11 | */ 12 | 13 | #import 14 | #import "InfoBarCommunicator.h" 15 | 16 | /** 17 | * Extended text cell for vertically aligned text. 18 | */ 19 | @interface VerticallyCenteredTextFieldCell : NSTextFieldCell 20 | { 21 | BOOL mIsEditingOrSelecting; 22 | } 23 | 24 | @end 25 | 26 | @interface InfoBar : NSView 27 | { 28 | @private 29 | NSImage* mBackground; 30 | IBDisplay mDisplayMask; 31 | 32 | float mScaleFactor; 33 | NSPopUpButton* mZoomPopup; 34 | 35 | int mCurrentCaretX; 36 | int mCurrentCaretY; 37 | NSTextField* mCaretPositionLabel; 38 | NSTextField* mStatusTextLabel; 39 | 40 | id mCallback; 41 | } 42 | 43 | - (void) notify: (NotificationType) type message: (NSString*) message location: (NSPoint) location 44 | value: (float) value; 45 | - (void) setCallback: (id ) callback; 46 | 47 | - (void) createItems; 48 | - (void) positionSubViews; 49 | - (void) setDisplay: (IBDisplay) display; 50 | - (void) zoomItemAction: (id) sender; 51 | - (void) setScaleFactor: (float) newScaleFactor adjustPopup: (BOOL) flag; 52 | - (void) setCaretPosition: (NSPoint) position; 53 | - (void) sizeToFit; 54 | 55 | @end 56 | -------------------------------------------------------------------------------- /scintilla/cocoa/InfoBarCommunicator.h: -------------------------------------------------------------------------------- 1 | /* 2 | * InfoBarCommunicator.h - Definitions of a communication protocol and other data types used for 3 | * the info bar implementation. 4 | * 5 | * Mike Lischke 6 | * 7 | * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 8 | * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). 9 | */ 10 | 11 | enum IBDisplay { 12 | IBShowZoom = 0x01, 13 | IBShowCaretPosition = 0x02, 14 | IBShowStatusText = 0x04, 15 | IBShowAll = 0xFF 16 | }; 17 | 18 | /** 19 | * The info bar communicator protocol is used for communication between ScintillaView and its 20 | * information bar component. Using this protocol decouples any potential info target from the main 21 | * ScintillaView implementation. The protocol is used two-way. 22 | */ 23 | 24 | enum NotificationType { 25 | IBNZoomChanged, // The user selected another zoom value. 26 | IBNCaretChanged, // The caret in the editor changed. 27 | IBNStatusChanged, // The application set a new status message. 28 | }; 29 | 30 | @protocol InfoBarCommunicator 31 | - (void) notify: (NotificationType) type message: (NSString*) message location: (NSPoint) location 32 | value: (float) value; 33 | - (void) setCallback: (id ) callback; 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /scintilla/cocoa/SciTest.mk: -------------------------------------------------------------------------------- 1 | ### start defines ### 2 | include common.mk 3 | 4 | NAME=Demo 5 | 6 | LD=gcc $(ARCH) -framework Cocoa 7 | 8 | TARG=$(APP)/Contents/MacOS/$(NAME) 9 | APP=$(APP_BLD)/$(NAME).app 10 | 11 | all: $(APP_BLD) $(TARG) 12 | 13 | $(APP): 14 | -rm -rf $(APP) 15 | -mkdir $(APP) 16 | -mkdir $(APP)/Contents/ 17 | -mkdir $(APP)/Contents/Frameworks/ 18 | -mkdir $(APP)/Contents/MacOS/ 19 | -mkdir $(APP)/Contents/Resources/ 20 | -cp ScintillaTest/Info.plist $(APP)/Contents/Info.plist.bak 21 | -sed "s/\$${EXECUTABLE_NAME}/$(NAME)/g" < $(APP)/Contents/Info.plist.bak > $(APP)/Contents/Info.plist.bak2 22 | -sed "s/\$${PRODUCT_NAME}/$(NAME)/g" < $(APP)/Contents/Info.plist.bak2 > $(APP)/Contents/Info.plist 23 | -rm $(APP)/Contents/Info.plist.bak $(APP)/Contents/Info.plist.bak2 24 | -cp -r ScintillaTest/English.lproj $(APP)/Contents/Resources/ 25 | /Developer/usr/bin/ibtool --errors --warnings --notices --output-format human-readable-text \ 26 | --compile $(APP)/Contents/Resources/English.lproj/MainMenu.nib ScintillaTest/English.lproj/MainMenu.xib 27 | -cp ScintillaTest/TestData.sql $(APP)/Contents/Resources/ 28 | -make -f Framework.mk all 29 | 30 | $(TARG) : $(APP_BLD)/main.o $(APP_BLD)/AppController.o $(APP) 31 | -cp -R $(FRM_BLD)/Sci.framework $(APP)/Contents/Frameworks/ 32 | $(LD) $(APP_BLD)/main.o $(APP_BLD)/AppController.o $(APP)/Contents/Frameworks/Sci.framework/Sci -o $(TARG) -lstdc++ 33 | 34 | $(APP_BLD) : 35 | -mkdir $(BLD) 36 | -mkdir $(APP_BLD) 37 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaFramework/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/cocoa/ScintillaFramework/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaFramework/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | com.sun.${PRODUCT_NAME:identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | FMWK 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaFramework/Scintilla_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'Scintilla' target in the 'Scintilla' project. 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/AppController.h: -------------------------------------------------------------------------------- 1 | /** 2 | * AppController.h 3 | * SciTest 4 | * 5 | * Created by Mike Lischke on 01.04.09. 6 | * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 7 | * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). 8 | */ 9 | 10 | #import 11 | 12 | #import "ScintillaView.h" 13 | #import "InfoBar.h" 14 | 15 | @interface AppController : NSObject { 16 | IBOutlet NSBox *mEditHost; 17 | ScintillaView* mEditor; 18 | } 19 | 20 | - (void) awakeFromNib; 21 | - (void) setupEditor; 22 | - (IBAction) searchText: (id) sender; 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/cocoa/ScintillaTest/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | com.sun.${PRODUCT_NAME:identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | NSMainNibFile 24 | MainMenu 25 | NSPrincipalClass 26 | NSApplication 27 | 28 | 29 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/Scintilla-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | com.sun.${PRODUCT_NAME:identifier} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundlePackageType 14 | FMWK 15 | CFBundleSignature 16 | ???? 17 | CFBundleVersion 18 | 1.0 19 | 20 | 21 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/ScintillaTest_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'ScintillaTest' target in the 'ScintillaTest' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /scintilla/cocoa/ScintillaTest/main.m: -------------------------------------------------------------------------------- 1 | /** 2 | * main.m 3 | * ScintillaTest 4 | * 5 | * Created by Mike Lischke on 02.04.09. 6 | * Copyright Sun Microsystems, Inc 2009. All rights reserved. 7 | * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). 8 | */ 9 | 10 | #import 11 | 12 | int main(int argc, char *argv[]) 13 | { 14 | return NSApplicationMain(argc, (const char **) argv); 15 | } 16 | -------------------------------------------------------------------------------- /scintilla/cocoa/common.mk: -------------------------------------------------------------------------------- 1 | ### shared variables and targets between Framework.mk and SciTest.mk ### 2 | 3 | # build directories 4 | BLD=build 5 | APP_BLD=$(BLD)/Application 6 | FRM_BLD=$(BLD)/Framework 7 | 8 | ifdef DBG 9 | CFLAGS=-g -O0 10 | else 11 | CFLAGS=-Os 12 | endif 13 | 14 | # compiler and compiler options 15 | ARCH=-arch i386 $(CFLAGS) 16 | CC=gcc -x c++ $(ARCH) 17 | CO=gcc -x objective-c++ $(ARCH) 18 | CCX=$(CC) $(gDEFs) $(INCS) 19 | CCO=$(CO) $(gDEFs) $(INCS) 20 | 21 | # include directories and global #define 22 | gDEFs=-DSCI_NAMESPACE -DSCI_LEXER 23 | 24 | # source directories 25 | SRC_DIRS=../src ./ScintillaFramework ./ScintillaTest ./ \ 26 | ../lexers ../lexlib 27 | 28 | INC_DIRS=$(SRC_DIRS) ../include 29 | 30 | INCS=$(addprefix -I,$(INC_DIRS)) 31 | 32 | vpath %.m $(SRC_DIRS) 33 | vpath %.mm $(SRC_DIRS) 34 | vpath %.cpp $(SRC_DIRS) 35 | vpath %.cxx $(SRC_DIRS) 36 | vpath %.c $(SRC_DIRS) 37 | vpath %.h $(INC_DIRS) 38 | 39 | # clean everything 40 | clean: 41 | -rm -rf $(BLD) 42 | 43 | # build application objective-c++ files 44 | $(APP_BLD)/%.o : %.mm 45 | $(CCO) -c $< -o $@ 46 | 47 | # build application objective-c files 48 | $(APP_BLD)/%.o : %.m 49 | $(CCO) -c $< -o $@ 50 | 51 | # build framework c++ files 52 | $(FRM_BLD)/%.o : %.cxx 53 | $(CCX) -c $< -o $@ 54 | 55 | # build framework objective-c++ files 56 | $(FRM_BLD)/%.o : %.mm 57 | $(CCO) -c $< -o $@ -------------------------------------------------------------------------------- /scintilla/cocoa/res/info_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/cocoa/res/info_bar_bg.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/cocoa/res/mac_cursor_busy.png -------------------------------------------------------------------------------- /scintilla/cocoa/res/mac_cursor_flipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/cocoa/res/mac_cursor_flipped.png -------------------------------------------------------------------------------- /scintilla/delbin.bat: -------------------------------------------------------------------------------- 1 | del /S /Q *.a *.aps *.bsc *.dll *.dsw *.exe *.idb *.ilc *.ild *.ilf *.ilk *.ils *.lib *.map *.ncb *.obj *.o *.opt *.pdb *.plg *.res *.sbr *.tds *.exp >NUL: 2 | -------------------------------------------------------------------------------- /scintilla/delcvs.bat: -------------------------------------------------------------------------------- 1 | del /S /Q .cvsignore 2 | -------------------------------------------------------------------------------- /scintilla/doc/SciBreak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/doc/SciBreak.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciRest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/doc/SciRest.jpg -------------------------------------------------------------------------------- /scintilla/doc/SciTEIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/doc/SciTEIco.png -------------------------------------------------------------------------------- /scintilla/doc/SciWord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/doc/SciWord.jpg -------------------------------------------------------------------------------- /scintilla/doc/annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/doc/annotations.png -------------------------------------------------------------------------------- /scintilla/doc/styledmargin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/doc/styledmargin.png -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.h: -------------------------------------------------------------------------------- 1 | 2 | #ifndef __scintilla_marshal_MARSHAL_H__ 3 | #define __scintilla_marshal_MARSHAL_H__ 4 | 5 | #include 6 | 7 | G_BEGIN_DECLS 8 | 9 | /* NONE:INT,POINTER (scintilla-marshal.list:1) */ 10 | extern void scintilla_marshal_VOID__INT_POINTER (GClosure *closure, 11 | GValue *return_value, 12 | guint n_param_values, 13 | const GValue *param_values, 14 | gpointer invocation_hint, 15 | gpointer marshal_data); 16 | #define scintilla_marshal_NONE__INT_POINTER scintilla_marshal_VOID__INT_POINTER 17 | 18 | G_END_DECLS 19 | 20 | #endif /* __scintilla_marshal_MARSHAL_H__ */ 21 | 22 | -------------------------------------------------------------------------------- /scintilla/gtk/scintilla-marshal.list: -------------------------------------------------------------------------------- 1 | NONE:INT,POINTER 2 | -------------------------------------------------------------------------------- /scintilla/include/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | *.pyc 3 | -------------------------------------------------------------------------------- /scintilla/include/ScintillaWidget.h: -------------------------------------------------------------------------------- 1 | /* Scintilla source code edit control */ 2 | /** @file ScintillaWidget.h 3 | ** Definition of Scintilla widget for GTK+. 4 | ** Only needed by GTK+ code but is harmless on other platforms. 5 | **/ 6 | /* Copyright 1998-2001 by Neil Hodgson 7 | * The License.txt file describes the conditions under which this software may be distributed. */ 8 | 9 | #ifndef SCINTILLAWIDGET_H 10 | #define SCINTILLAWIDGET_H 11 | 12 | #if defined(GTK) 13 | 14 | #ifdef __cplusplus 15 | extern "C" { 16 | #endif 17 | 18 | #define SCINTILLA(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, scintilla_get_type (), ScintillaObject) 19 | #define SCINTILLA_CLASS(klass) GTK_CHECK_CLASS_CAST (klass, scintilla_get_type (), ScintillaClass) 20 | #define IS_SCINTILLA(obj) GTK_CHECK_TYPE (obj, scintilla_get_type ()) 21 | 22 | typedef struct _ScintillaObject ScintillaObject; 23 | typedef struct _ScintillaClass ScintillaClass; 24 | 25 | struct _ScintillaObject { 26 | GtkContainer cont; 27 | void *pscin; 28 | }; 29 | 30 | struct _ScintillaClass { 31 | GtkContainerClass parent_class; 32 | 33 | void (* command) (ScintillaObject *ttt); 34 | void (* notify) (ScintillaObject *ttt); 35 | }; 36 | 37 | GType scintilla_get_type (void); 38 | GtkWidget* scintilla_new (void); 39 | void scintilla_set_id (ScintillaObject *sci, uptr_t id); 40 | sptr_t scintilla_send_message (ScintillaObject *sci,unsigned int iMessage, uptr_t wParam, sptr_t lParam); 41 | void scintilla_release_resources(void); 42 | 43 | #define SCINTILLA_NOTIFY "sci-notify" 44 | 45 | #ifdef __cplusplus 46 | } 47 | #endif 48 | 49 | #endif 50 | 51 | #endif 52 | -------------------------------------------------------------------------------- /scintilla/lexers/LexCSS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/lexers/LexCSS.cxx -------------------------------------------------------------------------------- /scintilla/lexers/LexErlang.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/lexers/LexErlang.cxx -------------------------------------------------------------------------------- /scintilla/lexers/LexMMIXAL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/lexers/LexMMIXAL.cxx -------------------------------------------------------------------------------- /scintilla/lexers/LexMatlab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codebrainz/GtkScintilla/9bda96f6e5cd41e7671714b668da49f65324daf5/scintilla/lexers/LexMatlab.cxx -------------------------------------------------------------------------------- /scintilla/lexlib/Accessor.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file Accessor.h 3 | ** Interfaces between Scintilla and lexers. 4 | **/ 5 | // Copyright 1998-2010 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef ACCESSOR_H 9 | #define ACCESSOR_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | enum { wsSpace = 1, wsTab = 2, wsSpaceTab = 4, wsInconsistent=8}; 16 | 17 | class Accessor; 18 | class WordList; 19 | class PropSetSimple; 20 | 21 | typedef bool (*PFNIsCommentLeader)(Accessor &styler, int pos, int len); 22 | 23 | class Accessor : public LexAccessor { 24 | public: 25 | PropSetSimple *pprops; 26 | Accessor(IDocument *pAccess_, PropSetSimple *pprops_); 27 | int GetPropertyInt(const char *, int defaultValue=0); 28 | int IndentAmount(int line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0); 29 | }; 30 | 31 | #ifdef SCI_NAMESPACE 32 | } 33 | #endif 34 | 35 | #endif 36 | -------------------------------------------------------------------------------- /scintilla/lexlib/CharacterSet.cxx: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file CharacterSet.cxx 3 | ** Simple case functions for ASCII. 4 | ** Lexer infrastructure. 5 | **/ 6 | // Copyright 1998-2010 by Neil Hodgson 7 | // The License.txt file describes the conditions under which this software may be distributed. 8 | 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include 14 | 15 | #include "CharacterSet.h" 16 | 17 | #ifdef SCI_NAMESPACE 18 | using namespace Scintilla; 19 | #endif 20 | 21 | #ifdef SCI_NAMESPACE 22 | namespace Scintilla { 23 | #endif 24 | 25 | int CompareCaseInsensitive(const char *a, const char *b) { 26 | while (*a && *b) { 27 | if (*a != *b) { 28 | char upperA = MakeUpperCase(*a); 29 | char upperB = MakeUpperCase(*b); 30 | if (upperA != upperB) 31 | return upperA - upperB; 32 | } 33 | a++; 34 | b++; 35 | } 36 | // Either *a or *b is nul 37 | return *a - *b; 38 | } 39 | 40 | int CompareNCaseInsensitive(const char *a, const char *b, size_t len) { 41 | while (*a && *b && len) { 42 | if (*a != *b) { 43 | char upperA = MakeUpperCase(*a); 44 | char upperB = MakeUpperCase(*b); 45 | if (upperA != upperB) 46 | return upperA - upperB; 47 | } 48 | a++; 49 | b++; 50 | len--; 51 | } 52 | if (len == 0) 53 | return 0; 54 | else 55 | // Either *a or *b is nul 56 | return *a - *b; 57 | } 58 | 59 | #ifdef SCI_NAMESPACE 60 | } 61 | #endif 62 | -------------------------------------------------------------------------------- /scintilla/lexlib/LexerBase.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file LexerBase.h 3 | ** A simple lexer with no state. 4 | **/ 5 | // Copyright 1998-2010 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef LEXERBASE_H 9 | #define LEXERBASE_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | // A simple lexer with no state 16 | class LexerBase : public ILexer { 17 | protected: 18 | PropSetSimple props; 19 | enum {numWordLists=KEYWORDSET_MAX+1}; 20 | WordList *keyWordLists[numWordLists+1]; 21 | public: 22 | LexerBase(); 23 | virtual ~LexerBase(); 24 | void SCI_METHOD Release(); 25 | int SCI_METHOD Version() const; 26 | const char * SCI_METHOD PropertyNames(); 27 | int SCI_METHOD PropertyType(const char *name); 28 | const char * SCI_METHOD DescribeProperty(const char *name); 29 | int SCI_METHOD PropertySet(const char *key, const char *val); 30 | const char * SCI_METHOD DescribeWordListSets(); 31 | int SCI_METHOD WordListSet(int n, const char *wl); 32 | void SCI_METHOD Lex(unsigned int startPos, int lengthDoc, int initStyle, IDocument *pAccess) = 0; 33 | void SCI_METHOD Fold(unsigned int startPos, int lengthDoc, int initStyle, IDocument *pAccess) = 0; 34 | void * SCI_METHOD PrivateCall(int operation, void *pointer); 35 | }; 36 | 37 | #ifdef SCI_NAMESPACE 38 | } 39 | #endif 40 | 41 | #endif 42 | -------------------------------------------------------------------------------- /scintilla/lexlib/LexerNoExceptions.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file LexerNoExceptions.h 3 | ** A simple lexer with no state. 4 | **/ 5 | // Copyright 1998-2010 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef LexerNoExceptions_H 9 | #define LexerNoExceptions_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | // A simple lexer with no state 16 | class LexerNoExceptions : public LexerBase { 17 | public: 18 | // TODO Also need to prevent exceptions in constructor and destructor 19 | int SCI_METHOD PropertySet(const char *key, const char *val); 20 | int SCI_METHOD WordListSet(int n, const char *wl); 21 | void SCI_METHOD Lex(unsigned int startPos, int lengthDoc, int initStyle, IDocument *pAccess); 22 | void SCI_METHOD Fold(unsigned int startPos, int lengthDoc, int initStyle, IDocument *); 23 | 24 | virtual void Lexer(unsigned int startPos, int length, int initStyle, IDocument *pAccess, Accessor &styler) = 0; 25 | virtual void Folder(unsigned int startPos, int length, int initStyle, IDocument *pAccess, Accessor &styler) = 0; 26 | }; 27 | 28 | #ifdef SCI_NAMESPACE 29 | } 30 | #endif 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /scintilla/lexlib/LexerSimple.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file LexerSimple.h 3 | ** A simple lexer with no state. 4 | **/ 5 | // Copyright 1998-2010 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef LEXERSIMPLE_H 9 | #define LEXERSIMPLE_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | // A simple lexer with no state 16 | class LexerSimple : public LexerBase { 17 | const LexerModule *module; 18 | std::string wordLists; 19 | public: 20 | LexerSimple(const LexerModule *module_); 21 | const char * SCI_METHOD DescribeWordListSets(); 22 | void SCI_METHOD Lex(unsigned int startPos, int lengthDoc, int initStyle, IDocument *pAccess); 23 | void SCI_METHOD Fold(unsigned int startPos, int lengthDoc, int initStyle, IDocument *pAccess); 24 | }; 25 | 26 | #ifdef SCI_NAMESPACE 27 | } 28 | #endif 29 | 30 | #endif 31 | -------------------------------------------------------------------------------- /scintilla/lexlib/PropSetSimple.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file PropSetSimple.h 3 | ** A basic string to string map. 4 | **/ 5 | // Copyright 1998-2009 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef PROPSETSIMPLE_H 9 | #define PROPSETSIMPLE_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | class PropSetSimple { 16 | void *impl; 17 | void Set(const char *keyVal); 18 | public: 19 | PropSetSimple(); 20 | virtual ~PropSetSimple(); 21 | void Set(const char *key, const char *val, int lenKey=-1, int lenVal=-1); 22 | void SetMultiple(const char *); 23 | const char *Get(const char *key) const; 24 | char *Expanded(const char *key) const; 25 | int GetExpanded(const char *key, char *result) const; 26 | int GetInt(const char *key, int defaultValue=0) const; 27 | }; 28 | 29 | #ifdef SCI_NAMESPACE 30 | } 31 | #endif 32 | 33 | #endif 34 | -------------------------------------------------------------------------------- /scintilla/lexlib/StyleContext.cxx: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file StyleContext.cxx 3 | ** Lexer infrastructure. 4 | **/ 5 | // Copyright 1998-2004 by Neil Hodgson 6 | // This file is in the public domain. 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | 14 | #include "ILexer.h" 15 | 16 | #include "LexAccessor.h" 17 | #include "Accessor.h" 18 | #include "StyleContext.h" 19 | 20 | #ifdef SCI_NAMESPACE 21 | using namespace Scintilla; 22 | #endif 23 | 24 | static void getRange(unsigned int start, 25 | unsigned int end, 26 | LexAccessor &styler, 27 | char *s, 28 | unsigned int len) { 29 | unsigned int i = 0; 30 | while ((i < end - start + 1) && (i < len-1)) { 31 | s[i] = styler[start + i]; 32 | i++; 33 | } 34 | s[i] = '\0'; 35 | } 36 | 37 | void StyleContext::GetCurrent(char *s, unsigned int len) { 38 | getRange(styler.GetStartSegment(), currentPos - 1, styler, s, len); 39 | } 40 | 41 | static void getRangeLowered(unsigned int start, 42 | unsigned int end, 43 | LexAccessor &styler, 44 | char *s, 45 | unsigned int len) { 46 | unsigned int i = 0; 47 | while ((i < end - start + 1) && (i < len-1)) { 48 | s[i] = static_cast(tolower(styler[start + i])); 49 | i++; 50 | } 51 | s[i] = '\0'; 52 | } 53 | 54 | void StyleContext::GetCurrentLowered(char *s, unsigned int len) { 55 | getRangeLowered(styler.GetStartSegment(), currentPos - 1, styler, s, len); 56 | } 57 | -------------------------------------------------------------------------------- /scintilla/lexlib/WordList.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file WordList.h 3 | ** Hold a list of words. 4 | **/ 5 | // Copyright 1998-2010 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef WORDLIST_H 9 | #define WORDLIST_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | /** 16 | */ 17 | class WordList { 18 | public: 19 | // Each word contains at least one character - a empty word acts as sentinel at the end. 20 | char **words; 21 | char *list; 22 | int len; 23 | bool onlyLineEnds; ///< Delimited by any white space or only line ends 24 | int starts[256]; 25 | WordList(bool onlyLineEnds_ = false) : 26 | words(0), list(0), len(0), onlyLineEnds(onlyLineEnds_) 27 | {} 28 | ~WordList() { Clear(); } 29 | operator bool() const { return len ? true : false; } 30 | bool operator!=(const WordList &other) const; 31 | void Clear(); 32 | void Set(const char *s); 33 | bool InList(const char *s) const; 34 | bool InListAbbreviated(const char *s, const char marker) const; 35 | }; 36 | 37 | #ifdef SCI_NAMESPACE 38 | } 39 | #endif 40 | 41 | #endif 42 | -------------------------------------------------------------------------------- /scintilla/src/Catalogue.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file Catalogue.h 3 | ** Lexer infrastructure. 4 | **/ 5 | // Copyright 1998-2010 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef CATALOGUE_H 9 | #define CATALOGUE_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | class Catalogue { 16 | public: 17 | static const LexerModule *Find(int language); 18 | static const LexerModule *Find(const char *languageName); 19 | static void AddLexerModule(LexerModule *plm); 20 | }; 21 | 22 | #ifdef SCI_NAMESPACE 23 | } 24 | #endif 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /scintilla/src/CharClassify.cxx: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file CharClassify.cxx 3 | ** Character classifications used by Document and RESearch. 4 | **/ 5 | // Copyright 2006 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #include 9 | #include 10 | 11 | #include "CharClassify.h" 12 | 13 | #ifdef SCI_NAMESPACE 14 | using namespace Scintilla; 15 | #endif 16 | 17 | // Shut up annoying Visual C++ warnings: 18 | #ifdef _MSC_VER 19 | #pragma warning(disable: 4514) 20 | #endif 21 | 22 | CharClassify::CharClassify() { 23 | SetDefaultCharClasses(true); 24 | } 25 | 26 | void CharClassify::SetDefaultCharClasses(bool includeWordClass) { 27 | // Initialize all char classes to default values 28 | for (int ch = 0; ch < 256; ch++) { 29 | if (ch == '\r' || ch == '\n') 30 | charClass[ch] = ccNewLine; 31 | else if (ch < 0x20 || ch == ' ') 32 | charClass[ch] = ccSpace; 33 | else if (includeWordClass && (ch >= 0x80 || isalnum(ch) || ch == '_')) 34 | charClass[ch] = ccWord; 35 | else 36 | charClass[ch] = ccPunctuation; 37 | } 38 | } 39 | 40 | void CharClassify::SetCharClasses(const unsigned char *chars, cc newCharClass) { 41 | // Apply the newCharClass to the specifed chars 42 | if (chars) { 43 | while (*chars) { 44 | charClass[*chars] = static_cast(newCharClass); 45 | chars++; 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /scintilla/src/CharClassify.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file CharClassify.h 3 | ** Character classifications used by Document and RESearch. 4 | **/ 5 | // Copyright 2006-2009 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef CHARCLASSIFY_H 9 | #define CHARCLASSIFY_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | class CharClassify { 16 | public: 17 | CharClassify(); 18 | 19 | enum cc { ccSpace, ccNewLine, ccWord, ccPunctuation }; 20 | void SetDefaultCharClasses(bool includeWordClass); 21 | void SetCharClasses(const unsigned char *chars, cc newCharClass); 22 | cc GetClass(unsigned char ch) const { return static_cast(charClass[ch]);} 23 | bool IsWord(unsigned char ch) const { return static_cast(charClass[ch]) == ccWord;} 24 | 25 | private: 26 | enum { maxChar=256 }; 27 | unsigned char charClass[maxChar]; // not type cc to save space 28 | }; 29 | 30 | #ifdef SCI_NAMESPACE 31 | } 32 | #endif 33 | 34 | #endif 35 | -------------------------------------------------------------------------------- /scintilla/src/FontQuality.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file FontQuality.h 3 | ** Definitions to control font anti-aliasing. 4 | **/ 5 | // Copyright 1998-2009 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #define SC_EFF_QUALITY_MASK 0xF 9 | #define SC_EFF_QUALITY_DEFAULT 0 10 | #define SC_EFF_QUALITY_NON_ANTIALIASED 1 11 | #define SC_EFF_QUALITY_ANTIALIASED 2 12 | #define SC_EFF_QUALITY_LCD_OPTIMIZED 3 13 | 14 | #define SCWIN_TECH_GDI 0 15 | #define SCWIN_TECH_DIRECTWRITE 1 16 | -------------------------------------------------------------------------------- /scintilla/src/Indicator.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file Indicator.h 3 | ** Defines the style of indicators which are text decorations such as underlining. 4 | **/ 5 | // Copyright 1998-2001 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef INDICATOR_H 9 | #define INDICATOR_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | /** 16 | */ 17 | class Indicator { 18 | public: 19 | int style; 20 | bool under; 21 | ColourDesired fore; 22 | int fillAlpha; 23 | int outlineAlpha; 24 | Indicator() : style(INDIC_PLAIN), under(false), fore(ColourDesired(0,0,0)), fillAlpha(30), outlineAlpha(50) { 25 | } 26 | void Draw(Surface *surface, const PRectangle &rc, const PRectangle &rcLine); 27 | }; 28 | 29 | #ifdef SCI_NAMESPACE 30 | } 31 | #endif 32 | 33 | #endif 34 | -------------------------------------------------------------------------------- /scintilla/src/KeyMap.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file KeyMap.h 3 | ** Defines a mapping between keystrokes and commands. 4 | **/ 5 | // Copyright 1998-2001 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | #ifndef KEYTOCOMMAND_H 9 | #define KEYTOCOMMAND_H 10 | 11 | #ifdef SCI_NAMESPACE 12 | namespace Scintilla { 13 | #endif 14 | 15 | #define SCI_NORM 0 16 | #define SCI_SHIFT SCMOD_SHIFT 17 | #define SCI_CTRL SCMOD_CTRL 18 | #define SCI_ALT SCMOD_ALT 19 | #define SCI_META SCMOD_META 20 | #define SCI_CSHIFT (SCI_CTRL | SCI_SHIFT) 21 | #define SCI_ASHIFT (SCI_ALT | SCI_SHIFT) 22 | 23 | /** 24 | */ 25 | class KeyToCommand { 26 | public: 27 | int key; 28 | int modifiers; 29 | unsigned int msg; 30 | }; 31 | 32 | /** 33 | */ 34 | class KeyMap { 35 | KeyToCommand *kmap; 36 | int len; 37 | int alloc; 38 | static const KeyToCommand MapDefault[]; 39 | 40 | public: 41 | KeyMap(); 42 | ~KeyMap(); 43 | void Clear(); 44 | void AssignCmdKey(int key, int modifiers, unsigned int msg); 45 | unsigned int Find(int key, int modifiers); // 0 returned on failure 46 | }; 47 | 48 | #ifdef SCI_NAMESPACE 49 | } 50 | #endif 51 | 52 | #endif 53 | -------------------------------------------------------------------------------- /scintilla/src/RunStyles.h: -------------------------------------------------------------------------------- 1 | /** @file RunStyles.h 2 | ** Data structure used to store sparse styles. 3 | **/ 4 | // Copyright 1998-2007 by Neil Hodgson 5 | // The License.txt file describes the conditions under which this software may be distributed. 6 | 7 | /// Styling buffer using one element for each run rather than using 8 | /// a filled buffer. 9 | 10 | #ifndef RUNSTYLES_H 11 | #define RUNSTYLES_H 12 | 13 | #ifdef SCI_NAMESPACE 14 | namespace Scintilla { 15 | #endif 16 | 17 | class RunStyles { 18 | private: 19 | Partitioning *starts; 20 | SplitVector *styles; 21 | int RunFromPosition(int position) const; 22 | int SplitRun(int position); 23 | void RemoveRun(int run); 24 | void RemoveRunIfEmpty(int run); 25 | void RemoveRunIfSameAsPrevious(int run); 26 | public: 27 | RunStyles(); 28 | ~RunStyles(); 29 | int Length() const; 30 | int ValueAt(int position) const; 31 | int FindNextChange(int position, int end); 32 | int StartRun(int position); 33 | int EndRun(int position); 34 | // Returns true if some values may have changed 35 | bool FillRange(int &position, int value, int &fillLength); 36 | void SetValueAt(int position, int value); 37 | void InsertSpace(int position, int insertLength); 38 | void DeleteAll(); 39 | void DeleteRange(int position, int deleteLength); 40 | int Runs() const; 41 | bool AllSame() const; 42 | bool AllSameAs(int value) const; 43 | int Find(int value, int start) const; 44 | }; 45 | 46 | #ifdef SCI_NAMESPACE 47 | } 48 | #endif 49 | 50 | #endif 51 | -------------------------------------------------------------------------------- /scintilla/src/SciTE.properties: -------------------------------------------------------------------------------- 1 | # SciTE.properties is the per directory local options file and can be used to override 2 | # settings made in SciTEGlobal.properties 3 | command.build.directory.*.cxx=..\win32 4 | command.build.directory.*.h=..\win32 5 | command.build.*.cxx=nmake -f scintilla.mak QUIET=1 DEBUG=0 6 | command.build.*.h=nmake -f scintilla.mak QUIET=1 DEBUG=0 7 | -------------------------------------------------------------------------------- /scintilla/src/UniConversion.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file UniConversion.h 3 | ** Functions to handle UTF-8 and UTF-16 strings. 4 | **/ 5 | // Copyright 1998-2001 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | unsigned int UTF8Length(const wchar_t *uptr, unsigned int tlen); 9 | void UTF8FromUTF16(const wchar_t *uptr, unsigned int tlen, char *putf, unsigned int len); 10 | unsigned int UTF8CharLength(unsigned char ch); 11 | unsigned int UTF16Length(const char *s, unsigned int len); 12 | unsigned int UTF16FromUTF8(const char *s, unsigned int len, wchar_t *tbuf, unsigned int tlen); 13 | 14 | -------------------------------------------------------------------------------- /scintilla/test/MessageNumbers.py: -------------------------------------------------------------------------------- 1 | # List many windows message numbers 2 | 3 | msgs = { 4 | "WM_ACTIVATE":6, 5 | "WM_ACTIVATEAPP":28, 6 | "WM_CAPTURECHANGED":533, 7 | "WM_CHAR":258, 8 | "WM_CLOSE":16, 9 | "WM_CREATE":1, 10 | "WM_COMMAND":273, 11 | "WM_DESTROY":2, 12 | "WM_ENTERSIZEMOVE":561, 13 | "WM_ERASEBKGND":20, 14 | "WM_EXITSIZEMOVE":562, 15 | "WM_GETMINMAXINFO":36, 16 | "WM_GETTEXT":13, 17 | "WM_IME_SETCONTEXT":0x0281, 18 | "WM_IME_NOTIFY":0x0282, 19 | "WM_KEYDOWN":256, 20 | "WM_KEYUP":257, 21 | "WM_KILLFOCUS":8, 22 | "WM_LBUTTONDOWN":513, 23 | "WM_LBUTTONUP":514, 24 | "WM_MBUTTONDOWN":519, 25 | "WM_MBUTTONUP":520, 26 | "WM_MBUTTONDBLCLK":521, 27 | "WM_MOUSEACTIVATE":33, 28 | "WM_MOUSEMOVE":512, 29 | "WM_MOVE":3, 30 | "WM_MOVING":534, 31 | "WM_NCACTIVATE":134, 32 | "WM_NCCALCSIZE":131, 33 | "WM_NCCREATE":129, 34 | "WM_NCDESTROY":130, 35 | "WM_NCHITTEST":132, 36 | "WM_NCLBUTTONDBLCLK":163, 37 | "WM_NCLBUTTONDOWN":161, 38 | "WM_NCLBUTTONUP":162, 39 | "WM_NCMOUSEMOVE":160, 40 | "WM_NCPAINT":133, 41 | "WM_PAINT":15, 42 | "WM_PARENTNOTIFY":528, 43 | "WM_SETCURSOR":32, 44 | "WM_SETFOCUS":7, 45 | "WM_SETFONT":48, 46 | "WM_SETTEXT":12, 47 | "WM_SHOWWINDOW":24, 48 | "WM_SIZE":5, 49 | "WM_SIZING":532, 50 | "WM_SYNCPAINT":136, 51 | "WM_SYSCOMMAND":274, 52 | "WM_SYSKEYDOWN":260, 53 | "WM_TIMER":275, 54 | "WM_USER":1024, 55 | "WM_USER+1":1025, 56 | "WM_WINDOWPOSCHANGED":71, 57 | "WM_WINDOWPOSCHANGING":70, 58 | } 59 | 60 | sgsm={} 61 | for k,v in msgs.items(): 62 | sgsm[v] = k 63 | 64 | -------------------------------------------------------------------------------- /scintilla/test/README: -------------------------------------------------------------------------------- 1 | The test directory contains some unit and performance tests for Scintilla. 2 | 3 | The tests can only be run on Windows using Python 3.x. Running on another platform 4 | would require writing a file similar to XiteWin.py for that platform. Python 3.x is required 5 | because its default string type is Unicode and earlier Python versions use byte strings 6 | and the interface to the platform assumes a particular string type. 7 | 8 | A test application is in xite.py and this can be run to experiment: 9 | pythonw xite.py 10 | 11 | To run the basic tests: 12 | pythonw simpleTests.py 13 | 14 | There are some lexing tests with simple input files in several languages in the examples 15 | subdirectory and their expected lexed states in *.styled where the start of each style 16 | is marked with {styleNumber}, for example: 17 | {15}<%@{16}language=javas{15}%>{0} 18 | 19 | To run the lexing tests: 20 | pythonw lexTests.py 21 | 22 | To check for performance regressions: 23 | pythonw performanceTests.py 24 | While each test run will be different and the timer has only limited granularity, some results 25 | from a 2 GHz Athlon with a DEBUG build are: 26 | 0.187 testAddLine 27 | . 0.203 testAddLineMiddle 28 | . 0.171 testHuge 29 | . 0.203 testHugeInserts 30 | . 0.312 testHugeReplace 31 | . 32 | -------------------------------------------------------------------------------- /scintilla/test/XiteMenu.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | from __future__ import unicode_literals 4 | 5 | """ Define the menu structure used by the Pentacle applications """ 6 | 7 | MenuStructure = [ 8 | ["&File", [ 9 | ["&New", "N"], 10 | ["&Open...", "O"], 11 | ["&Save", "S"], 12 | ["Save &As...", "S"], 13 | ["Test", ""], 14 | ["Exercised", ""], 15 | ["Uncalled", ""], 16 | ["-", ""], 17 | ["&Exit", ""]]], 18 | [ "&Edit", [ 19 | ["&Undo", "Z"], 20 | ["&Redo", "Y"], 21 | ["-", ""], 22 | ["Cu&t", "X"], 23 | ["&Copy", "C"], 24 | ["&Paste", "V"], 25 | ["&Delete", "Del"], 26 | ["Select &All", "A"], 27 | ]], 28 | ] 29 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.asp: -------------------------------------------------------------------------------- 1 | <%@language=javas%> 2 | <% 3 | #include 4 | function x() { 5 | } 6 | %> 7 | <%@language=vbscript%> 8 | <% 9 | sub x 'comment 10 | %> 11 | 12 | 13 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.asp.styled: -------------------------------------------------------------------------------- 1 | {15}<%@{16}language=javas{15}%>{0} 2 | {15}<%{56} 3 | #{61}include{56} 4 | {62}function{56} {61}x{65}(){56} {65}{{56} 5 | {65}}{56} 6 | {15}%>{0} 7 | {15}<%@{16}language=vbscript{15}%>{0} 8 | {15}<%{81} 9 | {84}sub{81} {86}x{81} {82}'comment {81} 10 | {15}%>{0} 11 | {1}{0} 12 | {1}{0} 13 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.cxx: -------------------------------------------------------------------------------- 1 | // A demonstration program 2 | #include 3 | #if 0 4 | #define DUMMY() \ 5 | if (1); 6 | #endif 7 | int main() { 8 | double x[] = {3.14159,6.02e23,1.6e-19,1.0+1}; 9 | int y[] = {75,0113,0x4b}; 10 | printf("hello world %d %g\n", y[0], x[0]); 11 | } 12 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.cxx.styled: -------------------------------------------------------------------------------- 1 | {2}// A demonstration program 2 | {9}#include 3 | #if 0 4 | {73}#define DUMMY() \ 5 | if (1); 6 | {9}#endif 7 | {5}int{0} {11}main{10}(){0} {10}{{0} 8 | {11}double{0} {11}x{10}[]{0} {10}={0} {10}{{4}3.14159{10},{4}6.02e23{10},{4}1.6e-19{10},{4}1.0{10}+{4}1{10}};{0} 9 | {5}int{0} {11}y{10}[]{0} {10}={0} {10}{{4}75{10},{4}0113{10},{4}0x4b{10}};{0} 10 | {11}printf{10}({6}"hello world %d %g\n"{10},{0} {11}y{10}[{4}0{10}],{0} {11}x{10}[{4}0{10}]);{0} 11 | {10}}{0} 12 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.d: -------------------------------------------------------------------------------- 1 | $ 2 | // /++ +/ doccomments are not yet supported 3 | /* */ 4 | /** */ 5 | /// drdr 6 | /+ /+ +/ +/ 7 | //keyword test 8 | keyword1 9 | keyword2 10 | keyword4 11 | keyword5 12 | keyword6 13 | keyword7 14 | //unicode identifier test 15 | вапёasdÓΘΣαԷԸՑהכ拉麺とひシマイ단결을 16 | //strings test 17 | 's 18 | ' 19 | w's'w 20 | "multiline 21 | string"w 22 | e"zz"e 23 | r"asd\"e 24 | r"multiline 25 | string"c 26 | r`asd\`e 27 | `multiline 28 | string`d 29 | x"023 abc"e 30 | x"023 31 | abc"w 32 | //numbers test 33 | a[3..4]=3 34 | 2.stringof 35 | 2.0.stringof 36 | 2. 37 | 2.2e+2 38 | 2.2e-2 39 | .2e+2 40 | .2 41 | 2e+2 42 | 0x2e+2 43 | 0x2ep+10 44 | ,.2.stringof, 45 | 46 | end 47 | 48 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.d.styled: -------------------------------------------------------------------------------- 1 | {14}${0} 2 | {2}// /++ +/ doccomments are not yet supported 3 | {1}/* */{0} 4 | {3}/** */{0} 5 | {15}/// drdr 6 | {4}/+ /+ +/ +/{0} 7 | {2}//keyword test 8 | {6}keyword1{0} 9 | {7}keyword2{0} 10 | {9}keyword4{0} 11 | {20}keyword5{0} 12 | {21}keyword6{0} 13 | {22}keyword7{0} 14 | {2}//unicode identifier test 15 | {14}вапёasdÓΘΣαԷԸՑהכ拉麺とひシマイ단결을{0} 16 | {2}//strings test 17 | {11}'s 18 | ' 19 | {14}w{12}'s'{14}w{0} 20 | {10}"multiline 21 | string"w{0} 22 | {14}e{10}"zz"{14}e{0} 23 | {19}r"asd\"{14}e{0} 24 | {19}r"multiline 25 | string"c{0} 26 | {14}r{18}`asd\`{14}e{0} 27 | {18}`multiline 28 | string`d{0} 29 | {19}x"023 abc"{14}e{0} 30 | {19}x"023 31 | abc"w{0} 32 | {2}//numbers test 33 | {14}a{13}[{5}3{13}..{5}4{13}]={5}3{0} 34 | {5}2.stringof{0} 35 | {5}2.0{13}.{14}stringof{0} 36 | {5}2.{0} 37 | {5}2.2e+2{0} 38 | {5}2.2e-2{0} 39 | {5}.2e+2{0} 40 | {5}.2{0} 41 | {5}2e+2{0} 42 | {5}0x2e{13}+{5}2{0} 43 | {5}0x2ep+10{0} 44 | {13},{5}.2{13}.{14}stringof{13},{0} 45 | 46 | {14}end{0} 47 | 48 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.html: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | SinkWorld - Portability 10 | SinkWorld - Portability 11 | 12 | 13 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.html.styled: -------------------------------------------------------------------------------- 1 | {1}{0} 2 | {1}{40} 3 | {46}var{41} {46}b{41} {50}={41} {52}/abc/i{46}.test{50}({49}'abc'{50});{41} 4 | {49}'x\ 5 | '{41} 6 | {1}{0} 7 | {1}{0} 8 | {1}{0} 9 | {1}{0}SinkWorld - Portability{1}{0} 10 | {2}{0}SinkWorld - Portability{2}{0} 11 | {1}{0} 12 | {1}{0} 13 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.php: -------------------------------------------------------------------------------- 1 | 2 | \n"; 4 | /* ?> */ 5 | ?> 6 | forif 7 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.php.styled: -------------------------------------------------------------------------------- 1 | {1}{0} {9}{0} 2 | {18}\n"{127};{118} 4 | {124}/* ?> */{118} 5 | {18}?>{0} 6 | {1}{0}for{1}{0}if{1}{0} 7 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.py: -------------------------------------------------------------------------------- 1 | # Convert all punctuation characters except '_', '*', and '.' into spaces. 2 | def depunctuate(s): 3 | '''A docstring''' 4 | """Docstring 2""" 5 | d = "" 6 | for ch in s: 7 | if ch in 'abcde': 8 | d = d + ch 9 | else: 10 | d = d + " " 11 | return d 12 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.py.styled: -------------------------------------------------------------------------------- 1 | {1}# Convert all punctuation characters except '_', '*', and '.' into spaces.{0} 2 | {5}def{0} {9}depunctuate{10}({11}s{10}):{0} 3 | {6}'''A docstring'''{0} 4 | {7}"""Docstring 2"""{0} 5 | {11}d{0} {10}={0} {3}""{0} 6 | {5}for{0} {11}ch{0} {5}in{0} {11}s{10}:{0} 7 | {5}if{0} {11}ch{0} {5}in{0} {4}'abcde'{10}:{0} 8 | {11}d{0} {10}={0} {11}d{0} {10}+{0} {11}ch{0} 9 | {5}else{10}:{0} 10 | {11}d{0} {10}={0} {11}d{0} {10}+{0} {3}" "{0} 11 | {5}return{0} {11}d{0} 12 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.vb: -------------------------------------------------------------------------------- 1 | ' String" 2 | Dim a As String = "hello, world" 3 | Dim b As String = "hello world" 4 | Dim c As String = "Joe said ""Hello"" to me" 5 | Dim d As String = "\\\\server\\share\\file.txt" 6 | ' Character 7 | ""C "c"C "cc"C 8 | ' Date 9 | d = #5/31/1993# or # 01/01/0001 12:00:00AM # 10 | -------------------------------------------------------------------------------- /scintilla/test/examples/x.vb.styled: -------------------------------------------------------------------------------- 1 | {1}' String" 2 | {3}Dim{0} {7}a{0} {3}As{0} {3}String{0} {6}={0} {4}"hello, world"{0} 3 | {3}Dim{0} {7}b{0} {3}As{0} {3}String{0} {6}={0} {4}"hello world"{0} 4 | {3}Dim{0} {7}c{0} {3}As{0} {3}String{0} {6}={0} {4}"Joe said ""Hello"" to me"{0} 5 | {3}Dim{0} {7}d{0} {3}As{0} {3}String{0} {6}={0} {4}"\\\\server\\share\\file.txt"{0} 6 | {1}' Character 7 | {4}""C{0} {4}"c"C{0} {4}"cc"C{0} 8 | {1}' Date 9 | {7}d{0} {6}={0} {8}#5/31/1993#{0} {3}or{0} {8}# 01/01/0001 12:00:00AM #{0} 10 | -------------------------------------------------------------------------------- /scintilla/test/unit/README: -------------------------------------------------------------------------------- 1 | The test/unit directory contains unit tests for Scintilla data structures. 2 | 3 | The tests can be run on Windows or Linux using g++ and GNU make. 4 | The Google Test framework is used. 5 | http://code.google.com/p/googletest/ 6 | 7 | Google test must be installed first. 8 | On Linux, install the google test packages libgtest-dev and libgtest0. 9 | On Windows download Google test and install it as a peer to the directory 10 | containing scintilla. The makefile assumes it is in ../../../../gtest-1.5.0. 11 | 12 | To run the tests: 13 | make 14 | ./unitTest 15 | -------------------------------------------------------------------------------- /scintilla/test/unit/SciTE.properties: -------------------------------------------------------------------------------- 1 | if PLAT_WIN 2 | make.command=mingw32-make 3 | command.go.*.cxx=./unitTest 4 | command.go.needs.$(file.patterns.cplusplus)=$(make.command) 5 | -------------------------------------------------------------------------------- /scintilla/test/unit/unitTest.cxx: -------------------------------------------------------------------------------- 1 | // Unit Tests for Scintilla internal data structures 2 | 3 | /* 4 | Currently tested: 5 | SplitVector 6 | Partitioning 7 | RunStyles 8 | ContractionState 9 | 10 | To do: 11 | Decoration 12 | DecorationList 13 | PerLine * 14 | CellBuffer * 15 | Range 16 | StyledText 17 | CaseFolder ... 18 | Document 19 | RESearch 20 | Selection 21 | UniConversion 22 | Style 23 | 24 | lexlib: 25 | Accessor 26 | LexAccessor 27 | CharacterSet 28 | OptionSet 29 | PropSetSimple 30 | StyleContext 31 | WordList 32 | */ 33 | 34 | #include 35 | 36 | #include "Platform.h" 37 | 38 | #include 39 | 40 | // Needed for PLATFORM_ASSERT in code being tested 41 | 42 | void Platform::Assert(const char *c, const char *file, int line) { 43 | fprintf(stderr, "Assertion [%s] failed at %s %d\n", c, file, line); 44 | abort(); 45 | } 46 | 47 | int main(int argc, char **argv) { 48 | testing::InitGoogleTest(&argc, argv); 49 | return RUN_ALL_TESTS(); 50 | } 51 | -------------------------------------------------------------------------------- /scintilla/test/xite.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | import XiteWin 4 | 5 | if __name__ == "__main__": 6 | XiteWin.main("") 7 | -------------------------------------------------------------------------------- /scintilla/tgzsrc: -------------------------------------------------------------------------------- 1 | cd .. 2 | rm -f scintilla.tgz 3 | tar --create --exclude \*.o --exclude \*.obj --exclude \*.dll --exclude \*.exe --exclude \*.a scintilla/* \ 4 | | gzip -c >scintilla.tgz 5 | -------------------------------------------------------------------------------- /scintilla/version.txt: -------------------------------------------------------------------------------- 1 | 310 2 | -------------------------------------------------------------------------------- /scintilla/win32/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | *.obj 3 | ScintRes.res -------------------------------------------------------------------------------- /scintilla/win32/PlatWin.h: -------------------------------------------------------------------------------- 1 | // Scintilla source code edit control 2 | /** @file PlatWin.h 3 | ** Implementation of platform facilities on Windows. 4 | **/ 5 | // Copyright 1998-2011 by Neil Hodgson 6 | // The License.txt file describes the conditions under which this software may be distributed. 7 | 8 | extern bool IsNT(); 9 | extern void Platform_Initialise(void *hInstance); 10 | extern void Platform_Finalise(); 11 | 12 | #if defined(USE_D2D) 13 | extern bool LoadD2D(); 14 | extern ID2D1Factory *pD2DFactory; 15 | extern IDWriteFactory *pIDWriteFactory; 16 | #endif 17 | -------------------------------------------------------------------------------- /scintilla/win32/SciTE.properties: -------------------------------------------------------------------------------- 1 | command.build.SConstruct=scons.bat . 2 | command.name.1.SConstruct=scons clean 3 | command.1.SConstruct=scons.bat --clean . 4 | 5 | command.build.*.mak=nmake -f $(FileNameExt) DEBUG=1 QUIET=1 6 | command.name.1.*.mak=nmake clean 7 | command.1.*.mak=nmake -f $(FileNameExt) clean 8 | command.name.2.*.mak=Borland Make 9 | command.2.*.mak=make -f $(FileNameExt) 10 | command.subsystem.2.*.mak=0 11 | command.name.3.*.mak=make clean 12 | command.3.*.mak=make -f $(FileNameExt) clean 13 | command.name.4.*.mak=make debug 14 | command.4.*.mak=make DEBUG=1 -f $(FileNameExt) 15 | command.name.5.*.mak=nmake debug 16 | command.5.*.mak=nmake DEBUG=1 -f $(FileNameExt) 17 | # SciTE.properties is the per directory local options file and can be used to override 18 | # settings made in SciTEGlobal.properties 19 | command.build.*.cxx=nmake -f scintilla.mak DEBUG=1 QUIET=1 20 | command.build.*.h=nmake -f scintilla.mak DEBUG=1 QUIET=1 21 | command.build.*.rc=nmake -f scintilla.mak DEBUG=1 QUIET=1 22 | -------------------------------------------------------------------------------- /scintilla/win32/ScintRes.rc: -------------------------------------------------------------------------------- 1 | // Resource file for Scintilla 2 | // Copyright 1998-2010 by Neil Hodgson 3 | // The License.txt file describes the conditions under which this software may be distributed. 4 | 5 | #include 6 | 7 | VS_VERSION_INFO VERSIONINFO 8 | FILEVERSION 3, 1, 0, 0 9 | PRODUCTVERSION 3, 1, 0, 0 10 | FILEFLAGSMASK 0x3fL 11 | FILEFLAGS 0 12 | FILEOS VOS_NT_WINDOWS32 13 | FILETYPE VFT_APP 14 | FILESUBTYPE VFT2_UNKNOWN 15 | BEGIN 16 | BLOCK "VarFileInfo" 17 | BEGIN 18 | VALUE "Translation", 0x409, 1200 19 | END 20 | BLOCK "StringFileInfo" 21 | BEGIN 22 | BLOCK "040904b0" 23 | BEGIN 24 | VALUE "CompanyName", "Neil Hodgson neilh@scintilla.org\0" 25 | VALUE "FileDescription", "Scintilla.DLL - a Source Editing Component\0" 26 | VALUE "FileVersion", "3.1.0\0" 27 | VALUE "InternalName", "Scintilla\0" 28 | VALUE "LegalCopyright", "Copyright 1998-2012 by Neil Hodgson\0" 29 | VALUE "OriginalFilename", "Scintilla.DLL\0" 30 | VALUE "ProductName", "Scintilla\0" 31 | VALUE "ProductVersion", "3.1.0\0" 32 | END 33 | END 34 | END 35 | -------------------------------------------------------------------------------- /scintilla/win32/Scintilla.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Scintilla_DirectFunction -------------------------------------------------------------------------------- /scintilla/zipsrc.bat: -------------------------------------------------------------------------------- 1 | cd .. 2 | del/q scintilla.zip 3 | zip scintilla.zip scintilla\*.* scintilla\*\*.* scintilla\*\*\*.* scintilla\*\*\*\*.* scintilla\*\*\*\*\*.* -x *.o -x *.obj -x *.dll -x *.lib -x *.res -x *.exp 4 | cd scintilla 5 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Generated source code files 3 | /enums.h 4 | /enums.c 5 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | lib_LTLIBRARIES = libgtkscintilla-1.0.la 2 | 3 | libgtkscintilla_1_0_la_LDFLAGS = -version-info 0:0:0 -lstdc++ 4 | 5 | libgtkscintilla_1_0_la_LIBADD = @GTK_LIBS@ \ 6 | $(top_builddir)/scintilla/libscintilla.la 7 | libgtkscintilla_1_0_la_CPPFLAGS = -I$(top_srcdir)/src \ 8 | -I$(top_srcdir)/scintilla/include \ 9 | -I$(top_srcdir)/scintilla/src \ 10 | -I$(top_srcdir)/scintilla/lexlib \ 11 | @GTK_CFLAGS@ -DGTK -DSCI_LEXER \ 12 | -DGTK_SCINTILLA_DATADIR="\"$(pkgdatadir)\"" 13 | 14 | library_includedir = $(includedir)/gtkscintilla-1.0/gtkscintilla 15 | library_include_HEADERS = gtkscintilla.h \ 16 | constants.h \ 17 | lexer.h \ 18 | enums.h 19 | 20 | autogen_sources = enums.c 21 | autogen_headers = enums.h 22 | 23 | libgtkscintilla_1_0_la_SOURCES = $(autogen_sources) \ 24 | gtkscintilla.c \ 25 | text.c \ 26 | search.c \ 27 | properties.c \ 28 | style-properties.c \ 29 | signals.c \ 30 | accessors.c \ 31 | functions.c \ 32 | lexer.c 33 | 34 | CLEANFILES = $(autogen_sources) \ 35 | $(autogen_headers) 36 | 37 | EXTRA_DIST = enums.c.tpl \ 38 | enums.h.tpl 39 | 40 | enums.c: enums.c.tpl enums.h $(library_include_HEADERS) Makefile 41 | $(AM_V_GEN)$(GLIB_MKENUMS) --template $< \ 42 | $(library_include_HEADERS:%=$(srcdir)/%) > $@ 43 | 44 | enums.h: enums.h.tpl $(library_include_HEADERS) Makefile 45 | $(AM_V_GEN)$(GLIB_MKENUMS) --template $< \ 46 | $(library_include_HEADERS:%=$(srcdir)/%) > $@ 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /src/enums.c.tpl: -------------------------------------------------------------------------------- 1 | /*** BEGIN file-header ***/ 2 | #include "enums.h" 3 | 4 | /*** END file-header ***/ 5 | 6 | /*** BEGIN file-production ***/ 7 | /* enumerations from "@filename@" */ 8 | /*** END file-production ***/ 9 | 10 | /*** BEGIN value-header ***/ 11 | GType 12 | @enum_name@_get_type (void) 13 | { 14 | static GType etype = 0; 15 | if (G_UNLIKELY(etype == 0)) { 16 | static const G@Type@Value values[] = { 17 | /*** END value-header ***/ 18 | 19 | /*** BEGIN value-production ***/ 20 | { @VALUENAME@, "@VALUENAME@", "@valuenick@" }, 21 | /*** END value-production ***/ 22 | 23 | /*** BEGIN value-tail ***/ 24 | { 0, NULL, NULL } 25 | }; 26 | etype = g_@type@_register_static (g_intern_static_string ("@EnumName@"), values); 27 | } 28 | return etype; 29 | } 30 | 31 | /*** END value-tail ***/ 32 | 33 | /*** BEGIN file-tail ***/ 34 | /*** END file-tail ***/ 35 | -------------------------------------------------------------------------------- /src/enums.h.tpl: -------------------------------------------------------------------------------- 1 | /*** BEGIN file-header ***/ 2 | #ifndef GTK_SCINTILLA_ENUMS_H 3 | #define GTK_SCINTILLA_ENUMS_H 4 | 5 | #include 6 | 7 | /* include all headers that may introduce new enums */ 8 | #include "constants.h" 9 | 10 | G_BEGIN_DECLS 11 | /*** END file-header ***/ 12 | 13 | /*** BEGIN file-production ***/ 14 | 15 | /* enumerations from "@filename@" */ 16 | /*** END file-production ***/ 17 | 18 | /*** BEGIN value-header ***/ 19 | G_GNUC_INTERNAL 20 | GType @enum_name@_get_type (void) G_GNUC_CONST; 21 | #define @ENUMPREFIX@_TYPE_@ENUMSHORT@ (@enum_name@_get_type ()) 22 | /*** END value-header ***/ 23 | 24 | /*** BEGIN file-tail ***/ 25 | G_END_DECLS 26 | 27 | #endif /* #ifndef GTK_SCINTILLA_ENUMS_H */ 28 | /*** END file-tail ***/ 29 | -------------------------------------------------------------------------------- /src/style.c: -------------------------------------------------------------------------------- 1 | /* 2 | * style.c 3 | * 4 | * Copyright 2011 Matthew Brush 5 | * 6 | * This program is free software; you can redistribute it and/or modify 7 | * it under the terms of the GNU Lesser General Public License as 8 | * published by the Free Software Foundation; either version 2 of the 9 | * License, or (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU Lesser General Public 17 | * License along with this program; if not, write to the Free Software 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 19 | * MA 02110-1301, USA. 20 | */ 21 | -------------------------------------------------------------------------------- /src/style.h: -------------------------------------------------------------------------------- 1 | /* 2 | * style.h 3 | * 4 | * Copyright 2011 Matthew Brush 5 | * 6 | * This program is free software; you can redistribute it and/or modify 7 | * it under the terms of the GNU Lesser General Public License as 8 | * published by the Free Software Foundation; either version 2 of the 9 | * License, or (at your option) any later version. 10 | * 11 | * This program is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU Lesser General Public 17 | * License along with this program; if not, write to the Free Software 18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 19 | * MA 02110-1301, USA. 20 | */ 21 | 22 | #ifndef GTK_SCINTILLA_STYLE_H 23 | #define GTK_SCINTILLA_STYLE_H 24 | 25 | typedef struct 26 | { 27 | gint id; 28 | gchar *name; 29 | gchar **classes; 30 | } 31 | GtkScintillaLexerState; 32 | 33 | typedef struct 34 | { 35 | GdkColor background_color; 36 | GdkColor foreground_color; 37 | PangoFontDescription *font_desc; 38 | } 39 | GtkScintillaStyle; 40 | 41 | gtk_scintilla_style_read_states(const gchar *states_file); 42 | 43 | #endif 44 | --------------------------------------------------------------------------------