gtk3 2.2.5-x64-mingw32 → 3.0.0-x64-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +1 -0
- data/ext/gtk3/depend +0 -5
- data/ext/gtk3/extconf.rb +43 -53
- data/ext/gtk3/rb-gtk3-container.c +159 -0
- data/ext/gtk3/{rbgtk3util.h → rb-gtk3-private.h} +9 -9
- data/ext/gtk3/rb-gtk3-widget.c +71 -0
- data/ext/gtk3/rb-gtk3.c +407 -0
- data/ext/gtk3/{rbgtk-orientable.c → rb-gtk3.h} +10 -7
- data/extconf.rb +25 -9
- data/lib/2.0/gtk3.so +0 -0
- data/lib/2.1/gtk3.so +0 -0
- data/lib/2.2/gtk3.so +0 -0
- data/lib/gtk3.rb +70 -9
- data/lib/gtk3/about-dialog.rb +34 -0
- data/lib/gtk3/action-group.rb +131 -0
- data/lib/gtk3/action.rb +27 -0
- data/lib/gtk3/binding-set.rb +31 -0
- data/lib/gtk3/border.rb +28 -0
- data/lib/gtk3/box.rb +40 -0
- data/lib/gtk3/builder.rb +91 -0
- data/lib/gtk3/button.rb +53 -0
- data/lib/gtk3/calendar.rb +24 -0
- data/lib/gtk3/cell-layout.rb +31 -0
- data/{test/test_gtk_accel_group_entry.rb → lib/gtk3/clipboard.rb} +8 -7
- data/lib/gtk3/color-chooser-dialog.rb +27 -0
- data/lib/gtk3/combo-box-text.rb +30 -0
- data/lib/gtk3/combo-box.rb +55 -0
- data/lib/gtk3/container.rb +51 -0
- data/lib/gtk3/css-provider.rb +38 -0
- data/lib/gtk3/deprecated.rb +193 -99
- data/lib/gtk3/dialog.rb +65 -0
- data/lib/gtk3/file-chooser-dialog.rb +36 -0
- data/lib/gtk3/font-chooser-dialog.rb +27 -0
- data/lib/gtk3/gdk-drag-context.rb +29 -0
- data/lib/gtk3/gesture-multi-press.rb +31 -0
- data/lib/gtk3/icon-theme.rb +28 -0
- data/lib/gtk3/icon-view.rb +45 -0
- data/lib/gtk3/image.rb +113 -0
- data/lib/gtk3/label.rb +54 -0
- data/{test/test_gtk_tree_selection.rb → lib/gtk3/level-bar.rb} +13 -12
- data/lib/gtk3/list-store.rb +81 -0
- data/lib/gtk3/loader.rb +403 -0
- data/lib/gtk3/menu-item.rb +33 -0
- data/lib/gtk3/message-dialog.rb +49 -0
- data/lib/gtk3/paned.rb +37 -0
- data/lib/gtk3/radio-action.rb +28 -0
- data/lib/gtk3/radio-button.rb +49 -0
- data/lib/gtk3/recent-chooser-dialog.rb +38 -0
- data/lib/gtk3/scale-button.rb +35 -0
- data/{test/test_gtk_allocation.rb → lib/gtk3/scrolled-window.rb} +7 -7
- data/lib/gtk3/search-bar.rb +27 -0
- data/lib/gtk3/selection-data.rb +42 -0
- data/lib/gtk3/spin-button.rb +34 -0
- data/lib/gtk3/stack.rb +54 -0
- data/lib/gtk3/stock.rb +70 -0
- data/lib/gtk3/style-context.rb +26 -0
- data/lib/gtk3/style-properties.rb +29 -0
- data/lib/gtk3/target-entry.rb +27 -0
- data/lib/gtk3/target-list.rb +31 -0
- data/lib/gtk3/text-buffer.rb +165 -0
- data/lib/gtk3/text-iter.rb +39 -0
- data/lib/gtk3/text-tag-table.rb +31 -0
- data/lib/gtk3/toggle-action.rb +27 -0
- data/lib/gtk3/toggle-button.rb +35 -0
- data/lib/gtk3/tool-button.rb +36 -0
- data/lib/gtk3/tree-iter.rb +52 -0
- data/lib/gtk3/tree-model-filter.rb +45 -0
- data/lib/gtk3/tree-model.rb +51 -0
- data/lib/gtk3/tree-path.rb +29 -0
- data/lib/gtk3/tree-selection.rb +30 -0
- data/lib/gtk3/tree-store.rb +59 -0
- data/lib/gtk3/tree-view-column.rb +35 -0
- data/lib/gtk3/tree-view.rb +41 -0
- data/lib/gtk3/ui-manager.rb +35 -0
- data/lib/gtk3/version.rb +28 -0
- data/lib/gtk3/widget.rb +127 -0
- data/lib/gtk3/window.rb +29 -0
- data/sample/gtk-demo/TODO +69 -0
- data/sample/gtk-demo/application.ui +107 -0
- data/sample/gtk-demo/builder.rb +2 -2
- data/sample/gtk-demo/{button_box.rb → button-box.rb} +16 -17
- data/sample/gtk-demo/common.rb +1 -1
- data/sample/gtk-demo/css_accordion.rb +5 -5
- data/sample/gtk-demo/css_basics.css +22 -0
- data/sample/gtk-demo/css_basics.rb +103 -0
- data/sample/gtk-demo/dialog.rb +3 -3
- data/sample/gtk-demo/entry_completion.rb +1 -1
- data/sample/gtk-demo/hypertext.rb +1 -1
- data/sample/gtk-demo/main.rb +65 -91
- data/sample/gtk-demo/menus.rb +4 -4
- data/sample/gtk-demo/menus.ui +107 -0
- data/sample/gtk-demo/sizegroup.rb +1 -1
- data/sample/misc/aboutdialog.rb +10 -18
- data/sample/misc/aboutdialog2.rb +4 -16
- data/sample/misc/alpha-demo.rb +17 -16
- data/sample/misc/application.rb +31 -0
- data/sample/misc/assistant.rb +3 -5
- data/sample/misc/bindings.rb +64 -50
- data/sample/misc/builder-from-resource.rb +53 -0
- data/sample/misc/builder.rb +29 -0
- data/sample/misc/builder.ui +46 -0
- data/sample/misc/button.rb +18 -19
- data/sample/misc/button2.rb +5 -5
- data/sample/misc/buttonbox.rb +2 -4
- data/sample/misc/cairo-cursor.rb +37 -0
- data/sample/misc/cairo-pong.rb +17 -17
- data/sample/misc/calendar.rb +18 -18
- data/sample/misc/checkbutton.rb +3 -4
- data/sample/misc/colorselection.rb +10 -9
- data/sample/misc/{combo_check.rb → combo-check.rb} +1 -3
- data/sample/misc/combobox-from-cellrender.rb +48 -0
- data/sample/misc/combobox.rb +10 -10
- data/sample/misc/cursor.rb +5 -5
- data/sample/misc/dialog.rb +3 -4
- data/sample/misc/dialog2.rb +5 -6
- data/sample/misc/dnd.rb +27 -23
- data/sample/misc/dndtreeview.rb +16 -18
- data/sample/misc/drag-move.rb +3 -6
- data/sample/misc/drawing.rb +74 -86
- data/sample/misc/entry.rb +2 -4
- data/sample/misc/entrycompletion.rb +5 -5
- data/sample/misc/eventbox.rb +58 -0
- data/sample/misc/expander.rb +6 -5
- data/sample/misc/filechooser.rb +5 -7
- data/sample/misc/flowbox.rb +86 -0
- data/sample/misc/frame.rb +10 -12
- data/sample/misc/gdkscreen.rb +3 -3
- data/sample/misc/gtkglarea1.rb +114 -0
- data/sample/misc/gtkglarea2.rb +194 -0
- data/sample/misc/helloworld.rb +2 -5
- data/sample/misc/iconview.rb +9 -9
- data/sample/misc/image.rb +7 -6
- data/sample/misc/keyboard-grab.rb +34 -0
- data/sample/misc/label.rb +10 -11
- data/sample/misc/linkbutton.rb +3 -10
- data/sample/misc/list-store-usage.rb +96 -0
- data/sample/misc/listview.rb +9 -11
- data/sample/misc/menu.rb +45 -25
- data/sample/misc/{misc_button.rb → misc-button.rb} +15 -14
- data/sample/misc/mouse-gesture.rb +35 -42
- data/sample/misc/pango-layout.rb +100 -0
- data/sample/misc/pointer-grab.rb +36 -0
- data/sample/misc/print.rb +202 -201
- data/sample/misc/properties.rb +16 -14
- data/sample/misc/radiobutton.rb +18 -20
- data/sample/misc/recentchooserdialog.rb +8 -10
- data/sample/misc/rgtk+cairo.rb +26 -27
- data/sample/misc/scalebutton.rb +19 -7
- data/sample/misc/simple_window.gresource.xml +6 -0
- data/sample/misc/simple_window.ui +16 -0
- data/sample/misc/statusicon.rb +11 -14
- data/sample/misc/stock.rb +14 -11
- data/sample/misc/style-property.rb +76 -0
- data/sample/misc/t-gtkplug.rb +11 -14
- data/sample/misc/t-gtksocket.rb +19 -18
- data/sample/misc/template-from-resource.rb +59 -0
- data/sample/misc/template.gresource.xml +6 -0
- data/sample/misc/template.ui +16 -0
- data/sample/misc/textbuffer-serialize.rb +133 -0
- data/sample/misc/threads.rb +54 -13
- data/sample/misc/to-drawable.rb +34 -0
- data/sample/misc/togglebutton.rb +6 -8
- data/sample/misc/toolbar.rb +39 -30
- data/sample/misc/tooltips.rb +95 -104
- data/sample/misc/{tree_combo.rb → tree-combo.rb} +21 -27
- data/sample/misc/{tree_progress.rb → tree-progress.rb} +12 -17
- data/sample/misc/treemodelfilter.rb +13 -10
- data/sample/misc/treeview.rb +18 -20
- data/sample/misc/window.rb +2 -4
- data/sample/misc/xbm-cursor.rb +86 -0
- data/sample/tutorial/README.md +338 -0
- data/sample/tutorial/builder.ui +66 -0
- data/sample/tutorial/example-0.rb +32 -0
- data/sample/tutorial/example-1.rb +47 -0
- data/sample/tutorial/example-2.rb +68 -0
- data/sample/tutorial/example-4.rb +41 -0
- data/sample/tutorial/exampleapp.desktop +6 -0
- data/sample/tutorial/exampleapp.png +0 -0
- data/sample/tutorial/exampleapp1/exampleapp.rb +57 -0
- data/sample/tutorial/exampleapp2/exampleapp.gresource.xml +6 -0
- data/sample/tutorial/exampleapp2/exampleapp.rb +87 -0
- data/sample/tutorial/exampleapp2/window.ui +32 -0
- data/sample/tutorial/exampleapp3/exampleapp.gresource.xml +6 -0
- data/sample/tutorial/exampleapp3/exampleapp.rb +106 -0
- data/sample/tutorial/exampleapp3/window.ui +32 -0
- data/sample/tutorial/exampleapp4/app-menu.ui +18 -0
- data/sample/tutorial/exampleapp4/exampleapp.gresource.xml +7 -0
- data/sample/tutorial/exampleapp4/exampleapp.rb +124 -0
- data/sample/tutorial/exampleapp4/window.ui +32 -0
- data/sample/tutorial/exampleapp5/app-menu.ui +18 -0
- data/sample/tutorial/exampleapp5/exampleapp.gresource.xml +7 -0
- data/sample/tutorial/exampleapp5/exampleapp.rb +135 -0
- data/sample/tutorial/exampleapp5/org.gtk.exampleapp.gschema.xml +20 -0
- data/sample/tutorial/exampleapp5/window.ui +32 -0
- data/sample/tutorial/exampleapp6/app-menu.ui +18 -0
- data/sample/tutorial/exampleapp6/exampleapp.gresource.xml +8 -0
- data/sample/tutorial/exampleapp6/exampleapp.rb +168 -0
- data/sample/tutorial/exampleapp6/org.gtk.exampleapp.gschema.xml +20 -0
- data/sample/tutorial/exampleapp6/prefs.ui +70 -0
- data/sample/tutorial/exampleapp6/window.ui +32 -0
- data/sample/tutorial/exampleapp7/app-menu.ui +18 -0
- data/sample/tutorial/exampleapp7/exampleapp.gresource.xml +8 -0
- data/sample/tutorial/exampleapp7/exampleapp.rb +200 -0
- data/sample/tutorial/exampleapp7/org.gtk.exampleapp.gschema.xml +20 -0
- data/sample/tutorial/exampleapp7/prefs.ui +70 -0
- data/sample/tutorial/exampleapp7/window.ui +63 -0
- data/sample/tutorial/exampleapp8/app-menu.ui +18 -0
- data/sample/tutorial/exampleapp8/exampleapp.gresource.xml +9 -0
- data/sample/tutorial/exampleapp8/exampleapp.rb +247 -0
- data/sample/tutorial/exampleapp8/gears-menu.ui +12 -0
- data/sample/tutorial/exampleapp8/org.gtk.exampleapp.gschema.xml +25 -0
- data/sample/tutorial/exampleapp8/prefs.ui +70 -0
- data/sample/tutorial/exampleapp8/window.ui +100 -0
- data/test/fixture/Rakefile +32 -0
- data/test/fixture/gnome-logo-icon.png +0 -0
- data/test/fixture/image.gresource +0 -0
- data/test/fixture/image.gresource.xml +6 -0
- data/test/fixture/simple_window.gresource.xml +6 -0
- data/test/fixture/simple_window.ui +16 -0
- data/test/gtk-test-utils.rb +46 -4
- data/test/run-test.rb +9 -1
- data/test/{test_gc.rb → test-gc.rb} +0 -0
- data/test/{test_gtk_css_provider.rb → test-gdk-display.rb} +6 -8
- data/test/test-gdk-event.rb +24 -0
- data/test/test-gdk-screen.rb +42 -0
- data/test/{test_gtk_about_dialog.rb → test-gtk-about-dialog.rb} +0 -0
- data/test/test-gtk-accel-group.rb +23 -0
- data/test/{test_gtk_accel_key.rb → test-gtk-accel-key.rb} +0 -0
- data/test/{test_gtk_accessible.rb → test-gtk-accessible.rb} +0 -0
- data/test/{test_gtk_action_group.rb → test-gtk-action-bar.rb} +20 -23
- data/test/test-gtk-action-group.rb +48 -0
- data/test/test-gtk-action.rb +41 -0
- data/test/test-gtk-assistant.rb +44 -0
- data/test/{test_gtk_border.rb → test-gtk-border.rb} +0 -0
- data/test/test-gtk-box.rb +28 -0
- data/test/{test_gtk_buildable.rb → test-gtk-buildable.rb} +6 -6
- data/test/{test_gtk_builder.rb → test-gtk-builder.rb} +45 -11
- data/test/test-gtk-button.rb +54 -0
- data/test/test-gtk-cell-layout.rb +35 -0
- data/test/test-gtk-color-chooser-dialog.rb +41 -0
- data/test/test-gtk-combo-box-text.rb +34 -0
- data/test/test-gtk-combo-box.rb +97 -0
- data/test/test-gtk-container.rb +171 -0
- data/test/test-gtk-css-provider.rb +101 -0
- data/test/test-gtk-dialog.rb +74 -0
- data/test/{test_gtk_entry.rb → test-gtk-entry.rb} +0 -0
- data/test/test-gtk-event-controller.rb +35 -0
- data/test/test-gtk-file-chooser-dialog.rb +52 -0
- data/test/test-gtk-flow-box.rb +64 -0
- data/test/test-gtk-font-chooser-dialog.rb +41 -0
- data/test/test-gtk-gesture-multi-press.rb +31 -0
- data/test/test-gtk-gesture-pan.rb +32 -0
- data/test/test-gtk-gesture-single.rb +40 -0
- data/test/test-gtk-gesture.rb +29 -0
- data/test/{test_gtk_header_bar.rb → test-gtk-header-bar.rb} +15 -1
- data/test/{test_gtk_icon_theme.rb → test-gtk-icon-theme.rb} +0 -0
- data/test/{test_gtk_icon_view.rb → test-gtk-icon-view.rb} +24 -3
- data/test/test-gtk-image.rb +52 -0
- data/test/test-gtk-label.rb +39 -0
- data/test/{test_gtk_level_bar.rb → test-gtk-level-bar.rb} +12 -0
- data/test/test-gtk-list-store.rb +204 -0
- data/test/{test_gtk_menu_button.rb → test-gtk-menu-button.rb} +0 -0
- data/test/{test_gtk_menu_item.rb → test-gtk-menu-item.rb} +0 -0
- data/test/test-gtk-message-dialog.rb +62 -0
- data/test/test-gtk-paned.rb +109 -0
- data/test/test-gtk-places-sidebar.rb +68 -0
- data/test/test-gtk-radio-action.rb +45 -0
- data/test/test-gtk-radio-button.rb +82 -0
- data/test/test-gtk-recent-chooser-dialog.rb +53 -0
- data/test/{test_gtk_recent_data.rb → test-gtk-recent-data.rb} +0 -0
- data/test/{test_gtk_recent_filter_info.rb → test-gtk-recent-filter-info.rb} +1 -1
- data/test/test-gtk-recent-info.rb +37 -0
- data/test/{test_gtk_revealer.rb → test-gtk-revealer.rb} +0 -0
- data/test/test-gtk-scale-button.rb +56 -0
- data/test/{test_gtk_search_bar.rb → test-gtk-search-bar.rb} +1 -1
- data/test/{test_gtk_search_entry.rb → test-gtk-search-entry.rb} +0 -0
- data/test/test-gtk-spin-button.rb +45 -0
- data/test/{test_gtk_stack_switcher.rb → test-gtk-stack-switcher.rb} +0 -0
- data/test/{test_gtk_stack.rb → test-gtk-stack.rb} +8 -1
- data/test/test-gtk-stock.rb +26 -0
- data/test/{test_gtk_style_context.rb → test-gtk-style-context.rb} +0 -0
- data/test/{test_gtk_style_properties.rb → test-gtk-style-properties.rb} +0 -0
- data/test/test-gtk-style-provider.rb +25 -0
- data/test/test-gtk-switch.rb +34 -0
- data/test/test-gtk-target-entry.rb +37 -0
- data/test/test-gtk-text-buffer.rb +151 -0
- data/test/{test_gtk_container.rb → test-gtk-text-tag-table.rb} +13 -11
- data/test/test-gtk-toggle-action.rb +41 -0
- data/test/test-gtk-toggle-button.rb +39 -0
- data/test/test-gtk-tool-button.rb +53 -0
- data/test/test-gtk-tree-iter.rb +53 -0
- data/test/test-gtk-tree-model-filter.rb +55 -0
- data/test/test-gtk-tree-path.rb +42 -0
- data/test/test-gtk-tree-selection.rb +61 -0
- data/test/test-gtk-tree-view-column.rb +71 -0
- data/test/test-gtk-tree-view.rb +105 -0
- data/test/test-gtk-version.rb +47 -0
- data/test/test-gtk-widget.rb +148 -0
- data/test/{test_gtk.rb → test-gtk.rb} +0 -0
- metadata +256 -332
- data/ext/gtk3/conversions.c +0 -34
- data/ext/gtk3/gtk3.def +0 -10
- data/ext/gtk3/init.c +0 -34
- data/ext/gtk3/rbgtk-about-dialog.c +0 -113
- data/ext/gtk3/rbgtk-accel-group-entry.c +0 -94
- data/ext/gtk3/rbgtk-accel-group.c +0 -199
- data/ext/gtk3/rbgtk-accel-key.c +0 -120
- data/ext/gtk3/rbgtk-accel-label.c +0 -55
- data/ext/gtk3/rbgtk-accel-map.c +0 -135
- data/ext/gtk3/rbgtk-accelerator.c +0 -78
- data/ext/gtk3/rbgtk-accessible.c +0 -40
- data/ext/gtk3/rbgtk-action-bar.c +0 -73
- data/ext/gtk3/rbgtk-action-group.c +0 -467
- data/ext/gtk3/rbgtk-action.c +0 -205
- data/ext/gtk3/rbgtk-activatable.c +0 -30
- data/ext/gtk3/rbgtk-adjustment.c +0 -98
- data/ext/gtk3/rbgtk-alignment.c +0 -75
- data/ext/gtk3/rbgtk-allocation.c +0 -166
- data/ext/gtk3/rbgtk-app-chooser-button.c +0 -70
- data/ext/gtk3/rbgtk-app-chooser-dialog.c +0 -68
- data/ext/gtk3/rbgtk-app-chooser-widget.c +0 -40
- data/ext/gtk3/rbgtk-app-chooser.c +0 -47
- data/ext/gtk3/rbgtk-application.c +0 -69
- data/ext/gtk3/rbgtk-arrow.c +0 -56
- data/ext/gtk3/rbgtk-aspect-frame.c +0 -56
- data/ext/gtk3/rbgtk-assistant.c +0 -218
- data/ext/gtk3/rbgtk-bin.c +0 -42
- data/ext/gtk3/rbgtk-binding-set.c +0 -154
- data/ext/gtk3/rbgtk-border.c +0 -119
- data/ext/gtk3/rbgtk-box.c +0 -146
- data/ext/gtk3/rbgtk-buildable.c +0 -96
- data/ext/gtk3/rbgtk-builder.c +0 -166
- data/ext/gtk3/rbgtk-button-box.c +0 -87
- data/ext/gtk3/rbgtk-button.c +0 -93
- data/ext/gtk3/rbgtk-calendar.c +0 -118
- data/ext/gtk3/rbgtk-cell-editable.c +0 -57
- data/ext/gtk3/rbgtk-cell-layout.c +0 -144
- data/ext/gtk3/rbgtk-cell-renderer-accel.c +0 -41
- data/ext/gtk3/rbgtk-cell-renderer-combo.c +0 -38
- data/ext/gtk3/rbgtk-cell-renderer-pixbuf.c +0 -41
- data/ext/gtk3/rbgtk-cell-renderer-progress.c +0 -38
- data/ext/gtk3/rbgtk-cell-renderer-spin.c +0 -39
- data/ext/gtk3/rbgtk-cell-renderer-spinner.c +0 -38
- data/ext/gtk3/rbgtk-cell-renderer-text.c +0 -48
- data/ext/gtk3/rbgtk-cell-renderer-toggle.c +0 -39
- data/ext/gtk3/rbgtk-cell-renderer.c +0 -119
- data/ext/gtk3/rbgtk-cell-view.c +0 -95
- data/ext/gtk3/rbgtk-check-button.c +0 -64
- data/ext/gtk3/rbgtk-check-menu-item.c +0 -64
- data/ext/gtk3/rbgtk-clip-board.c +0 -389
- data/ext/gtk3/rbgtk-color-button.c +0 -55
- data/ext/gtk3/rbgtk-color-selection-dialog.c +0 -56
- data/ext/gtk3/rbgtk-color-selection.c +0 -219
- data/ext/gtk3/rbgtk-combo-box-text.c +0 -138
- data/ext/gtk3/rbgtk-combo-box.c +0 -147
- data/ext/gtk3/rbgtk-const.c +0 -79
- data/ext/gtk3/rbgtk-container.c +0 -788
- data/ext/gtk3/rbgtk-css-provider.c +0 -110
- data/ext/gtk3/rbgtk-dialog.c +0 -206
- data/ext/gtk3/rbgtk-drag-gdk-drag-context.c +0 -108
- data/ext/gtk3/rbgtk-drag.c +0 -93
- data/ext/gtk3/rbgtk-drawing-area.c +0 -42
- data/ext/gtk3/rbgtk-editable.c +0 -149
- data/ext/gtk3/rbgtk-entry-buffer.c +0 -87
- data/ext/gtk3/rbgtk-entry-completion.c +0 -122
- data/ext/gtk3/rbgtk-entry.c +0 -184
- data/ext/gtk3/rbgtk-event-box.c +0 -42
- data/ext/gtk3/rbgtk-expander.c +0 -49
- data/ext/gtk3/rbgtk-file-chooser-button.c +0 -50
- data/ext/gtk3/rbgtk-file-chooser-dialog.c +0 -62
- data/ext/gtk3/rbgtk-file-chooser-widget.c +0 -40
- data/ext/gtk3/rbgtk-file-chooser.c +0 -381
- data/ext/gtk3/rbgtk-file-filter.c +0 -128
- data/ext/gtk3/rbgtk-file-system-error.c +0 -48
- data/ext/gtk3/rbgtk-fixed.c +0 -61
- data/ext/gtk3/rbgtk-font-button.c +0 -49
- data/ext/gtk3/rbgtk-font-chooser-dialog.c +0 -56
- data/ext/gtk3/rbgtk-font-chooser-widget.c +0 -45
- data/ext/gtk3/rbgtk-font-chooser.c +0 -78
- data/ext/gtk3/rbgtk-frame.c +0 -69
- data/ext/gtk3/rbgtk-gdk-event.c +0 -38
- data/ext/gtk3/rbgtk-grid.c +0 -105
- data/ext/gtk3/rbgtk-handle-box.c +0 -45
- data/ext/gtk3/rbgtk-header-bar.c +0 -58
- data/ext/gtk3/rbgtk-hsv.c +0 -102
- data/ext/gtk3/rbgtk-icon-factory.c +0 -85
- data/ext/gtk3/rbgtk-icon-info.c +0 -115
- data/ext/gtk3/rbgtk-icon-set.c +0 -84
- data/ext/gtk3/rbgtk-icon-size.c +0 -91
- data/ext/gtk3/rbgtk-icon-source.c +0 -184
- data/ext/gtk3/rbgtk-icon-theme.c +0 -268
- data/ext/gtk3/rbgtk-icon-view.c +0 -295
- data/ext/gtk3/rbgtk-im-multicontext.c +0 -48
- data/ext/gtk3/rbgtk-image-menu-item.c +0 -67
- data/ext/gtk3/rbgtk-image.c +0 -162
- data/ext/gtk3/rbgtk-imcon-text-simple.c +0 -69
- data/ext/gtk3/rbgtk-imcon-text.c +0 -133
- data/ext/gtk3/rbgtk-infobar.c +0 -121
- data/ext/gtk3/rbgtk-invisible.c +0 -49
- data/ext/gtk3/rbgtk-label.c +0 -139
- data/ext/gtk3/rbgtk-layout.c +0 -93
- data/ext/gtk3/rbgtk-level-bar.c +0 -88
- data/ext/gtk3/rbgtk-link-button.c +0 -49
- data/ext/gtk3/rbgtk-list-store.c +0 -399
- data/ext/gtk3/rbgtk-lock-button.c +0 -50
- data/ext/gtk3/rbgtk-menu-button.c +0 -41
- data/ext/gtk3/rbgtk-menu-item.c +0 -95
- data/ext/gtk3/rbgtk-menu-shell.c +0 -106
- data/ext/gtk3/rbgtk-menu-tool-button.c +0 -81
- data/ext/gtk3/rbgtk-menu.c +0 -168
- data/ext/gtk3/rbgtk-menubar.c +0 -43
- data/ext/gtk3/rbgtk-message-dialog.c +0 -74
- data/ext/gtk3/rbgtk-misc.c +0 -70
- data/ext/gtk3/rbgtk-notebook.c +0 -383
- data/ext/gtk3/rbgtk-numerable-icon.c +0 -50
- data/ext/gtk3/rbgtk-overlay.c +0 -53
- data/ext/gtk3/rbgtk-page-setup-unix-dialog.c +0 -94
- data/ext/gtk3/rbgtk-page-setup.c +0 -195
- data/ext/gtk3/rbgtk-paned.c +0 -114
- data/ext/gtk3/rbgtk-paper-size.c +0 -179
- data/ext/gtk3/rbgtk-plug.c +0 -85
- data/ext/gtk3/rbgtk-print-context.c +0 -125
- data/ext/gtk3/rbgtk-print-job.c +0 -148
- data/ext/gtk3/rbgtk-print-operation-preview.c +0 -59
- data/ext/gtk3/rbgtk-print-operation.c +0 -149
- data/ext/gtk3/rbgtk-print-settings.c +0 -807
- data/ext/gtk3/rbgtk-print-unix-dialog.c +0 -90
- data/ext/gtk3/rbgtk-printer.c +0 -155
- data/ext/gtk3/rbgtk-progress-bar.c +0 -72
- data/ext/gtk3/rbgtk-radio-action.c +0 -122
- data/ext/gtk3/rbgtk-radio-button.c +0 -89
- data/ext/gtk3/rbgtk-radio-menu-item.c +0 -147
- data/ext/gtk3/rbgtk-radio-tool-button.c +0 -131
- data/ext/gtk3/rbgtk-range.c +0 -68
- data/ext/gtk3/rbgtk-recent-action.c +0 -64
- data/ext/gtk3/rbgtk-recent-chooser-dialog.c +0 -66
- data/ext/gtk3/rbgtk-recent-chooser-menu.c +0 -50
- data/ext/gtk3/rbgtk-recent-chooser-widget.c +0 -48
- data/ext/gtk3/rbgtk-recent-chooser.c +0 -198
- data/ext/gtk3/rbgtk-recent-data.c +0 -188
- data/ext/gtk3/rbgtk-recent-filter-info.c +0 -201
- data/ext/gtk3/rbgtk-recent-filter.c +0 -169
- data/ext/gtk3/rbgtk-recent-info.c +0 -213
- data/ext/gtk3/rbgtk-recent-manager.c +0 -134
- data/ext/gtk3/rbgtk-revealer.c +0 -42
- data/ext/gtk3/rbgtk-scale-button.c +0 -84
- data/ext/gtk3/rbgtk-scale.c +0 -97
- data/ext/gtk3/rbgtk-scrollable.c +0 -31
- data/ext/gtk3/rbgtk-scrollbar.c +0 -52
- data/ext/gtk3/rbgtk-scrolled-window.c +0 -122
- data/ext/gtk3/rbgtk-search-bar.c +0 -59
- data/ext/gtk3/rbgtk-search-entry.c +0 -42
- data/ext/gtk3/rbgtk-selection-data.c +0 -281
- data/ext/gtk3/rbgtk-selection.c +0 -168
- data/ext/gtk3/rbgtk-separator-menu-item.c +0 -39
- data/ext/gtk3/rbgtk-separator-tool-item.c +0 -38
- data/ext/gtk3/rbgtk-separator.c +0 -44
- data/ext/gtk3/rbgtk-settings.c +0 -229
- data/ext/gtk3/rbgtk-size-group.c +0 -66
- data/ext/gtk3/rbgtk-socket.c +0 -82
- data/ext/gtk3/rbgtk-spin-button.c +0 -132
- data/ext/gtk3/rbgtk-spinner.c +0 -55
- data/ext/gtk3/rbgtk-stack-switcher.c +0 -41
- data/ext/gtk3/rbgtk-stack.c +0 -106
- data/ext/gtk3/rbgtk-status-bar.c +0 -77
- data/ext/gtk3/rbgtk-status-icon.c +0 -122
- data/ext/gtk3/rbgtk-stock.c +0 -213
- data/ext/gtk3/rbgtk-style-context-gdk-screen.c +0 -61
- data/ext/gtk3/rbgtk-style-context.c +0 -411
- data/ext/gtk3/rbgtk-style-properties.c +0 -118
- data/ext/gtk3/rbgtk-style-provider.c +0 -67
- data/ext/gtk3/rbgtk-switch.c +0 -40
- data/ext/gtk3/rbgtk-table.c +0 -190
- data/ext/gtk3/rbgtk-target-list.c +0 -125
- data/ext/gtk3/rbgtk-tearoff-menu-item.c +0 -41
- data/ext/gtk3/rbgtk-text-appearance.c +0 -236
- data/ext/gtk3/rbgtk-text-attributes.c +0 -326
- data/ext/gtk3/rbgtk-text-buffer.c +0 -899
- data/ext/gtk3/rbgtk-text-child-anchor.c +0 -56
- data/ext/gtk3/rbgtk-text-iter.c +0 -732
- data/ext/gtk3/rbgtk-text-mark.c +0 -71
- data/ext/gtk3/rbgtk-text-tag-table.c +0 -96
- data/ext/gtk3/rbgtk-text-tag.c +0 -68
- data/ext/gtk3/rbgtk-text-view.c +0 -336
- data/ext/gtk3/rbgtk-theming-engine.c +0 -257
- data/ext/gtk3/rbgtk-toggle-action.c +0 -61
- data/ext/gtk3/rbgtk-toggle-button.c +0 -87
- data/ext/gtk3/rbgtk-toggle-tool-button.c +0 -61
- data/ext/gtk3/rbgtk-tool-button.c +0 -66
- data/ext/gtk3/rbgtk-tool-item.c +0 -200
- data/ext/gtk3/rbgtk-tool-itemgroup.c +0 -70
- data/ext/gtk3/rbgtk-tool-shell.c +0 -96
- data/ext/gtk3/rbgtk-toolbar.c +0 -118
- data/ext/gtk3/rbgtk-tooltip-gdk-display.c +0 -39
- data/ext/gtk3/rbgtk-tooltip.c +0 -100
- data/ext/gtk3/rbgtk-tree-dragdest.c +0 -28
- data/ext/gtk3/rbgtk-tree-dragsource.c +0 -28
- data/ext/gtk3/rbgtk-tree-iter.c +0 -258
- data/ext/gtk3/rbgtk-tree-model.c +0 -246
- data/ext/gtk3/rbgtk-tree-modelfilter.c +0 -197
- data/ext/gtk3/rbgtk-tree-modelsort.c +0 -111
- data/ext/gtk3/rbgtk-tree-path.c +0 -191
- data/ext/gtk3/rbgtk-tree-rowreference.c +0 -140
- data/ext/gtk3/rbgtk-tree-selection.c +0 -190
- data/ext/gtk3/rbgtk-tree-sortable.c +0 -122
- data/ext/gtk3/rbgtk-tree-store.c +0 -330
- data/ext/gtk3/rbgtk-tree-view-column.c +0 -256
- data/ext/gtk3/rbgtk-tree-view.c +0 -716
- data/ext/gtk3/rbgtk-ui-manager.c +0 -189
- data/ext/gtk3/rbgtk-viewport.c +0 -44
- data/ext/gtk3/rbgtk-volume-button.c +0 -41
- data/ext/gtk3/rbgtk-widget-path.c +0 -229
- data/ext/gtk3/rbgtk-widget.c +0 -1554
- data/ext/gtk3/rbgtk-window-group.c +0 -80
- data/ext/gtk3/rbgtk-window.c +0 -565
- data/ext/gtk3/rbgtk.c +0 -783
- data/ext/gtk3/rbgtk3.h +0 -90
- data/ext/gtk3/rbgtk3conversions.h +0 -439
- data/ext/gtk3/rbgtk3private.h +0 -300
- data/ext/gtk3/rbgtk3util.c +0 -67
- data/lib/gtk3/base.rb +0 -67
- data/sample/gtk-demo/appwindow.rb +0 -233
- data/sample/misc/composited-windows.rb +0 -113
- data/sample/misc/itemfactory.rb +0 -73
- data/sample/misc/itemfactory2.rb +0 -74
- data/sample/misc/keyboard_grab.rb +0 -29
- data/sample/misc/pangorenderer.rb +0 -66
- data/sample/misc/pointer_grab.rb +0 -34
- data/sample/misc/settings.rb +0 -41
- data/sample/misc/style_property.rb +0 -67
- data/sample/misc/style_property.rc +0 -19
- data/sample/misc/textbuffer_serialize.rb +0 -130
- data/sample/misc/to_drawable.rb +0 -42
- data/sample/misc/uimanager.rb +0 -148
- data/sample/misc/uimanager2.rb +0 -91
- data/sample/misc/uimanager2.xml +0 -36
- data/sample/misc/xbm_cursor.rb +0 -43
- data/sample/testgtk/3DRings.xpm +0 -116
- data/sample/testgtk/FilesQueue.xpm +0 -98
- data/sample/testgtk/Modeller.xpm +0 -117
- data/sample/testgtk/README +0 -14
- data/sample/testgtk/button.rb +0 -124
- data/sample/testgtk/buttonbox.rb +0 -100
- data/sample/testgtk/check-n.xpm +0 -21
- data/sample/testgtk/check-y.xpm +0 -21
- data/sample/testgtk/checkbutton.rb +0 -67
- data/sample/testgtk/circles.xbm +0 -46
- data/sample/testgtk/colorselect.rb +0 -33
- data/sample/testgtk/dialog.rb +0 -48
- data/sample/testgtk/entry.rb +0 -73
- data/sample/testgtk/filesel.rb +0 -65
- data/sample/testgtk/fontselection.rb +0 -56
- data/sample/testgtk/labels.rb +0 -74
- data/sample/testgtk/layout.rb +0 -108
- data/sample/testgtk/marble.xpm +0 -408
- data/sample/testgtk/menu.rb +0 -79
- data/sample/testgtk/notebook.rb +0 -280
- data/sample/testgtk/pixmap.rb +0 -58
- data/sample/testgtk/progressbar.rb +0 -173
- data/sample/testgtk/radiobutton.rb +0 -61
- data/sample/testgtk/range.rb +0 -65
- data/sample/testgtk/reparent.rb +0 -91
- data/sample/testgtk/sample.rb +0 -80
- data/sample/testgtk/savedposition.rb +0 -87
- data/sample/testgtk/scrolledwindow.rb +0 -67
- data/sample/testgtk/shapedwindow.rb +0 -99
- data/sample/testgtk/spinbutton.rb +0 -181
- data/sample/testgtk/statusbar.rb +0 -89
- data/sample/testgtk/test.xpm +0 -92
- data/sample/testgtk/testgtk.rb +0 -176
- data/sample/testgtk/testgtkrc +0 -146
- data/sample/testgtk/testgtkrc2 +0 -21
- data/sample/testgtk/togglebutton.rb +0 -53
- data/sample/testgtk/toolbar.rb +0 -82
- data/sample/testgtk/tooltips.rb +0 -41
- data/sample/testgtk/wmhints.rb +0 -40
- data/test/test_gtk_image.rb +0 -8
- data/test/test_gtk_list_store.rb +0 -105
- data/test/test_gtk_tree_path.rb +0 -20
- data/test/test_gtk_unix_print.rb +0 -14
- data/test/test_gtk_widget.rb +0 -24
data/ext/gtk3/rbgtk-event-box.c
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2002,2003 Ruby-GNOME2 Project Team
|
5
|
-
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
|
6
|
-
* Daisuke Kanda,
|
7
|
-
* Hiroshi Igarashi
|
8
|
-
*
|
9
|
-
* This library is free software; you can redistribute it and/or
|
10
|
-
* modify it under the terms of the GNU Lesser General Public
|
11
|
-
* License as published by the Free Software Foundation; either
|
12
|
-
* version 2.1 of the License, or (at your option) any later version.
|
13
|
-
*
|
14
|
-
* This library is distributed in the hope that it will be useful,
|
15
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
17
|
-
* Lesser General Public License for more details.
|
18
|
-
*
|
19
|
-
* You should have received a copy of the GNU Lesser General Public
|
20
|
-
* License along with this library; if not, write to the Free Software
|
21
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
22
|
-
* MA 02110-1301 USA
|
23
|
-
*/
|
24
|
-
|
25
|
-
#include "rbgtk3private.h"
|
26
|
-
|
27
|
-
#define RG_TARGET_NAMESPACE cEventBox
|
28
|
-
|
29
|
-
static VALUE
|
30
|
-
rg_initialize(VALUE self)
|
31
|
-
{
|
32
|
-
RBGTK_INITIALIZE(self, gtk_event_box_new());
|
33
|
-
return Qnil;
|
34
|
-
}
|
35
|
-
|
36
|
-
void
|
37
|
-
Init_gtk_eventbox(VALUE mGtk)
|
38
|
-
{
|
39
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_EVENT_BOX, "EventBox", mGtk);
|
40
|
-
|
41
|
-
RG_DEF_METHOD(initialize, 0);
|
42
|
-
}
|
data/ext/gtk3/rbgtk-expander.c
DELETED
@@ -1,49 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2004 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgtk3private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cExpander
|
25
|
-
#define _SELF(self) (RVAL2GTKEXPANDER(self))
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_initialize(int argc, VALUE *argv, VALUE self)
|
29
|
-
{
|
30
|
-
VALUE label, with_mnemonic;
|
31
|
-
GtkWidget* widget = NULL;
|
32
|
-
|
33
|
-
rb_scan_args(argc, argv, "11", &label, &with_mnemonic);
|
34
|
-
if (NIL_P(with_mnemonic) || ! RVAL2CBOOL(with_mnemonic)){
|
35
|
-
widget = gtk_expander_new(RVAL2CSTR(label));
|
36
|
-
} else {
|
37
|
-
widget = gtk_expander_new_with_mnemonic(RVAL2CSTR(label));
|
38
|
-
}
|
39
|
-
|
40
|
-
RBGTK_INITIALIZE(self, widget);
|
41
|
-
return Qnil;
|
42
|
-
}
|
43
|
-
|
44
|
-
void
|
45
|
-
Init_gtk_expander(VALUE mGtk)
|
46
|
-
{
|
47
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_EXPANDER, "Expander", mGtk);
|
48
|
-
RG_DEF_METHOD(initialize, -1);
|
49
|
-
}
|
@@ -1,50 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2005 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgtk3private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cFileChooserButton
|
25
|
-
|
26
|
-
static VALUE
|
27
|
-
rg_initialize(int argc, VALUE *argv, VALUE self)
|
28
|
-
{
|
29
|
-
VALUE title, action;
|
30
|
-
GtkWidget* widget;
|
31
|
-
|
32
|
-
rb_scan_args(argc, argv, "11", &title, &action);
|
33
|
-
|
34
|
-
if (TYPE(title) == T_STRING) {
|
35
|
-
widget = gtk_file_chooser_button_new(RVAL2CSTR(title),
|
36
|
-
RVAL2GTKFILECHOOSERACTION(action));
|
37
|
-
} else {
|
38
|
-
widget = gtk_file_chooser_button_new_with_dialog(RVAL2GTKWIDGET(title));
|
39
|
-
}
|
40
|
-
|
41
|
-
RBGTK_INITIALIZE(self, widget);
|
42
|
-
return Qnil;
|
43
|
-
}
|
44
|
-
|
45
|
-
void
|
46
|
-
Init_gtk_filechooserbutton(VALUE mGtk)
|
47
|
-
{
|
48
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_FILE_CHOOSER_BUTTON, "FileChooserButton", mGtk);
|
49
|
-
RG_DEF_METHOD(initialize, -1);
|
50
|
-
}
|
@@ -1,62 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2004 Seiya Nishizawa, Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgtk3private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cFileChooserDialog
|
25
|
-
#define _SELF(self) RVAL2GTKFILECHOOSERDIALOG(self)
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_initialize(int argc, VALUE *argv, VALUE self)
|
29
|
-
{
|
30
|
-
VALUE options, rb_title, rb_parent, rb_action, rb_button_ary;
|
31
|
-
const gchar *title;
|
32
|
-
GtkWindow *parent;
|
33
|
-
GtkFileChooserAction action;
|
34
|
-
GtkWidget *dialog;
|
35
|
-
|
36
|
-
rb_scan_args(argc, argv, "01", &options);
|
37
|
-
rbg_scan_options(options,
|
38
|
-
"title", &rb_title,
|
39
|
-
"parent", &rb_parent,
|
40
|
-
"action", &rb_action,
|
41
|
-
"buttons", &rb_button_ary,
|
42
|
-
NULL);
|
43
|
-
title = RVAL2CSTR_ACCEPT_NIL(rb_title);
|
44
|
-
parent = NIL_P(rb_parent) ? NULL : RVAL2GTKWINDOW(rb_parent);
|
45
|
-
action = NIL_P(rb_action) ? GTK_FILE_CHOOSER_ACTION_OPEN : RVAL2GTKFILECHOOSERACTION(rb_action);
|
46
|
-
|
47
|
-
dialog = gtk_file_chooser_dialog_new(title, parent, action, NULL, NULL);
|
48
|
-
RBGTK_INITIALIZE(self, dialog);
|
49
|
-
if (!NIL_P(rb_button_ary))
|
50
|
-
rb_funcall2(self, rb_intern("add_buttons"),
|
51
|
-
RARRAY_LEN(rb_button_ary), RARRAY_PTR(rb_button_ary));
|
52
|
-
|
53
|
-
return Qnil;
|
54
|
-
}
|
55
|
-
|
56
|
-
void
|
57
|
-
Init_gtk_file_chooser_dialog(VALUE mGtk)
|
58
|
-
{
|
59
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_FILE_CHOOSER_DIALOG, "FileChooserDialog", mGtk);
|
60
|
-
|
61
|
-
RG_DEF_METHOD(initialize, -1);
|
62
|
-
}
|
@@ -1,40 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2004 Seiya Nishizawa, Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgtk3private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cFileChooserWidget
|
25
|
-
|
26
|
-
static VALUE
|
27
|
-
rg_initialize(VALUE self, VALUE action)
|
28
|
-
{
|
29
|
-
RBGTK_INITIALIZE(self, gtk_file_chooser_widget_new(RVAL2GTKFILECHOOSERACTION(action)));
|
30
|
-
|
31
|
-
return Qnil;
|
32
|
-
}
|
33
|
-
|
34
|
-
void
|
35
|
-
Init_gtk_file_chooser_widget(VALUE mGtk)
|
36
|
-
{
|
37
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_FILE_CHOOSER_WIDGET, "FileChooserWidget", mGtk);
|
38
|
-
|
39
|
-
RG_DEF_METHOD(initialize, 1);
|
40
|
-
}
|
@@ -1,381 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2005-2013 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2004 Seiya Nishizawa, Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbgtk3private.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE mFileChooser
|
25
|
-
#define _SELF(self) RVAL2GTKFILECHOOSER(self)
|
26
|
-
|
27
|
-
#ifdef HAVE_GTK_GTKFILESYSTEM_H
|
28
|
-
/* For error handling */
|
29
|
-
# define GTK_FILE_SYSTEM_ENABLE_UNSUPPORTED
|
30
|
-
# include <gtk/gtkfilesystem.h>
|
31
|
-
#endif
|
32
|
-
|
33
|
-
static VALUE
|
34
|
-
gslist2ary_free(GSList* list)
|
35
|
-
{
|
36
|
-
GSList* l;
|
37
|
-
VALUE ary = rb_ary_new();
|
38
|
-
for (l = list; l != NULL; l = g_slist_next(l)) {
|
39
|
-
rb_ary_push(ary, CSTR2RVAL_FREE(l->data));
|
40
|
-
}
|
41
|
-
g_slist_free(list);
|
42
|
-
return ary;
|
43
|
-
}
|
44
|
-
|
45
|
-
static VALUE
|
46
|
-
rg_set_current_name(VALUE self, VALUE name)
|
47
|
-
{
|
48
|
-
/* doc says the awaited string is UTF-8, so use RVAL2CSTR */
|
49
|
-
gtk_file_chooser_set_current_name(_SELF(self), RVAL2CSTR(name));
|
50
|
-
return self;
|
51
|
-
}
|
52
|
-
|
53
|
-
static VALUE
|
54
|
-
rg_filename(VALUE self)
|
55
|
-
{
|
56
|
-
return CSTRFILENAME2RVAL_FREE(gtk_file_chooser_get_filename(_SELF(self)));
|
57
|
-
}
|
58
|
-
|
59
|
-
static VALUE
|
60
|
-
rg_set_filename(VALUE self, VALUE rbfilename)
|
61
|
-
{
|
62
|
-
gchar *filename = RVAL2CSTRFILENAME(rbfilename);
|
63
|
-
gboolean ret = gtk_file_chooser_set_filename(_SELF(self), filename);
|
64
|
-
g_free(filename);
|
65
|
-
if (!ret)
|
66
|
-
rb_raise(rb_eRuntimeError, "Can't set filename");
|
67
|
-
|
68
|
-
return self;
|
69
|
-
}
|
70
|
-
|
71
|
-
static VALUE
|
72
|
-
rg_select_filename(VALUE self, VALUE rbfilename)
|
73
|
-
{
|
74
|
-
gchar *filename = RVAL2CSTRFILENAME(rbfilename);
|
75
|
-
gboolean ret = gtk_file_chooser_select_filename(_SELF(self), filename);
|
76
|
-
g_free(filename);
|
77
|
-
|
78
|
-
return CBOOL2RVAL(ret);
|
79
|
-
}
|
80
|
-
|
81
|
-
static VALUE
|
82
|
-
rg_unselect_filename(VALUE self, VALUE rbfilename)
|
83
|
-
{
|
84
|
-
gchar *filename = RVAL2CSTRFILENAME(rbfilename);
|
85
|
-
gtk_file_chooser_unselect_filename(_SELF(self), filename);
|
86
|
-
g_free(filename);
|
87
|
-
|
88
|
-
return self;
|
89
|
-
}
|
90
|
-
|
91
|
-
static VALUE
|
92
|
-
rg_select_all(VALUE self)
|
93
|
-
{
|
94
|
-
gtk_file_chooser_select_all(_SELF(self));
|
95
|
-
return self;
|
96
|
-
}
|
97
|
-
|
98
|
-
static VALUE
|
99
|
-
rg_unselect_all(VALUE self)
|
100
|
-
{
|
101
|
-
gtk_file_chooser_unselect_all(_SELF(self));
|
102
|
-
return self;
|
103
|
-
}
|
104
|
-
|
105
|
-
static VALUE
|
106
|
-
rg_filenames(VALUE self)
|
107
|
-
{
|
108
|
-
return FILENAMEGSLIST2RVAL_FREE(gtk_file_chooser_get_filenames(_SELF(self)),
|
109
|
-
g_slist_free, g_free);
|
110
|
-
}
|
111
|
-
|
112
|
-
static VALUE
|
113
|
-
rg_set_current_folder(VALUE self, VALUE filename)
|
114
|
-
{
|
115
|
-
gboolean ret = gtk_file_chooser_set_current_folder(_SELF(self), RVAL2CSTR(filename));
|
116
|
-
if (! ret) rb_raise(rb_eRuntimeError, "Can't set current folder");
|
117
|
-
return self;
|
118
|
-
}
|
119
|
-
|
120
|
-
static VALUE
|
121
|
-
rg_current_folder(VALUE self)
|
122
|
-
{
|
123
|
-
return CSTR2RVAL_FREE(gtk_file_chooser_get_current_folder(_SELF(self)));
|
124
|
-
}
|
125
|
-
|
126
|
-
static VALUE
|
127
|
-
rg_uri(VALUE self)
|
128
|
-
{
|
129
|
-
return CSTR2RVAL_FREE(gtk_file_chooser_get_uri(_SELF(self)));
|
130
|
-
}
|
131
|
-
|
132
|
-
static VALUE
|
133
|
-
rg_set_uri(VALUE self, VALUE uri)
|
134
|
-
{
|
135
|
-
gboolean ret = gtk_file_chooser_set_uri(_SELF(self), RVAL2CSTR(uri));
|
136
|
-
if (! ret) rb_raise(rb_eRuntimeError, "Can't set uri");
|
137
|
-
return self;
|
138
|
-
}
|
139
|
-
|
140
|
-
static VALUE
|
141
|
-
rg_select_uri(VALUE self, VALUE uri)
|
142
|
-
{
|
143
|
-
return CBOOL2RVAL(gtk_file_chooser_select_uri(_SELF(self), RVAL2CSTR(uri)));
|
144
|
-
}
|
145
|
-
|
146
|
-
static VALUE
|
147
|
-
rg_unselect_uri(VALUE self, VALUE uri)
|
148
|
-
{
|
149
|
-
gtk_file_chooser_unselect_uri(_SELF(self), RVAL2CSTR(uri));
|
150
|
-
return self;
|
151
|
-
}
|
152
|
-
|
153
|
-
static VALUE
|
154
|
-
rg_uris(VALUE self)
|
155
|
-
{
|
156
|
-
return gslist2ary_free(gtk_file_chooser_get_uris(_SELF(self)));
|
157
|
-
}
|
158
|
-
|
159
|
-
static VALUE
|
160
|
-
rg_set_current_folder_uri(VALUE self, VALUE uri)
|
161
|
-
{
|
162
|
-
gboolean ret = gtk_file_chooser_set_current_folder_uri(_SELF(self), RVAL2CSTR(uri));
|
163
|
-
if (! ret) rb_raise(rb_eRuntimeError, "Can't set current folder uri");
|
164
|
-
return self;
|
165
|
-
}
|
166
|
-
|
167
|
-
static VALUE
|
168
|
-
rg_current_folder_uri(VALUE self)
|
169
|
-
{
|
170
|
-
return CSTR2RVAL_FREE(gtk_file_chooser_get_current_folder_uri(_SELF(self)));
|
171
|
-
}
|
172
|
-
|
173
|
-
static VALUE
|
174
|
-
rg_preview_filename(VALUE self)
|
175
|
-
{
|
176
|
-
return CSTR2RVAL_FREE(gtk_file_chooser_get_preview_filename(_SELF(self)));
|
177
|
-
}
|
178
|
-
|
179
|
-
static VALUE
|
180
|
-
rg_preview_uri(VALUE self)
|
181
|
-
{
|
182
|
-
return CSTR2RVAL_FREE(gtk_file_chooser_get_preview_uri(_SELF(self)));
|
183
|
-
}
|
184
|
-
|
185
|
-
static VALUE
|
186
|
-
rg_add_filter(VALUE self, VALUE filter)
|
187
|
-
{
|
188
|
-
gtk_file_chooser_add_filter(_SELF(self), RVAL2GTKFILEFILTER(filter));
|
189
|
-
return self;
|
190
|
-
}
|
191
|
-
|
192
|
-
static VALUE
|
193
|
-
rg_remove_filter(VALUE self, VALUE filter)
|
194
|
-
{
|
195
|
-
gtk_file_chooser_remove_filter(_SELF(self), RVAL2GTKFILEFILTER(filter));
|
196
|
-
return self;
|
197
|
-
}
|
198
|
-
|
199
|
-
static VALUE
|
200
|
-
rg_filters(VALUE self)
|
201
|
-
{
|
202
|
-
return GOBJGSLIST2RVAL_FREE(gtk_file_chooser_list_filters(_SELF(self)),
|
203
|
-
g_slist_free, NULL);
|
204
|
-
}
|
205
|
-
|
206
|
-
static VALUE
|
207
|
-
rg_add_shortcut_folder(VALUE self, VALUE rbfolder)
|
208
|
-
{
|
209
|
-
gchar *folder = RVAL2CSTRFILENAME(rbfolder);
|
210
|
-
GError *error = NULL;
|
211
|
-
gboolean ret = gtk_file_chooser_add_shortcut_folder(_SELF(self), folder, &error);
|
212
|
-
g_free(folder);
|
213
|
-
if (!ret)
|
214
|
-
RAISE_GERROR(error);
|
215
|
-
|
216
|
-
return self;
|
217
|
-
}
|
218
|
-
|
219
|
-
static VALUE
|
220
|
-
rg_remove_shortcut_folder(VALUE self, VALUE rbfolder)
|
221
|
-
{
|
222
|
-
gchar *folder = RVAL2CSTRFILENAME(rbfolder);
|
223
|
-
GError *error = NULL;
|
224
|
-
gboolean ret = gtk_file_chooser_remove_shortcut_folder(_SELF(self), folder, &error);
|
225
|
-
g_free(folder);
|
226
|
-
if (!ret)
|
227
|
-
RAISE_GERROR(error);
|
228
|
-
|
229
|
-
return self;
|
230
|
-
}
|
231
|
-
|
232
|
-
static VALUE
|
233
|
-
rg_shortcut_folders(VALUE self)
|
234
|
-
{
|
235
|
-
return FILENAMEGSLIST2RVAL_FREE(gtk_file_chooser_list_shortcut_folders(_SELF(self)),
|
236
|
-
g_slist_free, g_free);
|
237
|
-
}
|
238
|
-
|
239
|
-
static VALUE
|
240
|
-
rg_add_shortcut_folder_uri(VALUE self, VALUE uri)
|
241
|
-
{
|
242
|
-
GError *error = NULL;
|
243
|
-
if (! gtk_file_chooser_add_shortcut_folder_uri(_SELF(self), RVAL2CSTR(uri), &error))
|
244
|
-
RAISE_GERROR(error);
|
245
|
-
return self;
|
246
|
-
}
|
247
|
-
|
248
|
-
static VALUE
|
249
|
-
rg_remove_shortcut_folder_uri(VALUE self, VALUE uri)
|
250
|
-
{
|
251
|
-
GError *error = NULL;
|
252
|
-
if (! gtk_file_chooser_remove_shortcut_folder_uri(_SELF(self), RVAL2CSTR(uri), &error))
|
253
|
-
RAISE_GERROR(error);
|
254
|
-
return self;
|
255
|
-
}
|
256
|
-
|
257
|
-
static VALUE
|
258
|
-
rg_shortcut_folder_uris(VALUE self)
|
259
|
-
{
|
260
|
-
return gslist2ary_free(gtk_file_chooser_list_shortcut_folder_uris(_SELF(self)));
|
261
|
-
}
|
262
|
-
|
263
|
-
static VALUE
|
264
|
-
rg_current_folder_file(VALUE self)
|
265
|
-
{
|
266
|
-
return GOBJ2RVAL(gtk_file_chooser_get_current_folder_file(_SELF(self)));
|
267
|
-
}
|
268
|
-
|
269
|
-
static VALUE
|
270
|
-
rg_file(VALUE self)
|
271
|
-
{
|
272
|
-
return GOBJ2RVAL_UNREF(gtk_file_chooser_get_file(_SELF(self)));
|
273
|
-
}
|
274
|
-
|
275
|
-
static VALUE
|
276
|
-
rg_files(VALUE self)
|
277
|
-
{
|
278
|
-
return GOBJGSLIST2RVAL_FREE(gtk_file_chooser_get_files(_SELF(self)),
|
279
|
-
g_slist_free, g_object_unref);
|
280
|
-
}
|
281
|
-
|
282
|
-
static VALUE
|
283
|
-
rg_preview_file(VALUE self)
|
284
|
-
{
|
285
|
-
return GOBJ2RVAL_UNREF(gtk_file_chooser_get_preview_file(_SELF(self)));
|
286
|
-
}
|
287
|
-
|
288
|
-
static VALUE
|
289
|
-
rg_select_file(VALUE self, VALUE file)
|
290
|
-
{
|
291
|
-
GError *error = NULL;
|
292
|
-
|
293
|
-
gtk_file_chooser_select_file(_SELF(self), RVAL2GFILE(file), &error);
|
294
|
-
if (error)
|
295
|
-
RAISE_GERROR(error);
|
296
|
-
|
297
|
-
return self;
|
298
|
-
}
|
299
|
-
|
300
|
-
static VALUE
|
301
|
-
rg_set_current_folder_file(VALUE self, VALUE file)
|
302
|
-
{
|
303
|
-
gboolean result;
|
304
|
-
GError *error = NULL;
|
305
|
-
|
306
|
-
result = gtk_file_chooser_set_current_folder_file(_SELF(self), RVAL2GFILE(file), &error);
|
307
|
-
if (error)
|
308
|
-
RAISE_GERROR(error);
|
309
|
-
|
310
|
-
return CBOOL2RVAL(result);
|
311
|
-
}
|
312
|
-
|
313
|
-
static VALUE
|
314
|
-
rg_set_file(VALUE self, VALUE file)
|
315
|
-
{
|
316
|
-
GError *error = NULL;
|
317
|
-
|
318
|
-
gtk_file_chooser_set_file(_SELF(self), RVAL2GFILE(file), &error);
|
319
|
-
if (error)
|
320
|
-
RAISE_GERROR(error);
|
321
|
-
|
322
|
-
return self;
|
323
|
-
}
|
324
|
-
|
325
|
-
static VALUE
|
326
|
-
rg_unselect_file(VALUE self, VALUE file)
|
327
|
-
{
|
328
|
-
gtk_file_chooser_unselect_file(_SELF(self), RVAL2GFILE(file));
|
329
|
-
|
330
|
-
return self;
|
331
|
-
}
|
332
|
-
|
333
|
-
void
|
334
|
-
Init_gtk_file_chooser(VALUE mGtk)
|
335
|
-
{
|
336
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_INTERFACE(GTK_TYPE_FILE_CHOOSER, "FileChooser", mGtk);
|
337
|
-
|
338
|
-
RG_DEF_METHOD(set_current_name, 1);
|
339
|
-
RG_DEF_METHOD(set_filename, 1);
|
340
|
-
RG_DEF_METHOD(filename, 0);
|
341
|
-
RG_DEF_METHOD(select_filename, 1);
|
342
|
-
RG_DEF_METHOD(unselect_filename, 1);
|
343
|
-
RG_DEF_METHOD(select_all, 0);
|
344
|
-
RG_DEF_METHOD(unselect_all, 0);
|
345
|
-
RG_DEF_METHOD(filenames, 0);
|
346
|
-
RG_DEF_METHOD(set_current_folder, 1);
|
347
|
-
RG_DEF_METHOD(current_folder, 0);
|
348
|
-
RG_DEF_METHOD(set_uri, 1);
|
349
|
-
RG_DEF_METHOD(uri, 0);
|
350
|
-
RG_DEF_METHOD(select_uri, 1);
|
351
|
-
RG_DEF_METHOD(unselect_uri, 1);
|
352
|
-
RG_DEF_METHOD(uris, 0);
|
353
|
-
RG_DEF_METHOD(set_current_folder_uri, 1);
|
354
|
-
RG_DEF_METHOD(current_folder_uri, 0);
|
355
|
-
RG_DEF_METHOD(preview_filename, 0);
|
356
|
-
RG_DEF_METHOD(preview_uri, 0);
|
357
|
-
RG_DEF_METHOD(add_filter, 1);
|
358
|
-
RG_DEF_METHOD(remove_filter, 1);
|
359
|
-
RG_DEF_METHOD(filters, 0);
|
360
|
-
RG_DEF_METHOD(add_shortcut_folder, 1);
|
361
|
-
RG_DEF_METHOD(remove_shortcut_folder, 1);
|
362
|
-
RG_DEF_METHOD(shortcut_folders, 0);
|
363
|
-
RG_DEF_METHOD(add_shortcut_folder_uri, 1);
|
364
|
-
RG_DEF_METHOD(remove_shortcut_folder_uri, 1);
|
365
|
-
RG_DEF_METHOD(shortcut_folder_uris, 0);
|
366
|
-
RG_DEF_METHOD(current_folder_file, 0);
|
367
|
-
RG_DEF_METHOD(file, 0);
|
368
|
-
RG_DEF_METHOD(files, 0);
|
369
|
-
RG_DEF_METHOD(preview_file, 0);
|
370
|
-
RG_DEF_METHOD(select_file, 1);
|
371
|
-
RG_DEF_METHOD(set_current_folder_file, 1);
|
372
|
-
RG_DEF_METHOD(set_file, 1);
|
373
|
-
RG_DEF_METHOD(unselect_file, 1);
|
374
|
-
|
375
|
-
G_DEF_CLASS(GTK_TYPE_FILE_CHOOSER_ACTION, "Action", RG_TARGET_NAMESPACE);
|
376
|
-
G_DEF_ERROR(GTK_FILE_CHOOSER_ERROR, "FileChooserError", mGtk, rb_eRuntimeError,
|
377
|
-
GTK_TYPE_FILE_CHOOSER_ERROR);
|
378
|
-
G_DEF_CLASS(GTK_TYPE_FILE_CHOOSER_CONFIRMATION, "Confirmation", RG_TARGET_NAMESPACE);
|
379
|
-
|
380
|
-
G_DEF_CLASS3("GtkFileChooserEmbed", "FileChooserEmbed", mGtk);
|
381
|
-
}
|