├── .gitattributes ├── .gitignore ├── AUTHORS ├── CODING_STANDARDS ├── COPYING.LIB ├── ChangeLog ├── INSTALL ├── NEWS ├── NEWS.pre-2-0 ├── README ├── README.KNOWN-ISSUES ├── TODO2 ├── config.m4 ├── demos ├── WidgetEditor.php ├── apple-red.png ├── background.jpg ├── components │ ├── buttonbox.php │ ├── colorselector.php │ ├── combobox.php │ ├── dialogmessage.php │ ├── entrycompletion.php │ ├── expander.php │ ├── gtkinfobar.php │ ├── scribble.php │ ├── sizegroup.php │ └── stock-browser2.php ├── examples │ ├── cairo_support.php │ ├── gtkbuilder_api.php │ ├── new_tooltips_api.php │ ├── notebook.php │ ├── notebook.xml │ ├── old_tooltips_api.php │ ├── printing_example.php │ ├── properties.php │ └── signals.php ├── gnome-applets.png ├── gnome-calendar.png ├── gnome-foot.png ├── gnome-gimp.png ├── gnome-gmush.png ├── gnome-gsame.png ├── gnu-keys.png ├── gtkiconview.php ├── gtkwindow.php ├── imgbrowser.php ├── phpgtk2-demo.php └── stock-browser.php ├── ext ├── ext_skel ├── extra │ ├── Makefile.frag │ ├── README │ ├── config.m4 │ ├── config.w32 │ ├── demos │ │ └── gtksheet.php │ ├── gtkextra-addons.defs │ ├── gtkextra-types.defs │ ├── gtkextra.defs │ ├── gtkextra.overrides │ ├── php_gtkextra.c │ └── php_gtkextra.h ├── gtk+ │ ├── Makefile.frag │ ├── atk-types.defs │ ├── atk.defs │ ├── atk.overrides │ ├── config.m4 │ ├── config.w32 │ ├── gdk-2.10.defs │ ├── gdk-2.10.overrides │ ├── gdk-2.12.defs │ ├── gdk-2.12.overrides │ ├── gdk-2.14-types.defs │ ├── gdk-2.14.defs │ ├── gdk-2.16.defs │ ├── gdk-2.18.defs │ ├── gdk-2.18.overrides │ ├── gdk-2.20.defs │ ├── gdk-2.22.defs │ ├── gdk-2.24.defs │ ├── gdk-2.8-types.defs │ ├── gdk-2.8.defs │ ├── gdk-2.8.overrides │ ├── gdk-types.defs │ ├── gdk.defs │ ├── gdk.overrides │ ├── gtk-2.10-types.defs │ ├── gtk-2.10.defs │ ├── gtk-2.10.overrides │ ├── gtk-2.12-types.defs │ ├── gtk-2.12.defs │ ├── gtk-2.12.overrides │ ├── gtk-2.14-types.defs │ ├── gtk-2.14.defs │ ├── gtk-2.14.overrides │ ├── gtk-2.16-types.defs │ ├── gtk-2.16.defs │ ├── gtk-2.16.overrides │ ├── gtk-2.18-types.defs │ ├── gtk-2.18.defs │ ├── gtk-2.18.overrides │ ├── gtk-2.20-types.defs │ ├── gtk-2.20.defs │ ├── gtk-2.20.overrides │ ├── gtk-2.22.defs │ ├── gtk-2.24-types.defs │ ├── gtk-2.24.defs │ ├── gtk-2.8-types.defs │ ├── gtk-2.8.defs │ ├── gtk-2.8.overrides │ ├── gtk-extrafuncs.defs │ ├── gtk-types.defs │ ├── gtk.defs │ ├── gtk.overrides │ ├── gtkclipboard.overrides │ ├── gtkcontainer.overrides │ ├── gtkdrag.overrides │ ├── gtkstyle.overrides │ ├── gtktextview.overrides │ ├── gtktreeview.overrides │ ├── gtkunixprint.defs │ ├── pango-types.defs │ ├── pango.defs │ ├── pango.overrides │ ├── php_gdk.c │ ├── php_gtk+.c │ ├── php_gtk+.h │ ├── php_gtk+_types.c │ ├── phpg_custom_tree_model.c │ └── phpg_custom_tree_model.h ├── html │ ├── Makefile.frag │ ├── README │ ├── config.m4 │ ├── config.w32 │ ├── demos │ │ └── gtkhtml.php │ ├── html-types.defs │ ├── html.defs │ ├── html.overrides │ ├── php_html.c │ └── php_html.h ├── libglade │ ├── Makefile.frag │ ├── config.m4 │ ├── config.w32 │ ├── libglade.defs │ ├── libglade.overrides │ ├── php_libglade.c │ ├── php_libglade.h │ └── v1.libglade.overrides ├── libsexy │ ├── Makefile.frag │ ├── README │ ├── config.m4 │ ├── config.w32 │ ├── php_libsexy.c │ ├── php_libsexy.h │ ├── sexy.defs │ └── sexy.overrides ├── scintilla │ ├── Makefile.frag │ ├── config.m4 │ ├── config.w32 │ ├── gtkscintilla.h │ ├── libscintilla │ │ ├── Converter.h │ │ ├── PlatGTK.cxx │ │ ├── ScintillaGTK.cxx │ │ ├── deps.mak │ │ ├── include │ │ │ ├── Accessor.h │ │ │ ├── Face.py │ │ │ ├── HFacer.py │ │ │ ├── KeyWords.h │ │ │ ├── Platform.h │ │ │ ├── PropSet.h │ │ │ ├── SString.h │ │ │ ├── SciLexer.h │ │ │ ├── Scintilla.h │ │ │ ├── Scintilla.iface │ │ │ ├── ScintillaWidget.h │ │ │ └── WindowAccessor.h │ │ ├── makefile │ │ ├── scintilla-marshal.c │ │ ├── scintilla-marshal.h │ │ ├── scintilla-marshal.list │ │ ├── scintilla.mak │ │ ├── src │ │ │ ├── AutoComplete.cxx │ │ │ ├── AutoComplete.h │ │ │ ├── CallTip.cxx │ │ │ ├── CallTip.h │ │ │ ├── CellBuffer.cxx │ │ │ ├── CellBuffer.h │ │ │ ├── CharClassify.cxx │ │ │ ├── CharClassify.h │ │ │ ├── CharacterSet.h │ │ │ ├── ContractionState.cxx │ │ │ ├── ContractionState.h │ │ │ ├── Decoration.cxx │ │ │ ├── Decoration.h │ │ │ ├── Document.cxx │ │ │ ├── Document.h │ │ │ ├── DocumentAccessor.cxx │ │ │ ├── DocumentAccessor.h │ │ │ ├── Editor.cxx │ │ │ ├── Editor.h │ │ │ ├── ExternalLexer.cxx │ │ │ ├── ExternalLexer.h │ │ │ ├── Indicator.cxx │ │ │ ├── Indicator.h │ │ │ ├── KeyMap.cxx │ │ │ ├── KeyMap.h │ │ │ ├── KeyWords.cxx │ │ │ ├── LexAPDL.cxx │ │ │ ├── LexASY.cxx │ │ │ ├── LexAU3.cxx │ │ │ ├── LexAVE.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 │ │ │ ├── LexConf.cxx │ │ │ ├── LexCrontab.cxx │ │ │ ├── LexCsound.cxx │ │ │ ├── LexD.cxx │ │ │ ├── LexEScript.cxx │ │ │ ├── LexEiffel.cxx │ │ │ ├── LexErlang.cxx │ │ │ ├── LexFlagship.cxx │ │ │ ├── LexForth.cxx │ │ │ ├── LexFortran.cxx │ │ │ ├── LexGAP.cxx │ │ │ ├── LexGen.py │ │ │ ├── LexGui4Cli.cxx │ │ │ ├── LexHTML.cxx │ │ │ ├── LexHaskell.cxx │ │ │ ├── LexInno.cxx │ │ │ ├── LexKix.cxx │ │ │ ├── LexLisp.cxx │ │ │ ├── LexLout.cxx │ │ │ ├── LexLua.cxx │ │ │ ├── LexMMIXAL.cxx │ │ │ ├── LexMPT.cxx │ │ │ ├── LexMSSQL.cxx │ │ │ ├── LexMagik.cxx │ │ │ ├── LexMatlab.cxx │ │ │ ├── LexMetapost.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 │ │ │ ├── LexTeX.cxx │ │ │ ├── LexVB.cxx │ │ │ ├── LexVHDL.cxx │ │ │ ├── LexVerilog.cxx │ │ │ ├── LexYAML.cxx │ │ │ ├── LineMarker.cxx │ │ │ ├── LineMarker.h │ │ │ ├── Partitioning.h │ │ │ ├── PerLine.cxx │ │ │ ├── PerLine.h │ │ │ ├── PositionCache.cxx │ │ │ ├── PositionCache.h │ │ │ ├── PropSet.cxx │ │ │ ├── PropSetSimple.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 │ │ │ ├── StyleContext.cxx │ │ │ ├── StyleContext.h │ │ │ ├── UniConversion.cxx │ │ │ ├── UniConversion.h │ │ │ ├── ViewStyle.cxx │ │ │ ├── ViewStyle.h │ │ │ ├── WindowAccessor.cxx │ │ │ ├── XPM.cxx │ │ │ └── XPM.h │ │ └── version.txt │ ├── php_scintilla.c │ ├── php_scintilla.h │ ├── sci_generator.php │ └── scintilla.in ├── skeleton │ ├── Makefile.frag │ ├── config.m4 │ ├── php_skeleton.c │ ├── php_skeleton.h │ └── skeleton.overrides ├── sourceview │ ├── Makefile.frag │ ├── README │ ├── config.m4 │ ├── config.w32 │ ├── demos │ │ └── simple.phpw │ ├── php_sourceview.c │ ├── php_sourceview.h │ ├── ref.sourceview.defs │ ├── ref.sourceview.overrides │ ├── sourceview.defs │ └── sourceview.overrides └── spell │ ├── README │ ├── config.m4 │ ├── config.w32 │ ├── demos │ └── spell.php │ ├── php_spell.c │ └── php_spell.h ├── generator ├── Getopt.php ├── arg_types.php ├── array_printf.php ├── definitions.php ├── doc_templates.php ├── docgen.php ├── docgen_enum.php ├── docmerger.php ├── docmerger2.php ├── gtkgenerator.php ├── h2def.py ├── lineoutput.php ├── merge_defs.php ├── missing_defs.php ├── override.php ├── reflection.php ├── reflection_class_checker.php ├── scheme.php └── templates.php ├── main ├── Makefile.frag ├── php_gtk.c ├── php_gtk.h ├── php_gtk_api.h ├── php_gtk_ext.c.in ├── php_gtk_ext.w32.c ├── php_gtk_module.h ├── php_gtk_object.c ├── php_gtk_util.c ├── phpg_atom.c ├── phpg_closure.c ├── phpg_exceptions.c ├── phpg_gboxed.c ├── phpg_gobject.c ├── phpg_gpointer.c ├── phpg_gtype.c ├── phpg_gvalue.c ├── phpg_paramspec.c └── phpg_support.c ├── makedist ├── php_gtk.m4 ├── tests ├── GtkAboutDialog │ └── activate-link-signal.phpt ├── GtkCellLayout │ └── get_cells.phpt ├── GtkCellView │ └── get_cell_renderers-deprecated.phpt ├── GtkInfoBar │ ├── __construct.phpt │ ├── add_action_widget.phpt │ ├── add_button.phpt │ ├── get_action_area.phpt │ ├── get_content_area.phpt │ ├── get_message_type.phpt │ ├── response.phpt │ ├── set_default_response.phpt │ ├── set_message_type.phpt │ └── set_response_sensitive.phpt ├── GtkLabel │ ├── get_current_uri.phpt │ ├── get_track_visited_links.phpt │ └── set_track_visited_links.phpt ├── GtkMenu │ ├── get_reserve_toggle_size.phpt │ └── set_reserve_toggle_size.phpt ├── GtkNotebook │ ├── get_group.phpt │ ├── get_group_name.phpt │ ├── group-name.phpt │ ├── set_group.phpt │ └── set_group_name.phpt ├── GtkPrintOperation │ ├── get_embed_page_setup.phpt │ ├── get_has_selection.phpt │ ├── get_n_pages_to_print.phpt │ ├── get_support_selection.phpt │ ├── set_embed_page_setup.phpt │ ├── set_has_selection.phpt │ └── set_support_selection.phpt ├── GtkRange │ ├── get_flippable.phpt │ ├── get_round_digits.phpt │ ├── round-digits.phpt │ ├── set_flippable.phpt │ └── set_round_digits.phpt ├── GtkStatusIcon │ ├── get_title.phpt │ └── set_title.phpt ├── GtkTreeView │ ├── convert_bin_window_to_tree_coords.phpt │ ├── convert_bin_window_to_widget_coords.phpt │ ├── convert_tree_to_bin_window_coords.phpt │ ├── convert_tree_to_widget_coords.phpt │ ├── convert_widget_to_bin_window_coords.phpt │ └── convert_widget_to_tree_coords.phpt ├── GtkTreeViewColumn │ └── get_cell_renderers-deprecated.phpt ├── GtkWidget │ ├── get_allocation.phpt │ ├── get_app_paintable.phpt │ ├── get_can_default.phpt │ ├── get_can_focus.phpt │ ├── get_double_buffered.phpt │ ├── get_has_window.phpt │ ├── get_receives_default.phpt │ ├── get_sensitive.phpt │ ├── get_state.phpt │ ├── get_visible.phpt │ ├── has_default.phpt │ ├── has_focus.phpt │ ├── has_grab.phpt │ ├── is_drawable.phpt │ ├── is_sensitive.phpt │ ├── is_toplevel.phpt │ ├── is_visible-deprecated.phpt │ ├── set_allocation.phpt │ ├── set_can_default.phpt │ ├── set_can_focus.phpt │ ├── set_has_window.phpt │ ├── set_receives_default.phpt │ ├── set_visible.phpt │ └── set_window.phpt └── GtkWindowGroup │ └── list_windows.phpt └── win32 ├── README.txt ├── README.win32.txt ├── buildconf.js ├── config.w32.in ├── confutils.js ├── gdbtool.ico ├── gdk-1.30.ico ├── gtkpath.bat ├── inst.cmd ├── makedist.cmd ├── php-cli.ini ├── php_gtk.dsw ├── php_win.c ├── php_win.dsp ├── php_win.rc ├── resource.h └── template.rc /.gitattributes: -------------------------------------------------------------------------------- 1 | *.phpt text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODING_STANDARDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/CODING_STANDARDS -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/INSTALL -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.pre-2-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/NEWS.pre-2-0 -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/README -------------------------------------------------------------------------------- /README.KNOWN-ISSUES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/README.KNOWN-ISSUES -------------------------------------------------------------------------------- /TODO2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/TODO2 -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/config.m4 -------------------------------------------------------------------------------- /demos/WidgetEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/WidgetEditor.php -------------------------------------------------------------------------------- /demos/apple-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/apple-red.png -------------------------------------------------------------------------------- /demos/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/background.jpg -------------------------------------------------------------------------------- /demos/components/buttonbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/buttonbox.php -------------------------------------------------------------------------------- /demos/components/colorselector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/colorselector.php -------------------------------------------------------------------------------- /demos/components/combobox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/combobox.php -------------------------------------------------------------------------------- /demos/components/dialogmessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/dialogmessage.php -------------------------------------------------------------------------------- /demos/components/entrycompletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/entrycompletion.php -------------------------------------------------------------------------------- /demos/components/expander.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/expander.php -------------------------------------------------------------------------------- /demos/components/gtkinfobar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/gtkinfobar.php -------------------------------------------------------------------------------- /demos/components/scribble.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/scribble.php -------------------------------------------------------------------------------- /demos/components/sizegroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/sizegroup.php -------------------------------------------------------------------------------- /demos/components/stock-browser2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/components/stock-browser2.php -------------------------------------------------------------------------------- /demos/examples/cairo_support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/cairo_support.php -------------------------------------------------------------------------------- /demos/examples/gtkbuilder_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/gtkbuilder_api.php -------------------------------------------------------------------------------- /demos/examples/new_tooltips_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/new_tooltips_api.php -------------------------------------------------------------------------------- /demos/examples/notebook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/notebook.php -------------------------------------------------------------------------------- /demos/examples/notebook.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/notebook.xml -------------------------------------------------------------------------------- /demos/examples/old_tooltips_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/old_tooltips_api.php -------------------------------------------------------------------------------- /demos/examples/printing_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/printing_example.php -------------------------------------------------------------------------------- /demos/examples/properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/properties.php -------------------------------------------------------------------------------- /demos/examples/signals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/examples/signals.php -------------------------------------------------------------------------------- /demos/gnome-applets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gnome-applets.png -------------------------------------------------------------------------------- /demos/gnome-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gnome-calendar.png -------------------------------------------------------------------------------- /demos/gnome-foot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gnome-foot.png -------------------------------------------------------------------------------- /demos/gnome-gimp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gnome-gimp.png -------------------------------------------------------------------------------- /demos/gnome-gmush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gnome-gmush.png -------------------------------------------------------------------------------- /demos/gnome-gsame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gnome-gsame.png -------------------------------------------------------------------------------- /demos/gnu-keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gnu-keys.png -------------------------------------------------------------------------------- /demos/gtkiconview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gtkiconview.php -------------------------------------------------------------------------------- /demos/gtkwindow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/gtkwindow.php -------------------------------------------------------------------------------- /demos/imgbrowser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/imgbrowser.php -------------------------------------------------------------------------------- /demos/phpgtk2-demo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/phpgtk2-demo.php -------------------------------------------------------------------------------- /demos/stock-browser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/demos/stock-browser.php -------------------------------------------------------------------------------- /ext/ext_skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/ext_skel -------------------------------------------------------------------------------- /ext/extra/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/Makefile.frag -------------------------------------------------------------------------------- /ext/extra/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/README -------------------------------------------------------------------------------- /ext/extra/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/config.m4 -------------------------------------------------------------------------------- /ext/extra/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/config.w32 -------------------------------------------------------------------------------- /ext/extra/demos/gtksheet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/demos/gtksheet.php -------------------------------------------------------------------------------- /ext/extra/gtkextra-addons.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/gtkextra-addons.defs -------------------------------------------------------------------------------- /ext/extra/gtkextra-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/gtkextra-types.defs -------------------------------------------------------------------------------- /ext/extra/gtkextra.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/gtkextra.defs -------------------------------------------------------------------------------- /ext/extra/gtkextra.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/gtkextra.overrides -------------------------------------------------------------------------------- /ext/extra/php_gtkextra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/php_gtkextra.c -------------------------------------------------------------------------------- /ext/extra/php_gtkextra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/extra/php_gtkextra.h -------------------------------------------------------------------------------- /ext/gtk+/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/Makefile.frag -------------------------------------------------------------------------------- /ext/gtk+/atk-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/atk-types.defs -------------------------------------------------------------------------------- /ext/gtk+/atk.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/atk.defs -------------------------------------------------------------------------------- /ext/gtk+/atk.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/atk.overrides -------------------------------------------------------------------------------- /ext/gtk+/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/config.m4 -------------------------------------------------------------------------------- /ext/gtk+/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/config.w32 -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.10.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.10.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.10.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.10.overrides -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.12.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.12.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.12.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.12.overrides -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.14-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.14-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.14.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.14.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.16.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.16.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.18.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.18.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.18.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.18.overrides -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.20.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.20.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.22.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.22.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.24.defs: -------------------------------------------------------------------------------- 1 | (include "gdk-2.22.defs") -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.8-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.8-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.8.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.8.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk-2.8.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-2.8.overrides -------------------------------------------------------------------------------- /ext/gtk+/gdk-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk.defs -------------------------------------------------------------------------------- /ext/gtk+/gdk.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gdk.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.10-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.10-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.10.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.10.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.10.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.10.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.12-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.12-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.12.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.12.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.12.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.12.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.14-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.14-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.14.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.14.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.14.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.14.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.16-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.16-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.16.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.16.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.16.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.16.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.18-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.18-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.18.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.18.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.18.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.18.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.20-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.20-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.20.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.20.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.20.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.20.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.22.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.22.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.24-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.24-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.24.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.24.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.8-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.8-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.8.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.8.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-2.8.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-2.8.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtk-extrafuncs.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-extrafuncs.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk-types.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk.defs -------------------------------------------------------------------------------- /ext/gtk+/gtk.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtk.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtkclipboard.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtkclipboard.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtkcontainer.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtkcontainer.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtkdrag.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtkdrag.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtkstyle.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtkstyle.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtktextview.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtktextview.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtktreeview.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtktreeview.overrides -------------------------------------------------------------------------------- /ext/gtk+/gtkunixprint.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/gtkunixprint.defs -------------------------------------------------------------------------------- /ext/gtk+/pango-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/pango-types.defs -------------------------------------------------------------------------------- /ext/gtk+/pango.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/pango.defs -------------------------------------------------------------------------------- /ext/gtk+/pango.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/pango.overrides -------------------------------------------------------------------------------- /ext/gtk+/php_gdk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/php_gdk.c -------------------------------------------------------------------------------- /ext/gtk+/php_gtk+.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/php_gtk+.c -------------------------------------------------------------------------------- /ext/gtk+/php_gtk+.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/php_gtk+.h -------------------------------------------------------------------------------- /ext/gtk+/php_gtk+_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/php_gtk+_types.c -------------------------------------------------------------------------------- /ext/gtk+/phpg_custom_tree_model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/phpg_custom_tree_model.c -------------------------------------------------------------------------------- /ext/gtk+/phpg_custom_tree_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/gtk+/phpg_custom_tree_model.h -------------------------------------------------------------------------------- /ext/html/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/Makefile.frag -------------------------------------------------------------------------------- /ext/html/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/README -------------------------------------------------------------------------------- /ext/html/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/config.m4 -------------------------------------------------------------------------------- /ext/html/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/config.w32 -------------------------------------------------------------------------------- /ext/html/demos/gtkhtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/demos/gtkhtml.php -------------------------------------------------------------------------------- /ext/html/html-types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/html-types.defs -------------------------------------------------------------------------------- /ext/html/html.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/html.defs -------------------------------------------------------------------------------- /ext/html/html.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/html.overrides -------------------------------------------------------------------------------- /ext/html/php_html.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/php_html.c -------------------------------------------------------------------------------- /ext/html/php_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/html/php_html.h -------------------------------------------------------------------------------- /ext/libglade/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libglade/Makefile.frag -------------------------------------------------------------------------------- /ext/libglade/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libglade/config.m4 -------------------------------------------------------------------------------- /ext/libglade/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libglade/config.w32 -------------------------------------------------------------------------------- /ext/libglade/libglade.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libglade/libglade.defs -------------------------------------------------------------------------------- /ext/libglade/libglade.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libglade/libglade.overrides -------------------------------------------------------------------------------- /ext/libglade/php_libglade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libglade/php_libglade.c -------------------------------------------------------------------------------- /ext/libglade/php_libglade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libglade/php_libglade.h -------------------------------------------------------------------------------- /ext/libglade/v1.libglade.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libglade/v1.libglade.overrides -------------------------------------------------------------------------------- /ext/libsexy/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libsexy/Makefile.frag -------------------------------------------------------------------------------- /ext/libsexy/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libsexy/README -------------------------------------------------------------------------------- /ext/libsexy/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libsexy/config.m4 -------------------------------------------------------------------------------- /ext/libsexy/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libsexy/config.w32 -------------------------------------------------------------------------------- /ext/libsexy/php_libsexy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libsexy/php_libsexy.c -------------------------------------------------------------------------------- /ext/libsexy/php_libsexy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libsexy/php_libsexy.h -------------------------------------------------------------------------------- /ext/libsexy/sexy.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libsexy/sexy.defs -------------------------------------------------------------------------------- /ext/libsexy/sexy.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/libsexy/sexy.overrides -------------------------------------------------------------------------------- /ext/scintilla/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/Makefile.frag -------------------------------------------------------------------------------- /ext/scintilla/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/config.m4 -------------------------------------------------------------------------------- /ext/scintilla/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/config.w32 -------------------------------------------------------------------------------- /ext/scintilla/gtkscintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/gtkscintilla.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/Converter.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/PlatGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/PlatGTK.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/ScintillaGTK.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/ScintillaGTK.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/deps.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/deps.mak -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/Accessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/Accessor.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/Face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/Face.py -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/HFacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/HFacer.py -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/KeyWords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/KeyWords.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/Platform.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/PropSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/PropSet.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/SString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/SString.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/SciLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/SciLexer.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/Scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/Scintilla.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/Scintilla.iface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/Scintilla.iface -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/ScintillaWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/ScintillaWidget.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/include/WindowAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/include/WindowAccessor.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/makefile -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/scintilla-marshal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/scintilla-marshal.c -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/scintilla-marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/scintilla-marshal.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/scintilla-marshal.list: -------------------------------------------------------------------------------- 1 | NONE:INT,POINTER 2 | -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/scintilla.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/scintilla.mak -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/AutoComplete.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/AutoComplete.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/AutoComplete.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/CallTip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/CallTip.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/CallTip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/CallTip.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/CellBuffer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/CellBuffer.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/CellBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/CellBuffer.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/CharClassify.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/CharClassify.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/CharClassify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/CharClassify.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/CharacterSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/CharacterSet.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/ContractionState.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/ContractionState.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/ContractionState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/ContractionState.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Decoration.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Decoration.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Decoration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Decoration.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Document.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Document.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Document.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/DocumentAccessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/DocumentAccessor.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/DocumentAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/DocumentAccessor.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Editor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Editor.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Editor.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/ExternalLexer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/ExternalLexer.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/ExternalLexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/ExternalLexer.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Indicator.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Indicator.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Indicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Indicator.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/KeyMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/KeyMap.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/KeyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/KeyMap.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/KeyWords.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/KeyWords.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexAPDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexAPDL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexASY.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexASY.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexAU3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexAU3.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexAVE.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexAVE.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexAbaqus.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexAbaqus.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexAda.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexAda.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexAsm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexAsm.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexAsn1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexAsn1.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexBaan.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexBaan.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexBash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexBash.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexBasic.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexBasic.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexBullant.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexBullant.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexCLW.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexCLW.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexCOBOL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexCOBOL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexCPP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexCPP.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexCSS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexCSS.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexCaml.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexCaml.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexCmake.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexCmake.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexConf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexConf.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexCrontab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexCrontab.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexCsound.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexCsound.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexD.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexD.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexEScript.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexEScript.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexEiffel.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexEiffel.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexErlang.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexErlang.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexFlagship.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexFlagship.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexForth.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexForth.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexFortran.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexFortran.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexGAP.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexGAP.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexGen.py -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexGui4Cli.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexGui4Cli.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexHTML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexHTML.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexHaskell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexHaskell.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexInno.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexInno.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexKix.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexKix.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexLisp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexLisp.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexLout.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexLout.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexLua.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexLua.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexMMIXAL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexMMIXAL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexMPT.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexMPT.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexMSSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexMSSQL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexMagik.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexMagik.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexMatlab.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexMatlab.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexMetapost.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexMetapost.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexMySQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexMySQL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexNimrod.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexNimrod.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexNsis.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexNsis.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexOpal.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexOpal.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexOthers.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexOthers.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPB.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPLM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPLM.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPOV.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPOV.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPS.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPS.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPascal.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPascal.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPerl.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPerl.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPowerPro.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPowerPro.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPowerShell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPowerShell.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexProgress.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexProgress.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexPython.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexPython.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexR.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexR.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexRebol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexRebol.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexRuby.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexRuby.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexSML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexSML.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexSQL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexSQL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexScriptol.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexScriptol.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexSmalltalk.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexSmalltalk.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexSorcus.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexSorcus.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexSpecman.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexSpecman.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexSpice.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexSpice.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexTACL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexTACL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexTADS3.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexTADS3.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexTAL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexTAL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexTCL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexTCL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexTeX.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexTeX.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexVB.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexVB.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexVHDL.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexVHDL.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexVerilog.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexVerilog.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LexYAML.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LexYAML.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LineMarker.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LineMarker.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/LineMarker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/LineMarker.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Partitioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Partitioning.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/PerLine.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/PerLine.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/PerLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/PerLine.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/PositionCache.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/PositionCache.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/PositionCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/PositionCache.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/PropSet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/PropSet.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/PropSetSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/PropSetSimple.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/RESearch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/RESearch.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/RESearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/RESearch.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/RunStyles.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/RunStyles.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/RunStyles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/RunStyles.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/SVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/SVector.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/SciTE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/SciTE.properties -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/ScintillaBase.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/ScintillaBase.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/ScintillaBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/ScintillaBase.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Selection.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Selection.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Selection.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/SplitVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/SplitVector.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Style.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/Style.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/StyleContext.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/StyleContext.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/StyleContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/StyleContext.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/UniConversion.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/UniConversion.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/UniConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/UniConversion.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/ViewStyle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/ViewStyle.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/ViewStyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/ViewStyle.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/WindowAccessor.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/WindowAccessor.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/XPM.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/XPM.cxx -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/src/XPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/libscintilla/src/XPM.h -------------------------------------------------------------------------------- /ext/scintilla/libscintilla/version.txt: -------------------------------------------------------------------------------- 1 | 201 2 | -------------------------------------------------------------------------------- /ext/scintilla/php_scintilla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/php_scintilla.c -------------------------------------------------------------------------------- /ext/scintilla/php_scintilla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/php_scintilla.h -------------------------------------------------------------------------------- /ext/scintilla/sci_generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/sci_generator.php -------------------------------------------------------------------------------- /ext/scintilla/scintilla.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/scintilla/scintilla.in -------------------------------------------------------------------------------- /ext/skeleton/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/skeleton/Makefile.frag -------------------------------------------------------------------------------- /ext/skeleton/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/skeleton/config.m4 -------------------------------------------------------------------------------- /ext/skeleton/php_skeleton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/skeleton/php_skeleton.c -------------------------------------------------------------------------------- /ext/skeleton/php_skeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/skeleton/php_skeleton.h -------------------------------------------------------------------------------- /ext/skeleton/skeleton.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/skeleton/skeleton.overrides -------------------------------------------------------------------------------- /ext/sourceview/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/Makefile.frag -------------------------------------------------------------------------------- /ext/sourceview/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/README -------------------------------------------------------------------------------- /ext/sourceview/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/config.m4 -------------------------------------------------------------------------------- /ext/sourceview/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/config.w32 -------------------------------------------------------------------------------- /ext/sourceview/demos/simple.phpw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/demos/simple.phpw -------------------------------------------------------------------------------- /ext/sourceview/php_sourceview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/php_sourceview.c -------------------------------------------------------------------------------- /ext/sourceview/php_sourceview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/php_sourceview.h -------------------------------------------------------------------------------- /ext/sourceview/ref.sourceview.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/ref.sourceview.defs -------------------------------------------------------------------------------- /ext/sourceview/ref.sourceview.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/ref.sourceview.overrides -------------------------------------------------------------------------------- /ext/sourceview/sourceview.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/sourceview.defs -------------------------------------------------------------------------------- /ext/sourceview/sourceview.overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/sourceview/sourceview.overrides -------------------------------------------------------------------------------- /ext/spell/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/spell/README -------------------------------------------------------------------------------- /ext/spell/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/spell/config.m4 -------------------------------------------------------------------------------- /ext/spell/config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/spell/config.w32 -------------------------------------------------------------------------------- /ext/spell/demos/spell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/spell/demos/spell.php -------------------------------------------------------------------------------- /ext/spell/php_spell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/spell/php_spell.c -------------------------------------------------------------------------------- /ext/spell/php_spell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/ext/spell/php_spell.h -------------------------------------------------------------------------------- /generator/Getopt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/Getopt.php -------------------------------------------------------------------------------- /generator/arg_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/arg_types.php -------------------------------------------------------------------------------- /generator/array_printf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/array_printf.php -------------------------------------------------------------------------------- /generator/definitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/definitions.php -------------------------------------------------------------------------------- /generator/doc_templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/doc_templates.php -------------------------------------------------------------------------------- /generator/docgen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/docgen.php -------------------------------------------------------------------------------- /generator/docgen_enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/docgen_enum.php -------------------------------------------------------------------------------- /generator/docmerger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/docmerger.php -------------------------------------------------------------------------------- /generator/docmerger2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/docmerger2.php -------------------------------------------------------------------------------- /generator/gtkgenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/gtkgenerator.php -------------------------------------------------------------------------------- /generator/h2def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/h2def.py -------------------------------------------------------------------------------- /generator/lineoutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/lineoutput.php -------------------------------------------------------------------------------- /generator/merge_defs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/merge_defs.php -------------------------------------------------------------------------------- /generator/missing_defs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/missing_defs.php -------------------------------------------------------------------------------- /generator/override.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/override.php -------------------------------------------------------------------------------- /generator/reflection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/reflection.php -------------------------------------------------------------------------------- /generator/reflection_class_checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/reflection_class_checker.php -------------------------------------------------------------------------------- /generator/scheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/scheme.php -------------------------------------------------------------------------------- /generator/templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/generator/templates.php -------------------------------------------------------------------------------- /main/Makefile.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/Makefile.frag -------------------------------------------------------------------------------- /main/php_gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/php_gtk.c -------------------------------------------------------------------------------- /main/php_gtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/php_gtk.h -------------------------------------------------------------------------------- /main/php_gtk_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/php_gtk_api.h -------------------------------------------------------------------------------- /main/php_gtk_ext.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/php_gtk_ext.c.in -------------------------------------------------------------------------------- /main/php_gtk_ext.w32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/php_gtk_ext.w32.c -------------------------------------------------------------------------------- /main/php_gtk_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/php_gtk_module.h -------------------------------------------------------------------------------- /main/php_gtk_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/php_gtk_object.c -------------------------------------------------------------------------------- /main/php_gtk_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/php_gtk_util.c -------------------------------------------------------------------------------- /main/phpg_atom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_atom.c -------------------------------------------------------------------------------- /main/phpg_closure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_closure.c -------------------------------------------------------------------------------- /main/phpg_exceptions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_exceptions.c -------------------------------------------------------------------------------- /main/phpg_gboxed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_gboxed.c -------------------------------------------------------------------------------- /main/phpg_gobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_gobject.c -------------------------------------------------------------------------------- /main/phpg_gpointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_gpointer.c -------------------------------------------------------------------------------- /main/phpg_gtype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_gtype.c -------------------------------------------------------------------------------- /main/phpg_gvalue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_gvalue.c -------------------------------------------------------------------------------- /main/phpg_paramspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_paramspec.c -------------------------------------------------------------------------------- /main/phpg_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/main/phpg_support.c -------------------------------------------------------------------------------- /makedist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/makedist -------------------------------------------------------------------------------- /php_gtk.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/php_gtk.m4 -------------------------------------------------------------------------------- /tests/GtkAboutDialog/activate-link-signal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkAboutDialog/activate-link-signal.phpt -------------------------------------------------------------------------------- /tests/GtkCellLayout/get_cells.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkCellLayout/get_cells.phpt -------------------------------------------------------------------------------- /tests/GtkCellView/get_cell_renderers-deprecated.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkCellView/get_cell_renderers-deprecated.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/__construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/__construct.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/add_action_widget.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/add_action_widget.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/add_button.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/add_button.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/get_action_area.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/get_action_area.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/get_content_area.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/get_content_area.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/get_message_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/get_message_type.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/response.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/response.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/set_default_response.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/set_default_response.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/set_message_type.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/set_message_type.phpt -------------------------------------------------------------------------------- /tests/GtkInfoBar/set_response_sensitive.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkInfoBar/set_response_sensitive.phpt -------------------------------------------------------------------------------- /tests/GtkLabel/get_current_uri.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkLabel/get_current_uri.phpt -------------------------------------------------------------------------------- /tests/GtkLabel/get_track_visited_links.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkLabel/get_track_visited_links.phpt -------------------------------------------------------------------------------- /tests/GtkLabel/set_track_visited_links.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkLabel/set_track_visited_links.phpt -------------------------------------------------------------------------------- /tests/GtkMenu/get_reserve_toggle_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkMenu/get_reserve_toggle_size.phpt -------------------------------------------------------------------------------- /tests/GtkMenu/set_reserve_toggle_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkMenu/set_reserve_toggle_size.phpt -------------------------------------------------------------------------------- /tests/GtkNotebook/get_group.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkNotebook/get_group.phpt -------------------------------------------------------------------------------- /tests/GtkNotebook/get_group_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkNotebook/get_group_name.phpt -------------------------------------------------------------------------------- /tests/GtkNotebook/group-name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkNotebook/group-name.phpt -------------------------------------------------------------------------------- /tests/GtkNotebook/set_group.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkNotebook/set_group.phpt -------------------------------------------------------------------------------- /tests/GtkNotebook/set_group_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkNotebook/set_group_name.phpt -------------------------------------------------------------------------------- /tests/GtkPrintOperation/get_embed_page_setup.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkPrintOperation/get_embed_page_setup.phpt -------------------------------------------------------------------------------- /tests/GtkPrintOperation/get_has_selection.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkPrintOperation/get_has_selection.phpt -------------------------------------------------------------------------------- /tests/GtkPrintOperation/get_n_pages_to_print.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkPrintOperation/get_n_pages_to_print.phpt -------------------------------------------------------------------------------- /tests/GtkPrintOperation/get_support_selection.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkPrintOperation/get_support_selection.phpt -------------------------------------------------------------------------------- /tests/GtkPrintOperation/set_embed_page_setup.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkPrintOperation/set_embed_page_setup.phpt -------------------------------------------------------------------------------- /tests/GtkPrintOperation/set_has_selection.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkPrintOperation/set_has_selection.phpt -------------------------------------------------------------------------------- /tests/GtkPrintOperation/set_support_selection.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkPrintOperation/set_support_selection.phpt -------------------------------------------------------------------------------- /tests/GtkRange/get_flippable.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkRange/get_flippable.phpt -------------------------------------------------------------------------------- /tests/GtkRange/get_round_digits.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkRange/get_round_digits.phpt -------------------------------------------------------------------------------- /tests/GtkRange/round-digits.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkRange/round-digits.phpt -------------------------------------------------------------------------------- /tests/GtkRange/set_flippable.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkRange/set_flippable.phpt -------------------------------------------------------------------------------- /tests/GtkRange/set_round_digits.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkRange/set_round_digits.phpt -------------------------------------------------------------------------------- /tests/GtkStatusIcon/get_title.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkStatusIcon/get_title.phpt -------------------------------------------------------------------------------- /tests/GtkStatusIcon/set_title.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkStatusIcon/set_title.phpt -------------------------------------------------------------------------------- /tests/GtkTreeView/convert_bin_window_to_tree_coords.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkTreeView/convert_bin_window_to_tree_coords.phpt -------------------------------------------------------------------------------- /tests/GtkTreeView/convert_bin_window_to_widget_coords.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkTreeView/convert_bin_window_to_widget_coords.phpt -------------------------------------------------------------------------------- /tests/GtkTreeView/convert_tree_to_bin_window_coords.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkTreeView/convert_tree_to_bin_window_coords.phpt -------------------------------------------------------------------------------- /tests/GtkTreeView/convert_tree_to_widget_coords.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkTreeView/convert_tree_to_widget_coords.phpt -------------------------------------------------------------------------------- /tests/GtkTreeView/convert_widget_to_bin_window_coords.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkTreeView/convert_widget_to_bin_window_coords.phpt -------------------------------------------------------------------------------- /tests/GtkTreeView/convert_widget_to_tree_coords.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkTreeView/convert_widget_to_tree_coords.phpt -------------------------------------------------------------------------------- /tests/GtkTreeViewColumn/get_cell_renderers-deprecated.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkTreeViewColumn/get_cell_renderers-deprecated.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_allocation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_allocation.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_app_paintable.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_app_paintable.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_can_default.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_can_default.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_can_focus.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_can_focus.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_double_buffered.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_double_buffered.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_has_window.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_has_window.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_receives_default.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_receives_default.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_sensitive.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_sensitive.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_state.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_state.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/get_visible.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/get_visible.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/has_default.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/has_default.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/has_focus.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/has_focus.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/has_grab.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/has_grab.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/is_drawable.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/is_drawable.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/is_sensitive.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/is_sensitive.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/is_toplevel.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/is_toplevel.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/is_visible-deprecated.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/is_visible-deprecated.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/set_allocation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/set_allocation.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/set_can_default.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/set_can_default.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/set_can_focus.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/set_can_focus.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/set_has_window.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/set_has_window.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/set_receives_default.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/set_receives_default.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/set_visible.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/set_visible.phpt -------------------------------------------------------------------------------- /tests/GtkWidget/set_window.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWidget/set_window.phpt -------------------------------------------------------------------------------- /tests/GtkWindowGroup/list_windows.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/tests/GtkWindowGroup/list_windows.phpt -------------------------------------------------------------------------------- /win32/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/README.txt -------------------------------------------------------------------------------- /win32/README.win32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/README.win32.txt -------------------------------------------------------------------------------- /win32/buildconf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/buildconf.js -------------------------------------------------------------------------------- /win32/config.w32.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/config.w32.in -------------------------------------------------------------------------------- /win32/confutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/confutils.js -------------------------------------------------------------------------------- /win32/gdbtool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/gdbtool.ico -------------------------------------------------------------------------------- /win32/gdk-1.30.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/gdk-1.30.ico -------------------------------------------------------------------------------- /win32/gtkpath.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/gtkpath.bat -------------------------------------------------------------------------------- /win32/inst.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/inst.cmd -------------------------------------------------------------------------------- /win32/makedist.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/makedist.cmd -------------------------------------------------------------------------------- /win32/php-cli.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/php-cli.ini -------------------------------------------------------------------------------- /win32/php_gtk.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/php_gtk.dsw -------------------------------------------------------------------------------- /win32/php_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/php_win.c -------------------------------------------------------------------------------- /win32/php_win.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/php_win.dsp -------------------------------------------------------------------------------- /win32/php_win.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/php_win.rc -------------------------------------------------------------------------------- /win32/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/resource.h -------------------------------------------------------------------------------- /win32/template.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/php-gtk-src/HEAD/win32/template.rc --------------------------------------------------------------------------------