gtk3 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Rakefile +20 -0
- data/ext/gtk3/conversions.c +34 -0
- data/ext/gtk3/depend +11 -0
- data/ext/gtk3/extconf.rb +99 -0
- data/ext/gtk3/gtk3.def +10 -0
- data/ext/gtk3/init.c +34 -0
- data/ext/gtk3/rbgtk-about-dialog.c +113 -0
- data/ext/gtk3/rbgtk-accel-group-entry.c +94 -0
- data/ext/gtk3/rbgtk-accel-group.c +199 -0
- data/ext/gtk3/rbgtk-accel-key.c +120 -0
- data/ext/gtk3/rbgtk-accel-label.c +55 -0
- data/ext/gtk3/rbgtk-accel-map.c +135 -0
- data/ext/gtk3/rbgtk-accelerator.c +78 -0
- data/ext/gtk3/rbgtk-accessible.c +40 -0
- data/ext/gtk3/rbgtk-action-bar.c +73 -0
- data/ext/gtk3/rbgtk-action-group.c +467 -0
- data/ext/gtk3/rbgtk-action.c +205 -0
- data/ext/gtk3/rbgtk-activatable.c +30 -0
- data/ext/gtk3/rbgtk-adjustment.c +98 -0
- data/ext/gtk3/rbgtk-alignment.c +75 -0
- data/ext/gtk3/rbgtk-allocation.c +166 -0
- data/ext/gtk3/rbgtk-app-chooser-button.c +70 -0
- data/ext/gtk3/rbgtk-app-chooser-dialog.c +68 -0
- data/ext/gtk3/rbgtk-app-chooser-widget.c +40 -0
- data/ext/gtk3/rbgtk-app-chooser.c +47 -0
- data/ext/gtk3/rbgtk-application.c +69 -0
- data/ext/gtk3/rbgtk-arrow.c +56 -0
- data/ext/gtk3/rbgtk-aspect-frame.c +56 -0
- data/ext/gtk3/rbgtk-assistant.c +218 -0
- data/ext/gtk3/rbgtk-bin.c +42 -0
- data/ext/gtk3/rbgtk-binding-set.c +154 -0
- data/ext/gtk3/rbgtk-border.c +119 -0
- data/ext/gtk3/rbgtk-box.c +146 -0
- data/ext/gtk3/rbgtk-buildable.c +96 -0
- data/ext/gtk3/rbgtk-builder.c +166 -0
- data/ext/gtk3/rbgtk-button-box.c +87 -0
- data/ext/gtk3/rbgtk-button.c +93 -0
- data/ext/gtk3/rbgtk-calendar.c +118 -0
- data/ext/gtk3/rbgtk-cell-editable.c +57 -0
- data/ext/gtk3/rbgtk-cell-layout.c +144 -0
- data/ext/gtk3/rbgtk-cell-renderer-accel.c +41 -0
- data/ext/gtk3/rbgtk-cell-renderer-combo.c +38 -0
- data/ext/gtk3/rbgtk-cell-renderer-pixbuf.c +41 -0
- data/ext/gtk3/rbgtk-cell-renderer-progress.c +38 -0
- data/ext/gtk3/rbgtk-cell-renderer-spin.c +39 -0
- data/ext/gtk3/rbgtk-cell-renderer-spinner.c +38 -0
- data/ext/gtk3/rbgtk-cell-renderer-text.c +48 -0
- data/ext/gtk3/rbgtk-cell-renderer-toggle.c +39 -0
- data/ext/gtk3/rbgtk-cell-renderer.c +119 -0
- data/ext/gtk3/rbgtk-cell-view.c +95 -0
- data/ext/gtk3/rbgtk-check-button.c +64 -0
- data/ext/gtk3/rbgtk-check-menu-item.c +64 -0
- data/ext/gtk3/rbgtk-clip-board.c +389 -0
- data/ext/gtk3/rbgtk-color-button.c +55 -0
- data/ext/gtk3/rbgtk-color-selection-dialog.c +56 -0
- data/ext/gtk3/rbgtk-color-selection.c +219 -0
- data/ext/gtk3/rbgtk-combo-box-text.c +138 -0
- data/ext/gtk3/rbgtk-combo-box.c +147 -0
- data/ext/gtk3/rbgtk-const.c +79 -0
- data/ext/gtk3/rbgtk-container.c +788 -0
- data/ext/gtk3/rbgtk-css-provider.c +110 -0
- data/ext/gtk3/rbgtk-dialog.c +206 -0
- data/ext/gtk3/rbgtk-drag-gdk-drag-context.c +108 -0
- data/ext/gtk3/rbgtk-drag.c +93 -0
- data/ext/gtk3/rbgtk-drawing-area.c +42 -0
- data/ext/gtk3/rbgtk-editable.c +149 -0
- data/ext/gtk3/rbgtk-entry-buffer.c +87 -0
- data/ext/gtk3/rbgtk-entry-completion.c +122 -0
- data/ext/gtk3/rbgtk-entry.c +184 -0
- data/ext/gtk3/rbgtk-event-box.c +42 -0
- data/ext/gtk3/rbgtk-expander.c +49 -0
- data/ext/gtk3/rbgtk-file-chooser-button.c +50 -0
- data/ext/gtk3/rbgtk-file-chooser-dialog.c +62 -0
- data/ext/gtk3/rbgtk-file-chooser-widget.c +40 -0
- data/ext/gtk3/rbgtk-file-chooser.c +381 -0
- data/ext/gtk3/rbgtk-file-filter.c +128 -0
- data/ext/gtk3/rbgtk-file-system-error.c +48 -0
- data/ext/gtk3/rbgtk-fixed.c +61 -0
- data/ext/gtk3/rbgtk-font-button.c +49 -0
- data/ext/gtk3/rbgtk-font-chooser-dialog.c +56 -0
- data/ext/gtk3/rbgtk-font-chooser-widget.c +45 -0
- data/ext/gtk3/rbgtk-font-chooser.c +78 -0
- data/ext/gtk3/rbgtk-frame.c +69 -0
- data/ext/gtk3/rbgtk-gdk-event.c +38 -0
- data/ext/gtk3/rbgtk-grid.c +105 -0
- data/ext/gtk3/rbgtk-handle-box.c +45 -0
- data/ext/gtk3/rbgtk-header-bar.c +58 -0
- data/ext/gtk3/rbgtk-hsv.c +102 -0
- data/ext/gtk3/rbgtk-icon-factory.c +85 -0
- data/ext/gtk3/rbgtk-icon-info.c +115 -0
- data/ext/gtk3/rbgtk-icon-set.c +84 -0
- data/ext/gtk3/rbgtk-icon-size.c +91 -0
- data/ext/gtk3/rbgtk-icon-source.c +184 -0
- data/ext/gtk3/rbgtk-icon-theme.c +268 -0
- data/ext/gtk3/rbgtk-icon-view.c +295 -0
- data/ext/gtk3/rbgtk-im-multicontext.c +48 -0
- data/ext/gtk3/rbgtk-image-menu-item.c +67 -0
- data/ext/gtk3/rbgtk-image.c +162 -0
- data/ext/gtk3/rbgtk-imcon-text-simple.c +69 -0
- data/ext/gtk3/rbgtk-imcon-text.c +133 -0
- data/ext/gtk3/rbgtk-infobar.c +121 -0
- data/ext/gtk3/rbgtk-invisible.c +49 -0
- data/ext/gtk3/rbgtk-label.c +139 -0
- data/ext/gtk3/rbgtk-layout.c +93 -0
- data/ext/gtk3/rbgtk-level-bar.c +88 -0
- data/ext/gtk3/rbgtk-link-button.c +49 -0
- data/ext/gtk3/rbgtk-list-store.c +399 -0
- data/ext/gtk3/rbgtk-lock-button.c +50 -0
- data/ext/gtk3/rbgtk-menu-button.c +41 -0
- data/ext/gtk3/rbgtk-menu-item.c +95 -0
- data/ext/gtk3/rbgtk-menu-shell.c +106 -0
- data/ext/gtk3/rbgtk-menu-tool-button.c +81 -0
- data/ext/gtk3/rbgtk-menu.c +168 -0
- data/ext/gtk3/rbgtk-menubar.c +43 -0
- data/ext/gtk3/rbgtk-message-dialog.c +74 -0
- data/ext/gtk3/rbgtk-misc.c +70 -0
- data/ext/gtk3/rbgtk-notebook.c +383 -0
- data/ext/gtk3/rbgtk-numerable-icon.c +50 -0
- data/ext/gtk3/rbgtk-orientable.c +27 -0
- data/ext/gtk3/rbgtk-overlay.c +53 -0
- data/ext/gtk3/rbgtk-page-setup-unix-dialog.c +94 -0
- data/ext/gtk3/rbgtk-page-setup.c +195 -0
- data/ext/gtk3/rbgtk-paned.c +114 -0
- data/ext/gtk3/rbgtk-paper-size.c +179 -0
- data/ext/gtk3/rbgtk-plug.c +85 -0
- data/ext/gtk3/rbgtk-print-context.c +125 -0
- data/ext/gtk3/rbgtk-print-job.c +148 -0
- data/ext/gtk3/rbgtk-print-operation-preview.c +59 -0
- data/ext/gtk3/rbgtk-print-operation.c +149 -0
- data/ext/gtk3/rbgtk-print-settings.c +807 -0
- data/ext/gtk3/rbgtk-print-unix-dialog.c +90 -0
- data/ext/gtk3/rbgtk-printer.c +155 -0
- data/ext/gtk3/rbgtk-progress-bar.c +72 -0
- data/ext/gtk3/rbgtk-radio-action.c +122 -0
- data/ext/gtk3/rbgtk-radio-button.c +89 -0
- data/ext/gtk3/rbgtk-radio-menu-item.c +147 -0
- data/ext/gtk3/rbgtk-radio-tool-button.c +131 -0
- data/ext/gtk3/rbgtk-range.c +68 -0
- data/ext/gtk3/rbgtk-recent-action.c +64 -0
- data/ext/gtk3/rbgtk-recent-chooser-dialog.c +66 -0
- data/ext/gtk3/rbgtk-recent-chooser-menu.c +50 -0
- data/ext/gtk3/rbgtk-recent-chooser-widget.c +48 -0
- data/ext/gtk3/rbgtk-recent-chooser.c +198 -0
- data/ext/gtk3/rbgtk-recent-data.c +188 -0
- data/ext/gtk3/rbgtk-recent-filter-info.c +201 -0
- data/ext/gtk3/rbgtk-recent-filter.c +169 -0
- data/ext/gtk3/rbgtk-recent-info.c +213 -0
- data/ext/gtk3/rbgtk-recent-manager.c +134 -0
- data/ext/gtk3/rbgtk-revealer.c +42 -0
- data/ext/gtk3/rbgtk-scale-button.c +84 -0
- data/ext/gtk3/rbgtk-scale.c +97 -0
- data/ext/gtk3/rbgtk-scrollable.c +31 -0
- data/ext/gtk3/rbgtk-scrollbar.c +52 -0
- data/ext/gtk3/rbgtk-scrolled-window.c +122 -0
- data/ext/gtk3/rbgtk-search-bar.c +59 -0
- data/ext/gtk3/rbgtk-search-entry.c +42 -0
- data/ext/gtk3/rbgtk-selection-data.c +281 -0
- data/ext/gtk3/rbgtk-selection.c +168 -0
- data/ext/gtk3/rbgtk-separator-menu-item.c +39 -0
- data/ext/gtk3/rbgtk-separator-tool-item.c +38 -0
- data/ext/gtk3/rbgtk-separator.c +44 -0
- data/ext/gtk3/rbgtk-settings.c +229 -0
- data/ext/gtk3/rbgtk-size-group.c +66 -0
- data/ext/gtk3/rbgtk-socket.c +82 -0
- data/ext/gtk3/rbgtk-spin-button.c +132 -0
- data/ext/gtk3/rbgtk-spinner.c +55 -0
- data/ext/gtk3/rbgtk-stack-switcher.c +41 -0
- data/ext/gtk3/rbgtk-stack.c +106 -0
- data/ext/gtk3/rbgtk-status-bar.c +77 -0
- data/ext/gtk3/rbgtk-status-icon.c +122 -0
- data/ext/gtk3/rbgtk-stock.c +213 -0
- data/ext/gtk3/rbgtk-style-context-gdk-screen.c +61 -0
- data/ext/gtk3/rbgtk-style-context.c +411 -0
- data/ext/gtk3/rbgtk-style-properties.c +118 -0
- data/ext/gtk3/rbgtk-style-provider.c +67 -0
- data/ext/gtk3/rbgtk-switch.c +40 -0
- data/ext/gtk3/rbgtk-table.c +190 -0
- data/ext/gtk3/rbgtk-target-list.c +125 -0
- data/ext/gtk3/rbgtk-tearoff-menu-item.c +41 -0
- data/ext/gtk3/rbgtk-text-appearance.c +236 -0
- data/ext/gtk3/rbgtk-text-attributes.c +326 -0
- data/ext/gtk3/rbgtk-text-buffer.c +899 -0
- data/ext/gtk3/rbgtk-text-child-anchor.c +56 -0
- data/ext/gtk3/rbgtk-text-iter.c +732 -0
- data/ext/gtk3/rbgtk-text-mark.c +71 -0
- data/ext/gtk3/rbgtk-text-tag-table.c +96 -0
- data/ext/gtk3/rbgtk-text-tag.c +68 -0
- data/ext/gtk3/rbgtk-text-view.c +336 -0
- data/ext/gtk3/rbgtk-theming-engine.c +257 -0
- data/ext/gtk3/rbgtk-toggle-action.c +61 -0
- data/ext/gtk3/rbgtk-toggle-button.c +87 -0
- data/ext/gtk3/rbgtk-toggle-tool-button.c +61 -0
- data/ext/gtk3/rbgtk-tool-button.c +66 -0
- data/ext/gtk3/rbgtk-tool-item.c +200 -0
- data/ext/gtk3/rbgtk-tool-itemgroup.c +70 -0
- data/ext/gtk3/rbgtk-tool-shell.c +96 -0
- data/ext/gtk3/rbgtk-toolbar.c +118 -0
- data/ext/gtk3/rbgtk-tooltip-gdk-display.c +39 -0
- data/ext/gtk3/rbgtk-tooltip.c +100 -0
- data/ext/gtk3/rbgtk-tree-dragdest.c +28 -0
- data/ext/gtk3/rbgtk-tree-dragsource.c +28 -0
- data/ext/gtk3/rbgtk-tree-iter.c +258 -0
- data/ext/gtk3/rbgtk-tree-model.c +246 -0
- data/ext/gtk3/rbgtk-tree-modelfilter.c +197 -0
- data/ext/gtk3/rbgtk-tree-modelsort.c +111 -0
- data/ext/gtk3/rbgtk-tree-path.c +191 -0
- data/ext/gtk3/rbgtk-tree-rowreference.c +140 -0
- data/ext/gtk3/rbgtk-tree-selection.c +190 -0
- data/ext/gtk3/rbgtk-tree-sortable.c +122 -0
- data/ext/gtk3/rbgtk-tree-store.c +330 -0
- data/ext/gtk3/rbgtk-tree-view-column.c +256 -0
- data/ext/gtk3/rbgtk-tree-view.c +716 -0
- data/ext/gtk3/rbgtk-ui-manager.c +189 -0
- data/ext/gtk3/rbgtk-viewport.c +44 -0
- data/ext/gtk3/rbgtk-volume-button.c +41 -0
- data/ext/gtk3/rbgtk-widget-path.c +229 -0
- data/ext/gtk3/rbgtk-widget.c +1554 -0
- data/ext/gtk3/rbgtk-window-group.c +80 -0
- data/ext/gtk3/rbgtk-window.c +565 -0
- data/ext/gtk3/rbgtk.c +783 -0
- data/ext/gtk3/rbgtk3.h +90 -0
- data/ext/gtk3/rbgtk3conversions.h +439 -0
- data/ext/gtk3/rbgtk3private.h +300 -0
- data/ext/gtk3/rbgtk3util.c +67 -0
- data/ext/gtk3/rbgtk3util.h +32 -0
- data/extconf.rb +49 -0
- 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 +11 -0
- data/lib/gtk3/base.rb +67 -0
- data/lib/gtk3/deprecated.rb +1004 -0
- data/sample/gtk-demo/README +7 -0
- data/sample/gtk-demo/alphatest.png +0 -0
- data/sample/gtk-demo/apple-red.png +0 -0
- data/sample/gtk-demo/appwindow.rb +233 -0
- data/sample/gtk-demo/background.jpg +0 -0
- data/sample/gtk-demo/builder.rb +51 -0
- data/sample/gtk-demo/button_box.rb +83 -0
- data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
- data/sample/gtk-demo/cairo-arc.rb +41 -0
- data/sample/gtk-demo/cairo-clip-image.rb +51 -0
- data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
- data/sample/gtk-demo/cairo-clip.rb +35 -0
- data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
- data/sample/gtk-demo/cairo-curve-to.rb +43 -0
- data/sample/gtk-demo/cairo-dash.rb +39 -0
- data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
- data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
- data/sample/gtk-demo/cairo-gradient.rb +35 -0
- data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
- data/sample/gtk-demo/cairo-image.rb +49 -0
- data/sample/gtk-demo/cairo-line-cap.rb +53 -0
- data/sample/gtk-demo/cairo-line-join.rb +41 -0
- data/sample/gtk-demo/cairo-long-lines.rb +41 -0
- data/sample/gtk-demo/cairo-operator.rb +83 -0
- data/sample/gtk-demo/cairo-path.rb +28 -0
- data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
- data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
- data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
- data/sample/gtk-demo/cairo-text-extents.rb +46 -0
- data/sample/gtk-demo/cairo-text.rb +43 -0
- data/sample/gtk-demo/changedisplay.rb +407 -0
- data/sample/gtk-demo/clipboard.rb +67 -0
- data/sample/gtk-demo/colorsel.rb +82 -0
- data/sample/gtk-demo/common.rb +87 -0
- data/sample/gtk-demo/css_accordion.css +53 -0
- data/sample/gtk-demo/css_accordion.rb +75 -0
- data/sample/gtk-demo/demo.ui +258 -0
- data/sample/gtk-demo/dialog.rb +137 -0
- data/sample/gtk-demo/drawingarea.rb +205 -0
- data/sample/gtk-demo/editable_cells.rb +173 -0
- data/sample/gtk-demo/entry_completion.rb +63 -0
- data/sample/gtk-demo/expander.rb +42 -0
- data/sample/gtk-demo/floppybuddy.gif +0 -0
- data/sample/gtk-demo/gnome-applets.png +0 -0
- data/sample/gtk-demo/gnome-calendar.png +0 -0
- data/sample/gtk-demo/gnome-foot.png +0 -0
- data/sample/gtk-demo/gnome-fs-directory.png +0 -0
- data/sample/gtk-demo/gnome-fs-regular.png +0 -0
- data/sample/gtk-demo/gnome-gimp.png +0 -0
- data/sample/gtk-demo/gnome-gmush.png +0 -0
- data/sample/gtk-demo/gnome-gsame.png +0 -0
- data/sample/gtk-demo/gnu-keys.png +0 -0
- data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
- data/sample/gtk-demo/hypertext.rb +211 -0
- data/sample/gtk-demo/iconview.rb +110 -0
- data/sample/gtk-demo/images.rb +197 -0
- data/sample/gtk-demo/infobar.rb +78 -0
- data/sample/gtk-demo/item_factory.rb +94 -0
- data/sample/gtk-demo/links.rb +53 -0
- data/sample/gtk-demo/list_store.rb +138 -0
- data/sample/gtk-demo/main.rb +384 -0
- data/sample/gtk-demo/menus.rb +172 -0
- data/sample/gtk-demo/panes.rb +156 -0
- data/sample/gtk-demo/pixbufs.rb +167 -0
- data/sample/gtk-demo/printing.rb +128 -0
- data/sample/gtk-demo/reset.css +69 -0
- data/sample/gtk-demo/rotated_text.rb +72 -0
- data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
- data/sample/gtk-demo/sizegroup.rb +118 -0
- data/sample/gtk-demo/spinner.rb +59 -0
- data/sample/gtk-demo/stock_browser.rb +233 -0
- data/sample/gtk-demo/textview.rb +436 -0
- data/sample/gtk-demo/theming.ui +319 -0
- data/sample/gtk-demo/theming_style_classes.rb +48 -0
- data/sample/gtk-demo/tree_store.rb +270 -0
- data/sample/misc/aboutdialog.rb +42 -0
- data/sample/misc/aboutdialog2.rb +42 -0
- data/sample/misc/alpha-demo.rb +70 -0
- data/sample/misc/assistant.rb +281 -0
- data/sample/misc/bindings.rb +97 -0
- data/sample/misc/button.rb +72 -0
- data/sample/misc/button2.rb +28 -0
- data/sample/misc/buttonbox.rb +93 -0
- data/sample/misc/cairo-pong.rb +217 -0
- data/sample/misc/calendar.rb +66 -0
- data/sample/misc/checkbutton.rb +49 -0
- data/sample/misc/colorselection.rb +22 -0
- data/sample/misc/combo_check.rb +79 -0
- data/sample/misc/combobox.rb +85 -0
- data/sample/misc/composited-windows.rb +113 -0
- data/sample/misc/cursor.rb +34 -0
- data/sample/misc/dialog.rb +44 -0
- data/sample/misc/dialog2.rb +36 -0
- data/sample/misc/dnd.rb +64 -0
- data/sample/misc/dndtreeview.rb +56 -0
- data/sample/misc/drag-move.rb +139 -0
- data/sample/misc/drawing.rb +109 -0
- data/sample/misc/entry.rb +34 -0
- data/sample/misc/entrycompletion.rb +33 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +41 -0
- data/sample/misc/frame.rb +69 -0
- data/sample/misc/gdkscreen.rb +32 -0
- data/sample/misc/gnome-logo-icon.png +0 -0
- data/sample/misc/helloworld.rb +35 -0
- data/sample/misc/iconview.rb +38 -0
- data/sample/misc/image.rb +42 -0
- data/sample/misc/itemfactory.rb +73 -0
- data/sample/misc/itemfactory2.rb +74 -0
- data/sample/misc/keyboard_grab.rb +29 -0
- data/sample/misc/label.rb +33 -0
- data/sample/misc/linkbutton.rb +42 -0
- data/sample/misc/listview.rb +92 -0
- data/sample/misc/menu.rb +81 -0
- data/sample/misc/misc_button.rb +49 -0
- data/sample/misc/mouse-gesture.rb +465 -0
- data/sample/misc/pangorenderer.rb +66 -0
- data/sample/misc/pointer_grab.rb +34 -0
- data/sample/misc/print.rb +247 -0
- data/sample/misc/properties.rb +86 -0
- data/sample/misc/radiobutton.rb +47 -0
- data/sample/misc/recentchooserdialog.rb +52 -0
- data/sample/misc/rgtk+cairo.rb +42 -0
- data/sample/misc/scalebutton.rb +19 -0
- data/sample/misc/settings.rb +41 -0
- data/sample/misc/statusicon.rb +106 -0
- data/sample/misc/stock.rb +36 -0
- data/sample/misc/style_property.rb +67 -0
- data/sample/misc/style_property.rc +19 -0
- data/sample/misc/t-gtkplug.rb +58 -0
- data/sample/misc/t-gtksocket.rb +65 -0
- data/sample/misc/test.xpm +92 -0
- data/sample/misc/textbuffer_serialize.rb +130 -0
- data/sample/misc/threads.rb +70 -0
- data/sample/misc/to_drawable.rb +42 -0
- data/sample/misc/togglebutton.rb +34 -0
- data/sample/misc/toolbar.rb +55 -0
- data/sample/misc/tooltips.rb +204 -0
- data/sample/misc/tree_combo.rb +79 -0
- data/sample/misc/tree_progress.rb +61 -0
- data/sample/misc/treemodelfilter.rb +49 -0
- data/sample/misc/treeview.rb +71 -0
- data/sample/misc/uimanager.rb +148 -0
- data/sample/misc/uimanager2.rb +91 -0
- data/sample/misc/uimanager2.xml +36 -0
- data/sample/misc/window.rb +24 -0
- data/sample/misc/xbm_cursor.rb +43 -0
- data/sample/testgtk/3DRings.xpm +116 -0
- data/sample/testgtk/FilesQueue.xpm +98 -0
- data/sample/testgtk/Modeller.xpm +117 -0
- data/sample/testgtk/README +14 -0
- data/sample/testgtk/button.rb +124 -0
- data/sample/testgtk/buttonbox.rb +100 -0
- data/sample/testgtk/check-n.xpm +21 -0
- data/sample/testgtk/check-y.xpm +21 -0
- data/sample/testgtk/checkbutton.rb +67 -0
- data/sample/testgtk/circles.xbm +46 -0
- data/sample/testgtk/colorselect.rb +33 -0
- data/sample/testgtk/dialog.rb +48 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +65 -0
- data/sample/testgtk/fontselection.rb +56 -0
- data/sample/testgtk/labels.rb +74 -0
- data/sample/testgtk/layout.rb +108 -0
- data/sample/testgtk/marble.xpm +408 -0
- data/sample/testgtk/menu.rb +79 -0
- data/sample/testgtk/notebook.rb +280 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +173 -0
- data/sample/testgtk/radiobutton.rb +61 -0
- data/sample/testgtk/range.rb +65 -0
- data/sample/testgtk/reparent.rb +91 -0
- data/sample/testgtk/sample.rb +80 -0
- data/sample/testgtk/savedposition.rb +87 -0
- data/sample/testgtk/scrolledwindow.rb +67 -0
- data/sample/testgtk/shapedwindow.rb +99 -0
- data/sample/testgtk/spinbutton.rb +181 -0
- data/sample/testgtk/statusbar.rb +89 -0
- data/sample/testgtk/test.xpm +92 -0
- data/sample/testgtk/testgtk.rb +176 -0
- data/sample/testgtk/testgtkrc +146 -0
- data/sample/testgtk/testgtkrc2 +21 -0
- data/sample/testgtk/togglebutton.rb +53 -0
- data/sample/testgtk/toolbar.rb +82 -0
- data/sample/testgtk/tooltips.rb +41 -0
- data/sample/testgtk/wmhints.rb +40 -0
- data/test/gtk-test-utils.rb +15 -0
- data/test/run-test.rb +58 -0
- data/test/test_gc.rb +22 -0
- data/test/test_gtk.rb +23 -0
- data/test/test_gtk_about_dialog.rb +13 -0
- data/test/test_gtk_accel_group_entry.rb +24 -0
- data/test/test_gtk_accel_key.rb +24 -0
- data/test/test_gtk_accessible.rb +31 -0
- data/test/test_gtk_action_group.rb +46 -0
- data/test/test_gtk_allocation.rb +24 -0
- data/test/test_gtk_border.rb +24 -0
- data/test/test_gtk_buildable.rb +56 -0
- data/test/test_gtk_builder.rb +166 -0
- data/test/test_gtk_container.rb +32 -0
- data/test/test_gtk_css_provider.rb +27 -0
- data/test/test_gtk_entry.rb +52 -0
- data/test/test_gtk_header_bar.rb +66 -0
- data/test/test_gtk_icon_theme.rb +31 -0
- data/test/test_gtk_icon_view.rb +41 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_level_bar.rb +82 -0
- data/test/test_gtk_list_store.rb +105 -0
- data/test/test_gtk_menu_button.rb +49 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_recent_data.rb +24 -0
- data/test/test_gtk_recent_filter_info.rb +26 -0
- data/test/test_gtk_revealer.rb +57 -0
- data/test/test_gtk_search_bar.rb +55 -0
- data/test/test_gtk_search_entry.rb +34 -0
- data/test/test_gtk_stack.rb +115 -0
- data/test/test_gtk_stack_switcher.rb +30 -0
- data/test/test_gtk_style_context.rb +30 -0
- data/test/test_gtk_style_properties.rb +38 -0
- data/test/test_gtk_tree_path.rb +20 -0
- data/test/test_gtk_tree_selection.rb +31 -0
- data/test/test_gtk_unix_print.rb +14 -0
- data/test/test_gtk_widget.rb +24 -0
- metadata +582 -0
@@ -0,0 +1,179 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2006 Ruby-GNOME2 Project Team
|
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 cPaperSize
|
25
|
+
#define _SELF(s) (RVAL2GTKPAPERSIZE(s))
|
26
|
+
|
27
|
+
static VALUE
|
28
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
29
|
+
{
|
30
|
+
GtkPaperSize *size;
|
31
|
+
|
32
|
+
if (argc <= 1) {
|
33
|
+
VALUE name;
|
34
|
+
rb_scan_args(argc, argv, "01", &name);
|
35
|
+
size = gtk_paper_size_new(RVAL2CSTR_ACCEPT_NIL(name));
|
36
|
+
} else if (argc == 4) {
|
37
|
+
size = gtk_paper_size_new_from_ppd(RVAL2CSTR(argv[0]),
|
38
|
+
RVAL2CSTR(argv[1]),
|
39
|
+
NUM2DBL(argv[2]),
|
40
|
+
NUM2DBL(argv[3]));
|
41
|
+
} else if (argc == 5) {
|
42
|
+
size = gtk_paper_size_new_custom(RVAL2CSTR(argv[0]),
|
43
|
+
RVAL2CSTR(argv[1]),
|
44
|
+
NUM2DBL(argv[2]),
|
45
|
+
NUM2DBL(argv[3]),
|
46
|
+
RVAL2GTKUNIT(argv[4]));
|
47
|
+
} else {
|
48
|
+
rb_raise(rb_eArgError,
|
49
|
+
"wrong number of arguments (%d for 0, 1, 4 or 5)", argc);
|
50
|
+
}
|
51
|
+
|
52
|
+
G_INITIALIZE(self, size);
|
53
|
+
return Qnil;
|
54
|
+
}
|
55
|
+
|
56
|
+
static VALUE
|
57
|
+
rg_operator_equal(VALUE self, VALUE other)
|
58
|
+
{
|
59
|
+
return CBOOL2RVAL(RVAL2CBOOL(rb_equal(rb_obj_class(self), rb_obj_class(other))) &&
|
60
|
+
gtk_paper_size_is_equal(_SELF(self), _SELF(other)));
|
61
|
+
}
|
62
|
+
|
63
|
+
/* The width is always the shortest side, measure in mm */
|
64
|
+
static VALUE
|
65
|
+
rg_name(VALUE self)
|
66
|
+
{
|
67
|
+
return CSTR2RVAL(gtk_paper_size_get_name(_SELF(self)));
|
68
|
+
}
|
69
|
+
|
70
|
+
static VALUE
|
71
|
+
rg_display_name(VALUE self)
|
72
|
+
{
|
73
|
+
return CSTR2RVAL(gtk_paper_size_get_display_name(_SELF(self)));
|
74
|
+
}
|
75
|
+
|
76
|
+
static VALUE
|
77
|
+
rg_ppd_name(VALUE self)
|
78
|
+
{
|
79
|
+
return CSTR2RVAL(gtk_paper_size_get_ppd_name(_SELF(self)));
|
80
|
+
}
|
81
|
+
|
82
|
+
static VALUE
|
83
|
+
rg_get_width(VALUE self, VALUE unit)
|
84
|
+
{
|
85
|
+
return rb_float_new(gtk_paper_size_get_width(_SELF(self), RVAL2GTKUNIT(unit)));
|
86
|
+
}
|
87
|
+
|
88
|
+
static VALUE
|
89
|
+
rg_get_height(VALUE self, VALUE unit)
|
90
|
+
{
|
91
|
+
return rb_float_new(gtk_paper_size_get_height(_SELF(self), RVAL2GTKUNIT(unit)));
|
92
|
+
}
|
93
|
+
|
94
|
+
static VALUE
|
95
|
+
rg_custom_p(VALUE self)
|
96
|
+
{
|
97
|
+
return CBOOL2RVAL(gtk_paper_size_is_custom(_SELF(self)));
|
98
|
+
}
|
99
|
+
|
100
|
+
/* Only for custom sizes: */
|
101
|
+
static VALUE
|
102
|
+
rg_set_size(VALUE self, VALUE width, VALUE height, VALUE unit)
|
103
|
+
{
|
104
|
+
gtk_paper_size_set_size(_SELF(self), NUM2DBL(width), NUM2DBL(height),
|
105
|
+
RVAL2GTKUNIT(unit));
|
106
|
+
return self;
|
107
|
+
}
|
108
|
+
|
109
|
+
static VALUE
|
110
|
+
rg_get_default_top_margin(VALUE self, VALUE unit)
|
111
|
+
{
|
112
|
+
return rb_float_new(gtk_paper_size_get_default_top_margin(_SELF(self),
|
113
|
+
RVAL2GTKUNIT(unit)));
|
114
|
+
}
|
115
|
+
|
116
|
+
static VALUE
|
117
|
+
rg_get_default_bottom_margin(VALUE self, VALUE unit)
|
118
|
+
{
|
119
|
+
return rb_float_new(gtk_paper_size_get_default_bottom_margin(_SELF(self),
|
120
|
+
RVAL2GTKUNIT(unit)));
|
121
|
+
}
|
122
|
+
|
123
|
+
static VALUE
|
124
|
+
rg_get_default_left_margin(VALUE self, VALUE unit)
|
125
|
+
{
|
126
|
+
return rb_float_new(gtk_paper_size_get_default_left_margin(_SELF(self),
|
127
|
+
RVAL2GTKUNIT(unit)));
|
128
|
+
}
|
129
|
+
|
130
|
+
static VALUE
|
131
|
+
rg_get_default_right_margin(VALUE self, VALUE unit)
|
132
|
+
{
|
133
|
+
return rb_float_new(gtk_paper_size_get_default_right_margin(_SELF(self),
|
134
|
+
RVAL2GTKUNIT(unit)));
|
135
|
+
}
|
136
|
+
|
137
|
+
static VALUE
|
138
|
+
rg_s_default(G_GNUC_UNUSED VALUE self)
|
139
|
+
{
|
140
|
+
return CSTR2RVAL(gtk_paper_size_get_default());
|
141
|
+
}
|
142
|
+
|
143
|
+
void
|
144
|
+
Init_gtk_paper_size(VALUE mGtk)
|
145
|
+
{
|
146
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_PAPER_SIZE, "PaperSize", mGtk);
|
147
|
+
|
148
|
+
RG_DEF_SMETHOD(default, 0);
|
149
|
+
|
150
|
+
rb_define_const(RG_TARGET_NAMESPACE, "A3", CSTR2RVAL(GTK_PAPER_NAME_A3));
|
151
|
+
rb_define_const(RG_TARGET_NAMESPACE, "A4", CSTR2RVAL(GTK_PAPER_NAME_A4));
|
152
|
+
rb_define_const(RG_TARGET_NAMESPACE, "A5", CSTR2RVAL(GTK_PAPER_NAME_A5));
|
153
|
+
rb_define_const(RG_TARGET_NAMESPACE, "B5", CSTR2RVAL(GTK_PAPER_NAME_B5));
|
154
|
+
rb_define_const(RG_TARGET_NAMESPACE, "LETTER", CSTR2RVAL(GTK_PAPER_NAME_LETTER));
|
155
|
+
rb_define_const(RG_TARGET_NAMESPACE, "EXECUTIVE",
|
156
|
+
CSTR2RVAL(GTK_PAPER_NAME_EXECUTIVE));
|
157
|
+
rb_define_const(RG_TARGET_NAMESPACE, "LEGAL", CSTR2RVAL(GTK_PAPER_NAME_LEGAL));
|
158
|
+
|
159
|
+
RG_DEF_METHOD(initialize, -1);
|
160
|
+
RG_DEF_METHOD_OPERATOR("==", equal, 1);
|
161
|
+
|
162
|
+
RG_DEF_METHOD(name, 0);
|
163
|
+
RG_DEF_METHOD(display_name, 0);
|
164
|
+
RG_DEF_METHOD(ppd_name, 0);
|
165
|
+
|
166
|
+
RG_DEF_METHOD(get_width, 1);
|
167
|
+
RG_DEF_METHOD(get_height, 1);
|
168
|
+
|
169
|
+
RG_DEF_METHOD_P(custom, 0);
|
170
|
+
|
171
|
+
RG_DEF_METHOD(set_size, 3);
|
172
|
+
|
173
|
+
RG_DEF_METHOD(get_default_top_margin, 1);
|
174
|
+
RG_DEF_METHOD(get_default_bottom_margin, 1);
|
175
|
+
RG_DEF_METHOD(get_default_left_margin, 1);
|
176
|
+
RG_DEF_METHOD(get_default_right_margin, 1);
|
177
|
+
|
178
|
+
G_DEF_CLASS(GTK_TYPE_UNIT, "Unit", RG_TARGET_NAMESPACE);
|
179
|
+
}
|
@@ -0,0 +1,85 @@
|
|
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) 2002 Neil Conway
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Lesser General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2.1 of the License, or (at your option) any later version.
|
11
|
+
*
|
12
|
+
* This library is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
+
* Lesser General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Lesser General Public
|
18
|
+
* License along with this library; if not, write to the Free Software
|
19
|
+
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
20
|
+
* MA 02110-1301 USA
|
21
|
+
*/
|
22
|
+
|
23
|
+
#include "rbgtk3private.h"
|
24
|
+
|
25
|
+
#ifdef HAVE_GTK_PLUG_GET_TYPE
|
26
|
+
|
27
|
+
#include <gtk/gtkx.h>
|
28
|
+
|
29
|
+
#define RG_TARGET_NAMESPACE cPlug
|
30
|
+
|
31
|
+
static VALUE
|
32
|
+
rg_initialize(int argc, VALUE *argv, VALUE self)
|
33
|
+
{
|
34
|
+
VALUE socket_id;
|
35
|
+
Window id;
|
36
|
+
|
37
|
+
if (rb_scan_args(argc, argv, "01", &socket_id) == 0)
|
38
|
+
id = 0;
|
39
|
+
else {
|
40
|
+
#ifdef GDK_NATIVE_WINDOW_POINTER
|
41
|
+
id = GUINT_TO_POINTER(NUM2ULONG(socket_id));
|
42
|
+
#else
|
43
|
+
id = NUM2UINT(socket_id);
|
44
|
+
#endif
|
45
|
+
}
|
46
|
+
|
47
|
+
RBGTK_INITIALIZE(self, gtk_plug_new(id));
|
48
|
+
return Qnil;
|
49
|
+
}
|
50
|
+
|
51
|
+
static VALUE
|
52
|
+
rg_construct(VALUE self, VALUE socket_id)
|
53
|
+
{
|
54
|
+
#ifdef GDK_NATIVE_WINDOW_POINTER
|
55
|
+
gtk_plug_construct(RVAL2GTKPLUG(self), GUINT_TO_POINTER(NUM2ULONG(socket_id)));
|
56
|
+
#else
|
57
|
+
gtk_plug_construct(RVAL2GTKPLUG(self), (guint32)NUM2UINT(socket_id));
|
58
|
+
#endif
|
59
|
+
return self;
|
60
|
+
}
|
61
|
+
|
62
|
+
static VALUE
|
63
|
+
rg_id(VALUE self)
|
64
|
+
{
|
65
|
+
Window id = gtk_plug_get_id(RVAL2GTKPLUG(self));
|
66
|
+
#ifdef GDK_NATIVE_WINDOW_POINTER
|
67
|
+
return UINT2NUM(GPOINTER_TO_UINT(id));
|
68
|
+
#else
|
69
|
+
return UINT2NUM(id);
|
70
|
+
#endif
|
71
|
+
}
|
72
|
+
|
73
|
+
#endif
|
74
|
+
|
75
|
+
void
|
76
|
+
Init_gtk_plug(VALUE mGtk)
|
77
|
+
{
|
78
|
+
#ifdef HAVE_GTK_PLUG_GET_TYPE
|
79
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_PLUG, "Plug", mGtk);
|
80
|
+
|
81
|
+
RG_DEF_METHOD(initialize, -1);
|
82
|
+
RG_DEF_METHOD(construct, 1);
|
83
|
+
RG_DEF_METHOD(id, 0);
|
84
|
+
#endif
|
85
|
+
}
|
@@ -0,0 +1,125 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2006 Ruby-GNOME2 Project Team
|
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 cPrintContext
|
25
|
+
#define _SELF(s) (RVAL2GTKPRINTCONTEXT(s))
|
26
|
+
|
27
|
+
#ifdef HAVE_RB_CAIRO_H
|
28
|
+
#include <rb_cairo.h>
|
29
|
+
|
30
|
+
/* Rendering */
|
31
|
+
static VALUE
|
32
|
+
rg_cairo_context(VALUE self)
|
33
|
+
{
|
34
|
+
return CRCONTEXT2RVAL(gtk_print_context_get_cairo_context(_SELF(self)));
|
35
|
+
}
|
36
|
+
#endif
|
37
|
+
|
38
|
+
static VALUE
|
39
|
+
rg_page_setup(VALUE self)
|
40
|
+
{
|
41
|
+
return GOBJ2RVAL(gtk_print_context_get_page_setup(_SELF(self)));
|
42
|
+
}
|
43
|
+
|
44
|
+
static VALUE
|
45
|
+
rg_width(VALUE self)
|
46
|
+
{
|
47
|
+
return rb_float_new(gtk_print_context_get_width(_SELF(self)));
|
48
|
+
}
|
49
|
+
|
50
|
+
static VALUE
|
51
|
+
rg_height(VALUE self)
|
52
|
+
{
|
53
|
+
return rb_float_new(gtk_print_context_get_height(_SELF(self)));
|
54
|
+
}
|
55
|
+
|
56
|
+
static VALUE
|
57
|
+
rg_dpi_x(VALUE self)
|
58
|
+
{
|
59
|
+
return rb_float_new(gtk_print_context_get_dpi_x(_SELF(self)));
|
60
|
+
}
|
61
|
+
|
62
|
+
static VALUE
|
63
|
+
rg_dpi_y(VALUE self)
|
64
|
+
{
|
65
|
+
return rb_float_new(gtk_print_context_get_dpi_y(_SELF(self)));
|
66
|
+
}
|
67
|
+
|
68
|
+
/* Fonts */
|
69
|
+
static VALUE
|
70
|
+
rg_pango_fontmap(VALUE self)
|
71
|
+
{
|
72
|
+
return GOBJ2RVAL(gtk_print_context_get_pango_fontmap(_SELF(self)));
|
73
|
+
}
|
74
|
+
|
75
|
+
static VALUE
|
76
|
+
rg_create_pango_context(VALUE self)
|
77
|
+
{
|
78
|
+
return GOBJ2RVALU(gtk_print_context_create_pango_context(_SELF(self)));
|
79
|
+
}
|
80
|
+
|
81
|
+
static VALUE
|
82
|
+
rg_create_pango_layout(VALUE self)
|
83
|
+
{
|
84
|
+
return GOBJ2RVALU(gtk_print_context_create_pango_layout(_SELF(self)));
|
85
|
+
}
|
86
|
+
|
87
|
+
/* Needed for preview implementations */
|
88
|
+
#ifdef HAVE_RB_CAIRO_H
|
89
|
+
static VALUE
|
90
|
+
rg_set_cairo_context(VALUE self, VALUE cr, VALUE dpi_x, VALUE dpi_y)
|
91
|
+
{
|
92
|
+
gtk_print_context_set_cairo_context(_SELF(self),
|
93
|
+
RVAL2CRCONTEXT(cr),
|
94
|
+
NUM2DBL(dpi_x),
|
95
|
+
NUM2DBL(dpi_y));
|
96
|
+
return self;
|
97
|
+
}
|
98
|
+
#endif
|
99
|
+
|
100
|
+
void
|
101
|
+
Init_gtk_print_context(VALUE mGtk)
|
102
|
+
{
|
103
|
+
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_PRINT_CONTEXT,
|
104
|
+
"PrintContext", mGtk);
|
105
|
+
|
106
|
+
/* Rendering */
|
107
|
+
#ifdef HAVE_RB_CAIRO_H
|
108
|
+
RG_DEF_METHOD(cairo_context, 0);
|
109
|
+
#endif
|
110
|
+
RG_DEF_METHOD(page_setup, 0);
|
111
|
+
RG_DEF_METHOD(width, 0);
|
112
|
+
RG_DEF_METHOD(height, 0);
|
113
|
+
RG_DEF_METHOD(dpi_x, 0);
|
114
|
+
RG_DEF_METHOD(dpi_y, 0);
|
115
|
+
|
116
|
+
/* Fonts */
|
117
|
+
RG_DEF_METHOD(pango_fontmap, 0);
|
118
|
+
RG_DEF_METHOD(create_pango_context, 0);
|
119
|
+
RG_DEF_METHOD(create_pango_layout, 0);
|
120
|
+
|
121
|
+
/* Needed for preview implementations */
|
122
|
+
#ifdef HAVE_RB_CAIRO_H
|
123
|
+
RG_DEF_METHOD(set_cairo_context, 3);
|
124
|
+
#endif
|
125
|
+
}
|
@@ -0,0 +1,148 @@
|
|
1
|
+
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
+
/*
|
3
|
+
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
+
* Copyright (C) 2006 Ruby-GNOME2 Project Team
|
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
|
+
#ifdef HAVE_GTK_UNIX_PRINT
|
25
|
+
#include <gtk/gtkunixprint.h>
|
26
|
+
#ifndef GTK_TYPE_PRINT_CAPABILITIES
|
27
|
+
# define GTK_TYPE_PRINT_CAPABILITIES (gtk_print_capabilities_get_type())
|
28
|
+
#endif
|
29
|
+
|
30
|
+
#ifdef HAVE_RB_CAIRO_H
|
31
|
+
# include <rb_cairo.h>
|
32
|
+
#endif
|
33
|
+
|
34
|
+
#define RG_TARGET_NAMESPACE cPrintJob
|
35
|
+
#define _SELF(s) (RVAL2GTKPRINTJOB(s))
|
36
|
+
|
37
|
+
static VALUE RG_TARGET_NAMESPACE;
|
38
|
+
|
39
|
+
static VALUE
|
40
|
+
rg_initialize(VALUE self, VALUE title, VALUE printer,
|
41
|
+
VALUE settings, VALUE page_setup)
|
42
|
+
{
|
43
|
+
GtkPrintJob *job;
|
44
|
+
|
45
|
+
job = gtk_print_job_new(RVAL2CSTR(title),
|
46
|
+
RVAL2GTKPRINTER(printer),
|
47
|
+
RVAL2GTKPRINTSETTINGS(settings),
|
48
|
+
RVAL2GTKPAGESETUP(page_setup));
|
49
|
+
|
50
|
+
G_INITIALIZE(self, job);
|
51
|
+
return Qnil;
|
52
|
+
}
|
53
|
+
|
54
|
+
static VALUE
|
55
|
+
rg_status(VALUE self)
|
56
|
+
{
|
57
|
+
return GTKPRINTSTATUS2RVAL(gtk_print_job_get_status(_SELF(self)));
|
58
|
+
}
|
59
|
+
|
60
|
+
static VALUE
|
61
|
+
rg_set_source_file(VALUE self, VALUE filename)
|
62
|
+
{
|
63
|
+
GError *error = NULL;
|
64
|
+
gboolean result;
|
65
|
+
|
66
|
+
result = gtk_print_job_set_source_file(_SELF(self), RVAL2CSTR(filename),
|
67
|
+
&error);
|
68
|
+
|
69
|
+
if (!result)
|
70
|
+
RAISE_GERROR(error);
|
71
|
+
|
72
|
+
return Qnil;
|
73
|
+
}
|
74
|
+
|
75
|
+
#ifdef HAVE_RB_CAIRO_H
|
76
|
+
static VALUE
|
77
|
+
rg_surface(VALUE self)
|
78
|
+
{
|
79
|
+
cairo_surface_t *surface;
|
80
|
+
GError *error = NULL;
|
81
|
+
|
82
|
+
surface = gtk_print_job_get_surface(_SELF(self), &error);
|
83
|
+
if (error)
|
84
|
+
RAISE_GERROR(error);
|
85
|
+
return CRSURFACE2RVAL(surface);
|
86
|
+
}
|
87
|
+
#endif
|
88
|
+
|
89
|
+
struct callback_arg
|
90
|
+
{
|
91
|
+
VALUE callback;
|
92
|
+
VALUE job;
|
93
|
+
GError* error;
|
94
|
+
};
|
95
|
+
|
96
|
+
static VALUE
|
97
|
+
invoke_callback(VALUE data)
|
98
|
+
{
|
99
|
+
struct callback_arg *arg = (struct callback_arg *)data;
|
100
|
+
|
101
|
+
if (arg->error) RAISE_GERROR(arg->error);
|
102
|
+
rb_funcall(arg->callback, id_call, 1, arg->job);
|
103
|
+
return Qnil;
|
104
|
+
}
|
105
|
+
static void
|
106
|
+
complete_func(GtkPrintJob *job, gpointer data, const GError *error)
|
107
|
+
{
|
108
|
+
struct callback_arg arg;
|
109
|
+
|
110
|
+
arg.callback = (VALUE)data;
|
111
|
+
arg.job = GOBJ2RVAL(job);
|
112
|
+
arg.error = error;
|
113
|
+
G_PROTECT_CALLBACK(invoke_callback, &arg);
|
114
|
+
}
|
115
|
+
|
116
|
+
static void
|
117
|
+
remove_callback_reference(gpointer data)
|
118
|
+
{
|
119
|
+
G_CHILD_REMOVE(RG_TARGET_NAMESPACE, (VALUE)data);
|
120
|
+
}
|
121
|
+
|
122
|
+
static VALUE
|
123
|
+
rg_send(VALUE self)
|
124
|
+
{
|
125
|
+
VALUE block = rb_block_proc();
|
126
|
+
G_CHILD_ADD(RG_TARGET_NAMESPACE, block);
|
127
|
+
gtk_print_job_send(_SELF(self), complete_func, (gpointer)block,
|
128
|
+
remove_callback_reference);
|
129
|
+
return self;
|
130
|
+
}
|
131
|
+
#endif
|
132
|
+
|
133
|
+
void
|
134
|
+
Init_gtk_print_job(VALUE mGtk)
|
135
|
+
{
|
136
|
+
#ifdef HAVE_GTK_UNIX_PRINT
|
137
|
+
RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_PRINT_JOB, "PrintJob", mGtk);
|
138
|
+
G_DEF_CLASS(GTK_TYPE_PRINT_CAPABILITIES, "PrintCapabilities", mGtk);
|
139
|
+
|
140
|
+
RG_DEF_METHOD(initialize, 4);
|
141
|
+
RG_DEF_METHOD(status, 0);
|
142
|
+
RG_DEF_METHOD(set_source_file, 1);
|
143
|
+
#ifdef HAVE_RB_CAIRO_H
|
144
|
+
RG_DEF_METHOD(surface, 0);
|
145
|
+
#endif
|
146
|
+
RG_DEF_METHOD(send, 0);
|
147
|
+
#endif
|
148
|
+
}
|