gtk_paradise 0.9.120 → 0.11.19

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of gtk_paradise might be problematic. Click here for more details.

Files changed (492) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4521 -2997
  3. data/bin/genity +26 -0
  4. data/bin/gtk_editor +7 -0
  5. data/doc/README.gen +4484 -2975
  6. data/doc/todo/TODO_FOR_THE_GTK_PARADISE_PROJECT.md +281 -218
  7. data/doc/todo/recurring_todo_tasks.md +4 -3
  8. data/gtk_paradise.gemspec +28 -17
  9. data/lib/gtk_paradise/app/app.rb +77 -45
  10. data/lib/gtk_paradise/app/{app_module.rb → app_module/app_module.rb} +1064 -899
  11. data/lib/gtk_paradise/base_module/base_module.rb +7043 -33
  12. data/lib/gtk_paradise/base_module/class_methods/class_methods.rb +0 -0
  13. data/lib/gtk_paradise/base_module/css.rb +200 -268
  14. data/lib/gtk_paradise/base_module/experimental.rb +119 -0
  15. data/lib/gtk_paradise/base_module/html_support.rb +40 -15
  16. data/lib/gtk_paradise/base_module/these_methods_work_for_gtk3_and_gtk4.rb +155 -0
  17. data/lib/gtk_paradise/base_module_and_app_module/base_module_and_app_module.rb +1 -1
  18. data/lib/gtk_paradise/colours/colour_palette/material_design.rb +239 -0
  19. data/lib/gtk_paradise/colours/gtk_colour_constants.rb +8 -2
  20. data/lib/gtk_paradise/colours/parse.rb +8 -1
  21. data/lib/gtk_paradise/commandline/commandline.rb +20 -19
  22. data/lib/gtk_paradise/constants/constants.rb +227 -7
  23. data/lib/gtk_paradise/css_files/borders.css +81 -0
  24. data/lib/gtk_paradise/css_files/colours.css +329 -328
  25. data/lib/gtk_paradise/css_files/css_accordion.css +6 -2
  26. data/lib/gtk_paradise/css_files/hover_effects.css +588 -0
  27. data/lib/gtk_paradise/css_files/project.css +153 -189
  28. data/lib/gtk_paradise/drawing/README.md +3 -0
  29. data/lib/gtk_paradise/drawing/drawing.rb +68 -0
  30. data/lib/gtk_paradise/{base_module/colours.rb → drawing/event.rb} +37 -45
  31. data/lib/gtk_paradise/drawing/star.rb +96 -0
  32. data/lib/gtk_paradise/drawing/tool.rb +268 -0
  33. data/lib/gtk_paradise/drawing/turtle.rb +138 -0
  34. data/lib/gtk_paradise/emojis/emojis.rb +14 -13
  35. data/lib/gtk_paradise/examples/advanced/001_5x5_grid_example.rb +35 -50
  36. data/lib/gtk_paradise/examples/advanced/002_advanced_drag_and_drop_example.rb +21 -13
  37. data/lib/gtk_paradise/examples/advanced/003_html_like_support.rb +4 -25
  38. data/lib/gtk_paradise/examples/advanced/004_on_hover_example_on_gtk_entry.rb +4 -4
  39. data/lib/gtk_paradise/examples/advanced/005_csv_example.rb +6 -2
  40. data/lib/gtk_paradise/examples/advanced/007_label_responding_to_events_example.rb +1 -10
  41. data/lib/gtk_paradise/examples/advanced/008_options_example.rb +6 -3
  42. data/lib/gtk_paradise/examples/advanced/009_key_events.rb +1 -1
  43. data/lib/gtk_paradise/examples/advanced/010_extensive_text_view_example.rb +18 -17
  44. data/lib/gtk_paradise/examples/advanced/011_moving_blocks_example.rb +3 -3
  45. data/lib/gtk_paradise/examples/advanced/012_cell_data_sorting_example.rb +3 -4
  46. data/lib/gtk_paradise/examples/advanced/013_advanced_css_example.rb +86 -49
  47. data/lib/gtk_paradise/examples/advanced/014_popup_example.rb +9 -9
  48. data/lib/gtk_paradise/examples/advanced/015_advanced_button_example.rb +7 -19
  49. data/lib/gtk_paradise/examples/advanced/017_lean_CSS_example.rb +10 -13
  50. data/lib/gtk_paradise/examples/advanced/018_coloured_text_example.rb +7 -13
  51. data/lib/gtk_paradise/examples/advanced/019_gtk_entry_showing_the_cursor_position.rb +1 -1
  52. data/lib/gtk_paradise/examples/advanced/020_scale_this_image.rb +1 -10
  53. data/lib/gtk_paradise/examples/advanced/021_scroll_events_on_gtk_entry.rb +4 -0
  54. data/lib/gtk_paradise/examples/advanced/022_autogenerated_CSS_rounded_borders.rb +142 -0
  55. data/lib/gtk_paradise/examples/advanced/023_append_image_to_buffer.rb +145 -0
  56. data/lib/gtk_paradise/examples/advanced/024_notebook_with_tab_example.rb +151 -0
  57. data/lib/gtk_paradise/examples/advanced/025_showing_a_gold_caret_on_black_background.rb +144 -0
  58. data/lib/gtk_paradise/examples/advanced/026_status_bar_example.rb +153 -0
  59. data/lib/gtk_paradise/examples/advanced/027_customized_frame_example.rb +141 -0
  60. data/lib/gtk_paradise/examples/advanced/028_widgets_described_in_a_yaml_file.rb +240 -0
  61. data/lib/gtk_paradise/examples/cairo/basic_cairo_shapes.rb +1 -1
  62. data/lib/gtk_paradise/examples/cairo/cairo_transparent_rectangles.rb +9 -5
  63. data/lib/gtk_paradise/examples/cairo/cairo_write_via_custom_font.rb +81 -0
  64. data/lib/gtk_paradise/examples/cairo/donut_shape.rb +19 -6
  65. data/lib/gtk_paradise/examples/cairo/ping_pong_game.rb +2 -3
  66. data/lib/gtk_paradise/examples/controller/README.md +4 -0
  67. data/lib/gtk_paradise/examples/controller/controller.rb +2 -0
  68. data/lib/gtk_paradise/examples/css/001_border_examples.rb +30 -13
  69. data/lib/gtk_paradise/examples/css/002_import_CSS_file.rb +10 -5
  70. data/lib/gtk_paradise/examples/drawing/001_example.rb +61 -0
  71. data/lib/gtk_paradise/examples/drawing/002_example.rb +51 -0
  72. data/lib/gtk_paradise/examples/drawing/003_example.rb +38 -0
  73. data/lib/gtk_paradise/examples/drawing/004_example.rb +36 -0
  74. data/lib/gtk_paradise/examples/drawing/005_example.rb +92 -0
  75. data/lib/gtk_paradise/examples/drawing/006_example.rb +58 -0
  76. data/lib/gtk_paradise/examples/drawing/007_example.rb +22 -0
  77. data/lib/gtk_paradise/examples/drawing/008_example.rb +43 -0
  78. data/lib/gtk_paradise/examples/drawing/009_example.rb +43 -0
  79. data/lib/gtk_paradise/examples/drawing/010_example.rb +25 -0
  80. data/lib/gtk_paradise/examples/drawing/011_example.rb +72 -0
  81. data/lib/gtk_paradise/examples/drawing/012_example.rb +59 -0
  82. data/lib/gtk_paradise/examples/drawing/README.md +3 -0
  83. data/lib/gtk_paradise/examples/drawing/moving_turtle_example.rb +43 -0
  84. data/lib/gtk_paradise/examples/gdk/001_gdk_screen_properties.rb +58 -0
  85. data/lib/gtk_paradise/examples/gdk_pixbuf/save_image_example.rb +1 -1
  86. data/lib/gtk_paradise/examples/gir_ffi/001_hello_world.rb +29 -0
  87. data/lib/gtk_paradise/examples/gir_ffi/002_upgraded_hello_world.rb +40 -0
  88. data/lib/gtk_paradise/examples/gir_ffi/003_gtk_application_example.rb +30 -0
  89. data/lib/gtk_paradise/examples/gir_ffi/004_treeview_example.rb +64 -0
  90. data/lib/gtk_paradise/examples/gir_ffi/005_complex_example.rb +104 -0
  91. data/lib/gtk_paradise/examples/gir_ffi/README.md +5 -0
  92. data/lib/gtk_paradise/examples/glib/parse_glib_settings.rb +1 -1
  93. data/lib/gtk_paradise/examples/gtk2/008_list_store_example.rb +1 -1
  94. data/lib/gtk_paradise/examples/gtk3/{061_gtk_entry.rb → 001_gtk_entry.rb} +11 -6
  95. data/lib/gtk_paradise/examples/gtk3/{009_scrolled_window_example.rb → 002_scrolled_window_example.rb} +6 -4
  96. data/lib/gtk_paradise/examples/gtk3/{062_toggle_button_example.rb → 003_toggle_button_example.rb} +3 -2
  97. data/lib/gtk_paradise/examples/gtk3/{081_simple_dialog_example.rb → 004_simple_dialog_example.rb} +19 -12
  98. data/lib/gtk_paradise/examples/gtk3/005_spinner_example.rb +30 -10
  99. data/lib/gtk_paradise/examples/gtk3/006_text_view_example.rb +78 -0
  100. data/lib/gtk_paradise/examples/gtk3/{079_two_windows_example.rb → 007_two_windows_example.rb} +3 -1
  101. data/lib/gtk_paradise/examples/gtk3/008_search_bar_example.rb +91 -0
  102. data/lib/gtk_paradise/examples/gtk3/{002_simple_window.rb → 009_simple_window.rb} +14 -6
  103. data/lib/gtk_paradise/examples/gtk3/{025_switch_example.rb → 010_switch_example.rb} +6 -7
  104. data/lib/gtk_paradise/examples/gtk3/011_colour_chooser_example.rb +71 -0
  105. data/lib/gtk_paradise/examples/gtk3/012_show_the_xid_example.rb +18 -0
  106. data/lib/gtk_paradise/examples/gtk3/013_grab_pointer_forcefully.rb +31 -0
  107. data/lib/gtk_paradise/examples/gtk3/{083_bottom_left_placement.rb → 015_bottom_left_placement.rb} +3 -1
  108. data/lib/gtk_paradise/examples/gtk3/{082_scrolling_example.rb → 016_scrolling_example.rb} +2 -2
  109. data/lib/gtk_paradise/examples/gtk3/{080_extensive_markup_example.rb → 017_extensive_markup_example.rb} +8 -7
  110. data/lib/gtk_paradise/examples/gtk3/{078_message_dialog_example.rb → 018_message_dialog_example.rb} +3 -5
  111. data/lib/gtk_paradise/examples/gtk3/{075_tiny_button_via_css.rb → 021_tiny_button_via_css.rb} +1 -0
  112. data/lib/gtk_paradise/examples/gtk3/{001_font_related_information.rb → 022_font_related_information.rb} +1 -1
  113. data/lib/gtk_paradise/examples/gtk3/023_sorted_tree.rb +166 -0
  114. data/lib/gtk_paradise/examples/gtk3/{004_small_paned_example.rb → 024_small_paned_example.rb} +4 -3
  115. data/lib/gtk_paradise/examples/gtk3/{007_progress_bar_example.rb → 026_progress_bar_example.rb} +1 -2
  116. data/lib/gtk_paradise/examples/gtk3/{008_menubar_example.rb → 027_menubar_example.rb} +1 -1
  117. data/lib/gtk_paradise/examples/gtk3/{010_paned_widget_example.rb → 028_paned_widget_example.rb} +1 -0
  118. data/lib/gtk_paradise/examples/gtk3/{011_sockets.rb → 029_sockets.rb} +1 -0
  119. data/lib/gtk_paradise/examples/gtk3/{012_notebook_example.rb → 030_notebook_example.rb} +1 -0
  120. data/lib/gtk_paradise/examples/gtk3/{013_icon_theme_example.rb → 031_icon_theme_example.rb} +6 -0
  121. data/lib/gtk_paradise/examples/gtk3/{014_switcher_window.rb → 032_switcher_window.rb} +16 -10
  122. data/lib/gtk_paradise/examples/gtk3/{016_hello_world_in_gtk3_and_bold_font.rb → 034_hello_world_in_gtk3_and_bold_font.rb} +1 -1
  123. data/lib/gtk_paradise/examples/gtk3/{017_grid_example.rb → 035_grid_example.rb} +5 -1
  124. data/lib/gtk_paradise/examples/gtk3/{018_buttons_showcasing_the_relief.rb → 036_buttons_showcasing_the_relief.rb} +1 -0
  125. data/lib/gtk_paradise/examples/gtk3/{019_text_buffer_example.rb → 037_text_buffer_example.rb} +12 -10
  126. data/lib/gtk_paradise/examples/gtk3/{022_popup_example.rb → 040_popup_example.rb} +2 -2
  127. data/lib/gtk_paradise/examples/gtk3/{023_horizontal_and_vertical_scale.rb → 041_horizontal_and_vertical_scale.rb} +1 -1
  128. data/lib/gtk_paradise/examples/gtk3/{026_hover_button_example_via_css.rb → 043_hover_button_example_via_css.rb} +3 -1
  129. data/lib/gtk_paradise/examples/gtk3/{027_spin_button_example.rb → 044_spin_button_example.rb} +4 -3
  130. data/lib/gtk_paradise/examples/gtk3/{028_radio_menu_item_example.rb → 045_radio_menu_item_example.rb} +4 -1
  131. data/lib/gtk_paradise/examples/gtk3/{029_gtk_dialog_sample.rb → 046_gtk_dialog_sample.rb} +4 -1
  132. data/lib/gtk_paradise/examples/gtk3/{030_draw_rectangles.rb → 047_draw_rectangles.rb} +1 -1
  133. data/lib/gtk_paradise/examples/gtk3/{031_colour_choose_button.rb → 048_colour_choose_button.rb} +17 -3
  134. data/lib/gtk_paradise/examples/gtk3/{032_drag_and_drop_example.rb → 049_drag_and_drop_example.rb} +13 -5
  135. data/lib/gtk_paradise/examples/gtk3/{033_cell_renderer_pixbuf_example.rb → 050_cell_renderer_pixbuf_example.rb} +17 -6
  136. data/lib/gtk_paradise/examples/gtk3/051_combo_box_example.rb +74 -0
  137. data/lib/gtk_paradise/examples/gtk3/{037_css_example_of_a_button_changing_the_background_colour_on_click_event.rb → 053_css_example_of_a_button_changing_the_background_colour_on_click_event.rb} +14 -4
  138. data/lib/gtk_paradise/examples/gtk3/{036_revealer_example.rb → 053_revealer_example.rb} +10 -6
  139. data/lib/gtk_paradise/examples/gtk3/{038_ten_labels_in_a_vertical_box_example.rb → 054_ten_labels_in_a_vertical_box_example.rb} +1 -1
  140. data/lib/gtk_paradise/examples/gtk3/{039_threads_example.rb → 055_threads_example.rb} +1 -1
  141. data/lib/gtk_paradise/examples/gtk3/{042_colourized_button_example.rb → 058_colourized_button_example.rb} +1 -2
  142. data/lib/gtk_paradise/examples/gtk3/{043_form_example.rb → 059_form_example.rb} +1 -3
  143. data/lib/gtk_paradise/examples/gtk3/{044_check_button.rb → 060_check_button.rb} +4 -2
  144. data/lib/gtk_paradise/examples/gtk3/{046_event_box_example.rb → 062_event_box_example.rb} +2 -1
  145. data/lib/gtk_paradise/examples/gtk3/{047_examples_with_css.rb → 063_examples_with_css.rb} +91 -3
  146. data/lib/gtk_paradise/examples/gtk3/{048_accel_group_example.rb → 064_accel_group_example.rb} +1 -0
  147. data/lib/gtk_paradise/examples/gtk3/{049_change_the_application_theme.rb → 065_change_the_application_theme.rb} +4 -2
  148. data/lib/gtk_paradise/examples/gtk3/{050_header_bar_example.rb → 066_header_bar_example.rb} +3 -0
  149. data/lib/gtk_paradise/examples/gtk3/{051_gtk_label_example.rb → 067_gtk_label_example.rb} +3 -2
  150. data/lib/gtk_paradise/examples/gtk3/{052_popover_example.rb → 068_popover_example.rb} +2 -2
  151. data/lib/gtk_paradise/examples/gtk3/{053_entry_completion.rb → 069_entry_completion.rb} +2 -0
  152. data/lib/gtk_paradise/examples/gtk3/{055_button_demo.rb → 071_button_demo.rb} +6 -5
  153. data/lib/gtk_paradise/examples/gtk3/{056_text_iterator_example.rb → 072_text_iterator_example.rb} +30 -21
  154. data/lib/gtk_paradise/examples/gtk3/{057_image_example.rb → 073_image_example.rb} +1 -1
  155. data/lib/gtk_paradise/examples/gtk3/{058_frame_example.rb → 074_frame_example.rb} +1 -1
  156. data/lib/gtk_paradise/examples/gtk3/{059_gtk_expander.rb → 075_gtk_expander.rb} +2 -0
  157. data/lib/gtk_paradise/examples/gtk3/{060_ten_vboxes_example.rb → 076_ten_vboxes_example.rb} +1 -0
  158. data/lib/gtk_paradise/examples/gtk3/{063_button_box_example.rb → 077_button_box_example.rb} +11 -1
  159. data/lib/gtk_paradise/examples/gtk3/{064_tree_view_column_example.rb → 078_tree_view_column_example.rb} +2 -1
  160. data/lib/gtk_paradise/examples/gtk3/{066_vertical_boxes.rb → 080_vertical_boxes.rb} +2 -1
  161. data/lib/gtk_paradise/examples/gtk3/{067_vbox_with_spacing_and_border_width.rb → 081_vbox_with_spacing_and_border_width.rb} +2 -1
  162. data/lib/gtk_paradise/examples/gtk3/{069_file_chooser_dialog.rb → 082_file_chooser_dialog.rb} +3 -0
  163. data/lib/gtk_paradise/examples/gtk3/{070_bindings.rb → 083_bindings.rb} +14 -8
  164. data/lib/gtk_paradise/examples/gtk3/{072_recent_chooser_dialog.rb → 084_recent_chooser_dialog.rb} +2 -2
  165. data/lib/gtk_paradise/examples/gtk3/{073_showcase_the_cursors.rb → 085_showcase_the_cursors.rb} +30 -5
  166. data/lib/gtk_paradise/examples/gtk3/{074_app_chooser_button_example.rb → 086_app_chooser_button_example.rb} +1 -0
  167. data/lib/gtk_paradise/examples/gtk3/087_calendar_example.rb +41 -0
  168. data/lib/gtk_paradise/examples/gtk4/001_gtk_entry.rb +88 -0
  169. data/lib/gtk_paradise/examples/gtk4/002_scrolled_window_example.rb +62 -0
  170. data/lib/gtk_paradise/examples/gtk4/003_toggle_button_example.rb +23 -0
  171. data/lib/gtk_paradise/examples/gtk4/004_simple_dialog_example.rb +41 -0
  172. data/lib/gtk_paradise/examples/gtk4/005_spinner_example.rb +64 -0
  173. data/lib/gtk_paradise/examples/gtk4/006_text_view_example.rb +77 -0
  174. data/lib/gtk_paradise/examples/gtk4/007_two_windows_example.rb +55 -0
  175. data/lib/gtk_paradise/examples/gtk4/008_search_bar_example.rb +88 -0
  176. data/lib/gtk_paradise/examples/gtk4/009_text_view_example.rb +30 -0
  177. data/lib/gtk_paradise/examples/gtk4/010_switch_example.rb +52 -0
  178. data/lib/gtk_paradise/examples/gtk4/074_frame_example.rb +105 -0
  179. data/lib/gtk_paradise/examples/gtk4/076_ten_vboxes_example.rb +35 -0
  180. data/lib/gtk_paradise/examples/gtk4/087_calendar_example.rb +47 -0
  181. data/lib/gtk_paradise/examples/gtk4/100_changed_events_example.rb +77 -0
  182. data/lib/gtk_paradise/examples/gtk4/101_actionbar_example.rb +55 -0
  183. data/lib/gtk_paradise/examples/gtk4/102_picture_example.rb +35 -0
  184. data/lib/gtk_paradise/examples/pango/pango_power.rb +1 -0
  185. data/lib/gtk_paradise/experimental/experimental.rb +3 -11
  186. data/lib/gtk_paradise/experimental/experimental_for_gtk4.rb +92 -0
  187. data/lib/gtk_paradise/fonts/fonts.rb +5 -1
  188. data/lib/gtk_paradise/gdk/cursor.rb +2 -2
  189. data/lib/gtk_paradise/{base_module/e.rb → gdk/event_crossing.rb} +6 -8
  190. data/lib/gtk_paradise/gdk/gdk.rb +1 -1
  191. data/lib/gtk_paradise/gtk_classes/about.rb +11 -2
  192. data/lib/gtk_paradise/gtk_classes/about_dialog.rb +6 -2
  193. data/lib/gtk_paradise/gtk_classes/alignment.rb +4 -1
  194. data/lib/gtk_paradise/gtk_classes/application.rb +94 -4
  195. data/lib/gtk_paradise/gtk_classes/application_window.rb +25 -0
  196. data/lib/gtk_paradise/gtk_classes/box.rb +116 -279
  197. data/lib/gtk_paradise/gtk_classes/button.rb +55 -37
  198. data/lib/gtk_paradise/gtk_classes/button_box.rb +9 -1
  199. data/lib/gtk_paradise/gtk_classes/cell_renderer_text.rb +5 -3
  200. data/lib/gtk_paradise/gtk_classes/check_button.rb +27 -8
  201. data/lib/gtk_paradise/gtk_classes/combo_box.rb +4 -1
  202. data/lib/gtk_paradise/gtk_classes/combo_box_entry.rb +17 -11
  203. data/lib/gtk_paradise/gtk_classes/combo_box_text.rb +21 -19
  204. data/lib/gtk_paradise/gtk_classes/dialog.rb +2 -2
  205. data/lib/gtk_paradise/gtk_classes/entry.rb +256 -124
  206. data/lib/gtk_paradise/gtk_classes/entry_completion.rb +4 -0
  207. data/lib/gtk_paradise/gtk_classes/event_box.rb +21 -2
  208. data/lib/gtk_paradise/gtk_classes/event_button.rb +1 -1
  209. data/lib/gtk_paradise/gtk_classes/expander.rb +8 -1
  210. data/lib/gtk_paradise/gtk_classes/file_chooser_dialog.rb +1 -1
  211. data/lib/gtk_paradise/gtk_classes/file_filter.rb +4 -2
  212. data/lib/gtk_paradise/gtk_classes/file_selection.rb +4 -3
  213. data/lib/gtk_paradise/gtk_classes/frame.rb +19 -1
  214. data/lib/gtk_paradise/gtk_classes/grid.rb +206 -160
  215. data/lib/gtk_paradise/gtk_classes/hbox.rb +145 -0
  216. data/lib/gtk_paradise/gtk_classes/header_bar.rb +19 -8
  217. data/lib/gtk_paradise/gtk_classes/image.rb +1 -1
  218. data/lib/gtk_paradise/gtk_classes/label.rb +174 -135
  219. data/lib/gtk_paradise/gtk_classes/menu.rb +7 -3
  220. data/lib/gtk_paradise/gtk_classes/menu_bar.rb +1 -1
  221. data/lib/gtk_paradise/gtk_classes/menu_item.rb +1 -1
  222. data/lib/gtk_paradise/gtk_classes/notebook.rb +114 -64
  223. data/lib/gtk_paradise/gtk_classes/paned.rb +52 -0
  224. data/lib/gtk_paradise/gtk_classes/radio_menu_item.rb +19 -1
  225. data/lib/gtk_paradise/gtk_classes/scale_button.rb +16 -1
  226. data/lib/gtk_paradise/gtk_classes/scrolled_window.rb +8 -6
  227. data/lib/gtk_paradise/gtk_classes/search_bar.rb +1 -1
  228. data/lib/gtk_paradise/gtk_classes/source_buffer.rb +4 -5
  229. data/lib/gtk_paradise/gtk_classes/spin_button.rb +9 -1
  230. data/lib/gtk_paradise/gtk_classes/spinner.rb +32 -2
  231. data/lib/gtk_paradise/gtk_classes/status_icon.rb +2 -0
  232. data/lib/gtk_paradise/gtk_classes/statusbar.rb +1 -0
  233. data/lib/gtk_paradise/gtk_classes/style_context.rb +71 -0
  234. data/lib/gtk_paradise/gtk_classes/text_buffer.rb +45 -19
  235. data/lib/gtk_paradise/gtk_classes/text_view.rb +20 -3
  236. data/lib/gtk_paradise/gtk_classes/toggle_button.rb +3 -0
  237. data/lib/gtk_paradise/gtk_classes/toolbar.rb +2 -2
  238. data/lib/gtk_paradise/gtk_classes/tree_iter.rb +1 -1
  239. data/lib/gtk_paradise/gtk_classes/tree_view.rb +93 -70
  240. data/lib/gtk_paradise/gtk_classes/tree_view_column.rb +2 -1
  241. data/lib/gtk_paradise/gtk_classes/vbox.rb +71 -10
  242. data/lib/gtk_paradise/gtk_classes/vscale.rb +2 -2
  243. data/lib/gtk_paradise/gtk_classes/widget.rb +1057 -590
  244. data/lib/gtk_paradise/gtk_classes/window.rb +37 -2
  245. data/lib/gtk_paradise/hello_world/README.md +1 -1
  246. data/lib/gtk_paradise/hello_world/hello_world_gtk4.rb +20 -0
  247. data/lib/gtk_paradise/images/icons/close_image.png +0 -0
  248. data/lib/gtk_paradise/images/icons/closed.png +0 -0
  249. data/lib/gtk_paradise/images/icons/directory.png +0 -0
  250. data/lib/gtk_paradise/images/icons/icon_cool.gif +0 -0
  251. data/lib/gtk_paradise/images/icons/icon_lol.gif +0 -0
  252. data/lib/gtk_paradise/images/icons/icon_smile.gif +0 -0
  253. data/lib/gtk_paradise/images/icons/opened.png +0 -0
  254. data/lib/gtk_paradise/images/internal/gtk_label_example.png +0 -0
  255. data/lib/gtk_paradise/images/misc/wiki_logo.png +0 -0
  256. data/lib/gtk_paradise/images/small/GREEN_CIRCLE.png +0 -0
  257. data/lib/gtk_paradise/images/small/README.md +2 -0
  258. data/lib/gtk_paradise/images/small/RED_CIRCLE.png +0 -0
  259. data/lib/gtk_paradise/pango/{pango_fonts.rb → fonts.rb} +2 -2
  260. data/lib/gtk_paradise/pango/{pango.rb → layout.rb} +1 -1
  261. data/lib/gtk_paradise/pango/pango_renderer.rb +9 -2
  262. data/lib/gtk_paradise/project/project.rb +4 -3
  263. data/lib/gtk_paradise/prototypes/README.md +8 -0
  264. data/lib/gtk_paradise/prototypes/gtk3_standalone.rb +8 -21
  265. data/lib/gtk_paradise/prototypes/gtk4_standalone.rb +135 -0
  266. data/lib/gtk_paradise/prototypes/shared_code.rb +5 -15
  267. data/lib/gtk_paradise/prototypes/unified_gtk_prototype.rb +179 -0
  268. data/lib/gtk_paradise/require_gtk4.rb +7 -0
  269. data/lib/gtk_paradise/requires/require_base_module.rb +7 -0
  270. data/lib/gtk_paradise/requires/require_files_irrespective_of_the_gtk_version_at_hand.rb +25 -16
  271. data/lib/gtk_paradise/requires/require_gtk2.rb +6 -4
  272. data/lib/gtk_paradise/requires/{require_gtk2_or_gtk3.rb → require_gtk2_or_gtk3_or_gtk4.rb} +33 -12
  273. data/lib/gtk_paradise/requires/require_gtk3.rb +5 -20
  274. data/lib/gtk_paradise/requires/require_gtk4.rb +13 -0
  275. data/lib/gtk_paradise/requires/require_gtk_runner.rb +1 -0
  276. data/lib/gtk_paradise/requires/require_the_base_module_and_gtk_run.rb +1 -1
  277. data/lib/gtk_paradise/requires/require_the_base_module_the_app_module_and_the_toplevel_methods.rb +9 -0
  278. data/lib/gtk_paradise/requires/require_the_classes_files_for_gtk4.rb +11 -0
  279. data/lib/gtk_paradise/requires/require_the_colours_gem.rb +9 -0
  280. data/lib/gtk_paradise/requires/require_the_default_gtk_version.rb +4 -2
  281. data/lib/gtk_paradise/requires/require_the_toplevel_methods.rb +1 -1
  282. data/lib/gtk_paradise/run.rb +1 -0
  283. data/lib/gtk_paradise/run_this_widget/run_this_widget.rb +7 -3
  284. data/lib/gtk_paradise/threads/threads.rb +15 -10
  285. data/lib/gtk_paradise/toplevel_methods/css.rb +183 -35
  286. data/lib/gtk_paradise/toplevel_methods/cursor.rb +17 -3
  287. data/lib/gtk_paradise/toplevel_methods/determine_which_gtk_version_is_in_use.rb +90 -8
  288. data/lib/gtk_paradise/toplevel_methods/events.rb +6 -0
  289. data/lib/gtk_paradise/toplevel_methods/keys.rb +1 -1
  290. data/lib/gtk_paradise/toplevel_methods/screen_resolution.rb +32 -5
  291. data/lib/gtk_paradise/toplevel_methods/text_buffer_tags.rb +13 -4
  292. data/lib/gtk_paradise/toplevel_methods/tokenizer.rb +18 -3
  293. data/lib/gtk_paradise/toplevel_methods/{misc.rb → toplevel_methods.rb} +728 -181
  294. data/lib/gtk_paradise/utility_scripts/commandline_to_automatic_gui.rb +244 -0
  295. data/lib/gtk_paradise/version/version.rb +2 -2
  296. data/lib/gtk_paradise/widgets/gtk2/cat_merge.rb +2 -6
  297. data/lib/gtk_paradise/widgets/gtk2/cell_renderer_progress_example.rb +0 -5
  298. data/lib/gtk_paradise/widgets/gtk2/foto_lister.rb +2 -6
  299. data/lib/gtk_paradise/widgets/gtk2/gidnight_commander/gidnight_commander.rb +3 -3
  300. data/lib/gtk_paradise/widgets/gtk2/hbox_example.rb +1 -5
  301. data/lib/gtk_paradise/widgets/gtk2/multiple_select_in_a_tree_view_widget.rb +2 -6
  302. data/lib/gtk_paradise/widgets/gtk2/paned_example.rb +1 -1
  303. data/lib/gtk_paradise/widgets/gtk2/slider_changing_button.rb +2 -6
  304. data/lib/gtk_paradise/widgets/gtk2/status_icon_example.rb +2 -6
  305. data/lib/gtk_paradise/widgets/gtk2/table2.rb +2 -6
  306. data/lib/gtk_paradise/widgets/gtk2/toolbar_example.rb +2 -6
  307. data/lib/gtk_paradise/widgets/{version_agnostic → gtk3/audio_button}/audio_button.rb +15 -26
  308. data/lib/gtk_paradise/widgets/gtk3/burn_this_iso_file/burn_this_iso_file.rb +2 -6
  309. data/lib/gtk_paradise/widgets/{version_agnostic → gtk3/button_open_remote_webpage}/button_open_remote_webpage.rb +105 -50
  310. data/lib/gtk_paradise/widgets/gtk3/button_with_border/button_with_border.rb +155 -0
  311. data/lib/gtk_paradise/widgets/{version_agnostic → gtk3/button_xorg_buffer}/button_xorg_buffer.rb +76 -18
  312. data/lib/gtk_paradise/widgets/gtk3/calculator/calculator.rb +183 -76
  313. data/lib/gtk_paradise/widgets/gtk3/checkbox_image/checkbox_image.rb +3 -7
  314. data/lib/gtk_paradise/widgets/{version_agnostic → gtk3/coloured_button}/coloured_button.rb +94 -24
  315. data/lib/gtk_paradise/widgets/gtk3/coloured_square/coloured_square.rb +2 -6
  316. data/lib/gtk_paradise/widgets/gtk3/coloured_unit/coloured_unit.rb +151 -0
  317. data/lib/gtk_paradise/widgets/gtk3/cpu_widget/cpu_widget.rb +2 -6
  318. data/lib/gtk_paradise/widgets/gtk3/directory_content_widget/directory_content_widget.rb +937 -7
  319. data/lib/gtk_paradise/widgets/gtk3/editor/connect_skeleton.rb +33 -38
  320. data/lib/gtk_paradise/widgets/gtk3/editor/create.rb +66 -41
  321. data/lib/gtk_paradise/widgets/gtk3/editor/editor.rb +256 -270
  322. data/lib/gtk_paradise/widgets/gtk3/editor/internal_widgets/goto_line_widget.rb +52 -65
  323. data/lib/gtk_paradise/widgets/gtk3/editor/misc.rb +358 -111
  324. data/lib/gtk_paradise/widgets/gtk3/files_in_directory/files_in_directory.rb +2 -7
  325. data/lib/gtk_paradise/widgets/gtk3/flexible_vte/flexible_vte.rb +3 -7
  326. data/lib/gtk_paradise/widgets/gtk3/font_size_widget/action_button.rb +1 -5
  327. data/lib/gtk_paradise/widgets/gtk3/font_size_widget/font_size_widget.rb +2 -6
  328. data/lib/gtk_paradise/widgets/{gtk2 → gtk3}/gidnight_commander/gidnight_commander.config +1 -2
  329. data/lib/gtk_paradise/widgets/gtk3/gidnight_commander/gidnight_commander.rb +165 -125
  330. data/lib/gtk_paradise/widgets/gtk3/image_close_on_click_action/image_close_on_click_action.rb +34 -2
  331. data/lib/gtk_paradise/widgets/gtk3/image_viewer/image_viewer.rb +23 -26
  332. data/lib/gtk_paradise/widgets/gtk3/information_about_the_harddisc/harddisc_information.rb +161 -0
  333. data/lib/gtk_paradise/widgets/gtk3/insert_character/insert_character.rb +24 -29
  334. data/lib/gtk_paradise/widgets/gtk3/linux_users/linux_users.rb +32 -32
  335. data/lib/gtk_paradise/widgets/gtk3/my_calendar/my_calendar.rb +330 -7
  336. data/lib/gtk_paradise/widgets/gtk3/my_image_menu_item/my_image_menu_item.rb +179 -0
  337. data/lib/gtk_paradise/widgets/gtk3/non_numbers_only/non_numbers_only.rb +136 -0
  338. data/lib/gtk_paradise/widgets/gtk3/note_window/note_window.rb +199 -0
  339. data/lib/gtk_paradise/widgets/gtk3/notebook_controller/notebook_controller.rb +311 -7
  340. data/lib/gtk_paradise/widgets/gtk3/notebook_tab_with_icon/notebook_tab_with_icon.rb +402 -7
  341. data/lib/gtk_paradise/widgets/gtk3/numbered_lines/numbered_lines.rb +128 -82
  342. data/lib/gtk_paradise/widgets/{version_agnostic → gtk3/numbers_only}/numbers_only.rb +15 -3
  343. data/lib/gtk_paradise/widgets/gtk3/ping_widget/ping_widget.rb +491 -8
  344. data/lib/gtk_paradise/widgets/gtk3/regex_matcher/regex_matcher.rb +362 -43
  345. data/lib/gtk_paradise/widgets/gtk3/rename_widget/rename_widget.rb +8 -25
  346. data/lib/gtk_paradise/widgets/gtk3/show_which_key_was_pressed/show_which_key_was_pressed.rb +190 -0
  347. data/lib/gtk_paradise/widgets/gtk3/stopwatch/stopwatch.rb +318 -7
  348. data/lib/gtk_paradise/widgets/gtk3/sys_message/sys_message.rb +219 -7
  349. data/lib/gtk_paradise/widgets/gtk3/system_information/system_information.rb +58 -34
  350. data/lib/gtk_paradise/widgets/gtk3/tabble/admin_panel.rb +2 -6
  351. data/lib/gtk_paradise/widgets/gtk3/tabble/image_and_button.rb +2 -6
  352. data/lib/gtk_paradise/widgets/gtk3/tabble/tabble.rb +2 -6
  353. data/lib/gtk_paradise/widgets/gtk3/view_webpage/view_webpage.rb +2 -6
  354. data/lib/gtk_paradise/widgets/gtk3/wiki/README.md +4 -0
  355. data/lib/gtk_paradise/widgets/gtk3/wiki/wiki.rb +388 -0
  356. data/lib/gtk_paradise/widgets/gtk4/ping_widget/ping_widget.rb +4 -0
  357. data/lib/gtk_paradise/widgets/gtk4/show_icon_theme/show_icon_theme.rb +134 -0
  358. data/lib/gtk_paradise/widgets/gtk4/sys_message/sys_message.rb +269 -0
  359. data/lib/gtk_paradise/widgets/{gtk2/stopwatch/stopwatch.rb → gtk4/xpm_loader/xpm_loader.rb} +13 -11
  360. data/lib/gtk_paradise/widgets/shared_code/browser/browser_module.rb +4 -16
  361. data/lib/gtk_paradise/widgets/shared_code/cdripper/cdripper_module.rb +1 -1
  362. data/lib/gtk_paradise/widgets/shared_code/colour_filled_widget/colour_filled_widget_module.rb +25 -28
  363. data/lib/gtk_paradise/widgets/shared_code/colour_palette/colour_palette_module.rb +2 -2
  364. data/lib/gtk_paradise/widgets/shared_code/contacts/contacts_module.rb +62 -64
  365. data/lib/gtk_paradise/widgets/shared_code/flip_state_widget/flip_state_widget_module.rb +3 -19
  366. data/lib/gtk_paradise/widgets/shared_code/information_about_the_harddisc/harddisc_information.rb +0 -155
  367. data/lib/gtk_paradise/widgets/shared_code/information_about_the_harddisc/information_about_the_harddisc_module.rb +0 -444
  368. data/lib/gtk_paradise/widgets/shared_code/lsmod/lsmod_module.rb +22 -26
  369. data/lib/gtk_paradise/widgets/shared_code/lspci/lspci_module.rb +24 -36
  370. data/lib/gtk_paradise/widgets/shared_code/mini_clock/mini_clock_module.rb +74 -58
  371. data/lib/gtk_paradise/widgets/shared_code/my_calendar/my_calendar_module.rb +0 -327
  372. data/lib/gtk_paradise/widgets/shared_code/pid_displayer/pid_displayer_module.rb +53 -41
  373. data/lib/gtk_paradise/widgets/shared_code/random_image/random_image_module.rb +46 -29
  374. data/lib/gtk_paradise/widgets/shared_code/select_file/select_file_module.rb +1 -1
  375. data/lib/gtk_paradise/widgets/shared_code/show_icon_theme/show_icon_theme_module.rb +56 -44
  376. data/lib/gtk_paradise/widgets/shared_code/simple_clock/simple_clock_module.rb +1 -12
  377. data/lib/gtk_paradise/widgets/shared_code/stopwatch/stopwatch_module.rb +0 -341
  378. data/lib/gtk_paradise/widgets/shared_code/sys_message/sys_message_module.rb +0 -211
  379. data/lib/gtk_paradise/widgets/shared_code/tabby/tabby_module.rb +3 -15
  380. data/lib/gtk_paradise/widgets/shared_code/xpm_loader/xpm_loader_module.rb +15 -23
  381. data/lib/gtk_paradise/www/index.cgi +2 -2
  382. data/lib/gtk_paradise/yaml/browser_URLs.yml +3 -4
  383. data/lib/gtk_paradise/yaml/configuration_options_for_class_gtk_runner.yml +6 -6
  384. data/lib/gtk_paradise/yaml/experimental/README.md +3 -0
  385. data/lib/gtk_paradise/yaml/experimental/all_widgets.yml +37 -0
  386. data/lib/gtk_paradise/yaml/menu.yml +6 -3
  387. data/lib/gtk_paradise/yaml/notebook_controller.yml +62 -29
  388. data/lib/gtk_paradise.rb +0 -5
  389. data/test/gtk2/testing_combo_box.rb +1 -0
  390. data/test/gtk2/testing_display.rb +23 -0
  391. data/test/gtk2/testing_gtk_image.rb +4 -3
  392. data/test/gtk2/testing_hbox_and_vbox.rb +37 -0
  393. data/test/gtk2/testing_label_with_ampersand.rb +5 -2
  394. data/test/gtk2/testing_notebook.rb +11 -5
  395. data/test/gtk3/test_widget.rb +2 -1
  396. data/test/gtk3/testing_app.rb +0 -1
  397. data/test/gtk3/testing_base_module.rb +2 -1
  398. data/test/gtk3/testing_numbered_lines.rb +20 -0
  399. data/test/gtk3/testing_project_base_directory.rb +6 -1
  400. data/test/gtk3/testing_the_html_pseudo_tags.rb +2 -2
  401. data/test/gtk4/testing_gtk_entry.rb +24 -0
  402. data/test/misc/testing_a_gtk_frame.rb +14 -0
  403. data/test/misc/testing_gtk4_simplifications.rb +105 -0
  404. data/test/misc/testing_gtk_paradise_runner.rb +19 -4
  405. data/test/misc/testing_the_gtk_classes.rb +83 -0
  406. metadata +246 -199
  407. data/lib/gtk_paradise/base_module/change_directory.rb +0 -22
  408. data/lib/gtk_paradise/base_module/combo_box_and_combo_box_entry.rb +0 -113
  409. data/lib/gtk_paradise/base_module/commandline_arguments.rb +0 -36
  410. data/lib/gtk_paradise/base_module/configuration.rb +0 -50
  411. data/lib/gtk_paradise/base_module/constants.rb +0 -23
  412. data/lib/gtk_paradise/base_module/debug.rb +0 -127
  413. data/lib/gtk_paradise/base_module/draggable.rb +0 -95
  414. data/lib/gtk_paradise/base_module/emoji.rb +0 -107
  415. data/lib/gtk_paradise/base_module/esystem.rb +0 -22
  416. data/lib/gtk_paradise/base_module/events.rb +0 -111
  417. data/lib/gtk_paradise/base_module/fonts.rb +0 -119
  418. data/lib/gtk_paradise/base_module/graphics_display.rb +0 -47
  419. data/lib/gtk_paradise/base_module/gtk3.rb +0 -43
  420. data/lib/gtk_paradise/base_module/gtk_buttons.rb +0 -562
  421. data/lib/gtk_paradise/base_module/gtk_entry.rb +0 -126
  422. data/lib/gtk_paradise/base_module/gtk_fixed.rb +0 -18
  423. data/lib/gtk_paradise/base_module/gtk_grid.rb +0 -61
  424. data/lib/gtk_paradise/base_module/gtk_image.rb +0 -501
  425. data/lib/gtk_paradise/base_module/gtk_label.rb +0 -211
  426. data/lib/gtk_paradise/base_module/gtk_notebook.rb +0 -88
  427. data/lib/gtk_paradise/base_module/gtk_scrolled_window.rb +0 -155
  428. data/lib/gtk_paradise/base_module/misc.rb +0 -2949
  429. data/lib/gtk_paradise/base_module/pango.rb +0 -24
  430. data/lib/gtk_paradise/base_module/popover.rb +0 -241
  431. data/lib/gtk_paradise/base_module/register_sigint.rb +0 -20
  432. data/lib/gtk_paradise/base_module/reset.rb +0 -128
  433. data/lib/gtk_paradise/base_module/return_corresponding_gtk_stock_item.rb +0 -92
  434. data/lib/gtk_paradise/base_module/roebe.rb +0 -19
  435. data/lib/gtk_paradise/base_module/table.rb +0 -438
  436. data/lib/gtk_paradise/base_module/time.rb +0 -35
  437. data/lib/gtk_paradise/constants/available_cursors.rb +0 -52
  438. data/lib/gtk_paradise/constants/fonts.rb +0 -38
  439. data/lib/gtk_paradise/constants/misc.rb +0 -56
  440. data/lib/gtk_paradise/constants/newline.rb +0 -14
  441. data/lib/gtk_paradise/constants/xbm_icons.rb +0 -121
  442. data/lib/gtk_paradise/examples/gtk3/003_sorted_tree.rb +0 -141
  443. data/lib/gtk_paradise/examples/gtk3/034_combo_box_example.rb +0 -49
  444. data/lib/gtk_paradise/examples/gtk3/068_text_view_example.rb +0 -34
  445. data/lib/gtk_paradise/examples/gtk3/071_search_bar_example.rb +0 -59
  446. data/lib/gtk_paradise/gtk_classes/colours/colours.rb +0 -158
  447. data/lib/gtk_paradise/requires/require_the_minesweeper_files.rb +0 -11
  448. data/lib/gtk_paradise/toplevel_methods/allow_only_numbers.rb +0 -59
  449. data/lib/gtk_paradise/toplevel_methods/csv.rb +0 -102
  450. data/lib/gtk_paradise/toplevel_methods/e.rb +0 -18
  451. data/lib/gtk_paradise/toplevel_methods/enable_and_disable_warnings.rb +0 -58
  452. data/lib/gtk_paradise/toplevel_methods/keyboard.rb +0 -25
  453. data/lib/gtk_paradise/toplevel_methods/main_file.rb +0 -31
  454. data/lib/gtk_paradise/toplevel_methods/register_sigint.rb +0 -17
  455. data/lib/gtk_paradise/toplevel_methods/roebe.rb +0 -22
  456. data/lib/gtk_paradise/toplevel_methods/select_file.rb +0 -168
  457. data/lib/gtk_paradise/toplevel_methods/spacer.rb +0 -55
  458. data/lib/gtk_paradise/toplevel_methods/tooltips.rb +0 -71
  459. data/lib/gtk_paradise/toplevel_methods/we_use_this_gtk_version.rb +0 -65
  460. data/lib/gtk_paradise/widgets/gtk2/directory_content_widget/directory_content_widget.rb +0 -30
  461. data/lib/gtk_paradise/widgets/gtk2/my_calendar/my_calendar.config +0 -6
  462. data/lib/gtk_paradise/widgets/gtk2/my_calendar/my_calendar.rb +0 -34
  463. data/lib/gtk_paradise/widgets/gtk2/notebook_tab_with_icon/notebook_tab_with_icon.rb +0 -30
  464. data/lib/gtk_paradise/widgets/gtk2/ping_widget/ping_widget.rb +0 -30
  465. data/lib/gtk_paradise/widgets/gtk2/sys_message/sys_message.config +0 -6
  466. data/lib/gtk_paradise/widgets/gtk2/sys_message/sys_message.rb +0 -29
  467. data/lib/gtk_paradise/widgets/shared_code/directory_content_widget/constants.rb +0 -53
  468. data/lib/gtk_paradise/widgets/shared_code/directory_content_widget/directory_content_widget_module.rb +0 -777
  469. data/lib/gtk_paradise/widgets/shared_code/directory_content_widget/handle_this_file_or_symlink.rb +0 -83
  470. data/lib/gtk_paradise/widgets/shared_code/notebook_controller/notebook_controller_module.rb +0 -339
  471. data/lib/gtk_paradise/widgets/shared_code/notebook_tab_with_icon/notebook_tab_with_icon_module.rb +0 -297
  472. data/lib/gtk_paradise/widgets/shared_code/ping_widget/ping_widget_module.rb +0 -326
  473. data/lib/gtk_paradise/widgets/version_agnostic/button_with_border.rb +0 -63
  474. data/lib/gtk_paradise/widgets/version_agnostic/coloured_unit.rb +0 -54
  475. data/lib/gtk_paradise/widgets/version_agnostic/my_image_menu_item.rb +0 -103
  476. data/lib/gtk_paradise/widgets/version_agnostic/my_menu_item_separator.rb +0 -31
  477. data/lib/gtk_paradise/widgets/version_agnostic/non_numbers_only.rb +0 -66
  478. data/lib/gtk_paradise/widgets/version_agnostic/note_window.rb +0 -107
  479. /data/lib/gtk_paradise/examples/gtk3/{084_undecorated_window_example.rb → 014_undecorated_window_example.rb} +0 -0
  480. /data/lib/gtk_paradise/examples/gtk3/{077_status_icon_example.rb → 019_status_icon_example.rb} +0 -0
  481. /data/lib/gtk_paradise/examples/gtk3/{076_stack_example.rb → 020_stack_example.rb} +0 -0
  482. /data/lib/gtk_paradise/examples/gtk3/{006_password_example.rb → 025_password_example.rb} +0 -0
  483. /data/lib/gtk_paradise/examples/gtk3/{015_list_box_example.rb → 033_list_box_example.rb} +0 -0
  484. /data/lib/gtk_paradise/examples/gtk3/{020_radio_button_window.rb → 038_radio_button_window.rb} +0 -0
  485. /data/lib/gtk_paradise/examples/gtk3/{021_scale_button_demo.rb → 039_scale_button_demo.rb} +0 -0
  486. /data/lib/gtk_paradise/examples/gtk3/{024_installation_assistant.rb → 042_installation_assistant.rb} +0 -0
  487. /data/lib/gtk_paradise/examples/gtk3/{035_notebook_css_example.rb → 052_notebook_css_example.rb} +0 -0
  488. /data/lib/gtk_paradise/examples/gtk3/{040_font_chooser_dialog_example.rb → 056_font_chooser_dialog_example.rb} +0 -0
  489. /data/lib/gtk_paradise/examples/gtk3/{041_flowbox.rb → 057_flowbox.rb} +0 -0
  490. /data/lib/gtk_paradise/examples/gtk3/{045_fixed_example.rb → 061_fixed_example.rb} +0 -0
  491. /data/lib/gtk_paradise/examples/gtk3/{054_svg_viewer.rb → 070_svg_viewer.rb} +0 -0
  492. /data/lib/gtk_paradise/examples/gtk3/{065_tooltips_example.rb → 079_tooltips_example.rb} +0 -0
@@ -1,211 +0,0 @@
1
- #!/usr/bin/ruby -w
2
- # Encoding: UTF-8
3
- # frozen_string_literal: true
4
- # =========================================================================== #
5
- # === Gtk::SysMessageModule
6
- #
7
- # This small widget is just a wrapper over xosd.
8
- # =========================================================================== #
9
- # require 'gtk_paradise/widgets/shared_code/sys_message/sys_message_module.rb'
10
- # include ::Gtk::SysMessageModule
11
- # =========================================================================== #
12
- module Gtk
13
-
14
- module SysMessageModule
15
-
16
- begin
17
- require 'roebe/classes/on_screen_display.rb'
18
- rescue LoadError; end
19
-
20
- require 'gtk_paradise/requires/require_the_base_module.rb'
21
- include ::Gtk::BaseModule
22
-
23
- # ========================================================================= #
24
- # === NAMESPACE
25
- # ========================================================================= #
26
- NAMESPACE = inspect
27
-
28
- # ========================================================================= #
29
- # === TITLE
30
- # ========================================================================= #
31
- TITLE = 'Sys-Message'
32
-
33
- # ========================================================================= #
34
- # === ALPHABET
35
- # ========================================================================= #
36
- ALPHABET = ('a'..'z').to_a
37
-
38
- # ========================================================================= #
39
- # === WIDTH
40
- # ========================================================================= #
41
- WIDTH = 1400
42
-
43
- # ========================================================================= #
44
- # === HEIGHT
45
- # ========================================================================= #
46
- HEIGHT = 80
47
-
48
- # ========================================================================= #
49
- # === initialize
50
- #
51
- # The first argument to this method contains the String that the user
52
- # may want to send.
53
- # ========================================================================= #
54
- def initialize(
55
- text = '',
56
- run_already = true
57
- )
58
- super(:horizontal)
59
- reset
60
- run if run_already
61
- set_text(text) if text
62
- end
63
-
64
- # ========================================================================= #
65
- # === reset (reset tag)
66
- # ========================================================================= #
67
- def reset
68
- reset_the_internal_variables
69
- # ======================================================================= #
70
- # === @configuration
71
- # ======================================================================= #
72
- @configuration = [true, __dir__, NAMESPACE]
73
- # ======================================================================= #
74
- # === @height
75
- # ======================================================================= #
76
- set_height(HEIGHT)
77
- # ======================================================================= #
78
- # === @width
79
- # ======================================================================= #
80
- set_width(WIDTH)
81
- set_gtk_font(:hack_20)
82
- use_gtk_paradise_project_css_file
83
- infer_the_size_automatically
84
- end
85
-
86
- # ========================================================================= #
87
- # === padding?
88
- # ========================================================================= #
89
- def padding?
90
- 2
91
- end
92
-
93
- # ========================================================================= #
94
- # === border_size?
95
- # ========================================================================= #
96
- def border_size?
97
- 2
98
- end
99
-
100
- # ========================================================================= #
101
- # === create_skeleton
102
- # ========================================================================= #
103
- def create_skeleton
104
- create_gtk_entries
105
- create_gtk_buttons
106
- end
107
-
108
- # ========================================================================= #
109
- # === Gtk::SysMessage.width?
110
- # ========================================================================= #
111
- def self.width?
112
- WIDTH
113
- end
114
-
115
- # ========================================================================= #
116
- # === Gtk::SysMessage.height?
117
- # ========================================================================= #
118
- def self.height?
119
- HEIGHT
120
- end
121
-
122
- # ========================================================================= #
123
- # === create_gtk_entries
124
- #
125
- # Here you can add text thingies.
126
- # ========================================================================= #
127
- def create_gtk_entries
128
- @entry_message = gtk_entry
129
- @entry_message.set_max_length(150)
130
- @entry_message.set_focus(true)
131
- @entry_message.set_activates_default(true)
132
- end
133
-
134
- # ========================================================================= #
135
- # === set_text
136
- # ========================================================================= #
137
- def set_text(i = nil)
138
- if i
139
- @entry_message.set_text(i.to_s)
140
- end
141
- end
142
-
143
- # ========================================================================= #
144
- # === create_gtk_buttons
145
- # ========================================================================= #
146
- def create_gtk_buttons
147
- @button_send_message = gtk_button('_SendMessage')
148
- @button_send_message.fancy_tooltips = 'Click this button in order '\
149
- 'to send the message via xosd.'
150
- @button_send_message.on_clicked {
151
- # Second arg is true, so we output the sys message.
152
- Roebe::OnScreenDisplay.new(@entry_message.text, false).random_display
153
- }
154
- @button_random_message = gtk_button('_RandomMessage')
155
- @button_random_message.on_clicked {
156
- this_text = ''.dup
157
- 8.times { this_text << ALPHABET.sample }
158
- e this_text
159
- Roebe::OnScreenDisplay.new(this_text, true).random_display
160
- }
161
-
162
- array_buttons = [
163
- @button_send_message, @button_random_message
164
- ]
165
- array_buttons.each { |button|
166
- if button.label == '_RandomMessage'
167
- button.modify_background(:normal, :lawngreen)
168
- else
169
- button.modify_background(:normal, :greenyellow)
170
- end
171
- button.modify_background(:active, :darkcyan)
172
- button.modify_background(:prelight, :ivory)
173
- button.set_name('button1')
174
- button.add_css_class('bblack2')
175
- button.set_size_request(120, 25)
176
- button.do_not_resize
177
- }
178
- end
179
-
180
- # ========================================================================= #
181
- # === connect_skeleton (connect tag)
182
- # ========================================================================= #
183
- def connect_skeleton
184
- minimal(@button_send_message,2)
185
- maximal(@entry_message,2)
186
- minimal(@button_random_message,2)
187
- exit_on_delete_event
188
- show_all
189
- end
190
-
191
- # ========================================================================= #
192
- # === run
193
- # ========================================================================= #
194
- def run
195
- create_skeleton_then_connect_skeleton
196
- end
197
-
198
- # ========================================================================= #
199
- # === GtkParadise::GUI::Gtk::SysMessageModule.run
200
- # ========================================================================= #
201
- def self.run
202
- require 'gtk_paradise/run'
203
- _ = ::Gtk::SysMessage.new
204
- r = ::Gtk.run
205
- r << _
206
- r.set_default_size(_.width?, _.height?)
207
- r.automatic
208
- r.top_left_then_run
209
- end
210
-
211
- end; end
@@ -13,14 +13,8 @@ class Tabby
13
13
 
14
14
  module TabbyModule
15
15
 
16
- require 'gtk_paradise/requires/require_the_base_module.rb'
17
16
  include ::Gtk::BaseModule
18
17
 
19
- # ========================================================================= #
20
- # === NAMESPACE
21
- # ========================================================================= #
22
- NAMESPACE = inspect
23
-
24
18
  # ========================================================================= #
25
19
  # === TITLE
26
20
  # ========================================================================= #
@@ -75,18 +69,12 @@ module TabbyModule
75
69
  # ========================================================================= #
76
70
  def reset
77
71
  reset_the_internal_variables
72
+ infer_the_namespace
78
73
  # ======================================================================= #
79
74
  # === @configuration
80
75
  # ======================================================================= #
81
- @configuration = [true, __dir__, NAMESPACE]
82
- # ======================================================================= #
83
- # === @width
84
- # ======================================================================= #
85
- set_width(WIDTH)
86
- # ======================================================================= #
87
- # === @height
88
- # ======================================================================= #
89
- set_height(HEIGHT)
76
+ @configuration = [true, __dir__, namespace?]
77
+ width_height(WIDTH, HEIGHT)
90
78
  use_gtk_paradise_project_css_file
91
79
  infer_the_size_automatically
92
80
  end
@@ -9,16 +9,10 @@
9
9
  # =========================================================================== #
10
10
  module Gtk
11
11
 
12
- module XpmLoaderModule
12
+ module XpmLoaderModule # === Gtk::XpmLoaderModule
13
13
 
14
- require 'gtk_paradise/requires/require_the_base_module.rb'
15
14
  include ::Gtk::BaseModule
16
15
 
17
- # ========================================================================= #
18
- # === NAMESPACE
19
- # ========================================================================= #
20
- NAMESPACE = inspect
21
-
22
16
  # ========================================================================= #
23
17
  # === TITLE
24
18
  # ========================================================================= #
@@ -88,23 +82,12 @@ module XpmLoaderModule
88
82
  # ========================================================================= #
89
83
  def reset
90
84
  reset_the_internal_variables
85
+ infer_the_namespace
91
86
  # ======================================================================= #
92
87
  # === @configuration
93
88
  # ======================================================================= #
94
- @configuration = [true, __dir__, NAMESPACE]
95
- # ======================================================================= #
96
- # === @title
97
- # ======================================================================= #
98
- set_title(TITLE)
99
- # ======================================================================= #
100
- # === @width
101
- # ======================================================================= #
102
- set_width(WIDTH)
103
- # ======================================================================= #
104
- # === @height
105
- # ======================================================================= #
106
- set_height(HEIGHT)
107
- set_use_this_font(USE_THIS_FONT)
89
+ @configuration = [true, __dir__, namespace?]
90
+ title_width_height_font(TITLE, WIDTH, HEIGHT, USE_THIS_FONT)
108
91
  use_gtk_paradise_project_css_file
109
92
  infer_the_size_automatically
110
93
  end
@@ -160,7 +143,7 @@ module XpmLoaderModule
160
143
  # ========================================================================= #
161
144
  def connect_skeleton
162
145
  abort_on_exception
163
- add(@gtk_image)
146
+ add_or_append(@gtk_image)
164
147
  show_all
165
148
  end
166
149
 
@@ -168,7 +151,7 @@ module XpmLoaderModule
168
151
  # === run (run tag)
169
152
  # ========================================================================= #
170
153
  def run
171
- create_skeleton_then_connect_skeleton
154
+ super()
172
155
  end
173
156
 
174
157
  # ========================================================================= #
@@ -187,4 +170,13 @@ module XpmLoaderModule
187
170
  r.top_left_then_run
188
171
  end
189
172
 
173
+ # ========================================================================= #
174
+ # === Gtk::XpmLoaderModule.run_gtk4
175
+ # ========================================================================= #
176
+ def self.run_gtk4(i = ARGV)
177
+ ::Gtk.default_application('xpm.loader') {{
178
+ widget_to_use: ::Gtk::XpmLoader.new
179
+ }}
180
+ end
181
+
190
182
  end; end
@@ -9,8 +9,8 @@ require 'cyberweb/autoinclude'
9
9
  require 'roebe/documentation/documentation.rb'
10
10
  require 'gtk_paradise/project/project.rb'
11
11
 
12
- german {
13
- css_style :template1
12
+ german('GTK-Paradise index') {
13
+ template1
14
14
  favicon :ruby_favicon
15
15
  body_css_class 'mar0px pad0px VERDANAs'
16
16
  body_css_style 'background-color: #d3d2d1;'
@@ -10,13 +10,12 @@
10
10
  # =========================================================================== #
11
11
 
12
12
  - https://www.wikipedia.org/
13
- - https://www.derstandard.at/
14
13
  - https://ruby-gnome2.osdn.jp/hiki.cgi
15
14
  - https://rubygems.org/gems/gtk_paradise
16
15
  - https://bugs.ruby-lang.org/projects/ruby-master
17
16
  - https://github.com/kojix2/libui
18
- - https://old.reddit.com/r/kde/
19
- - https://old.reddit.com/r/linux/
20
- - https://old.reddit.com/r/programming/
21
17
  - https://students.boku.ac.at/
22
18
  - https://mail.student.tuwien.ac.at/webmail/
19
+ - https://old.reddit.com/r/kde/
20
+ - https://old.reddit.com/r/linux/
21
+ - https://old.reddit.com/r/programming/
@@ -7,16 +7,16 @@
7
7
  #
8
8
  # This particular configuration option does the following:
9
9
  #
10
- # - If set to false it will be ignored completely. :)
10
+ # - If set to false then it will be ignored completely. :)
11
11
  #
12
12
  # - If set to true, however had, then it will enable the method
13
13
  # call .enable_easy_exit() on all instances of Gtk::Runner.
14
14
  #
15
- # The idea behind this is that, in general and by default, to enable the
16
- # key combination "alt+q", to indicate that the user wants to quit the
17
- # application right now. Thus, we can skip manually having to add
18
- # this key combination - we do not have to call any method in addition
19
- # to that, if this is enabled via this yaml file here.
15
+ # The idea behind this is that, in general and by default, to specifically
16
+ # enable the key combination "alt+q", to indicate that the user wants
17
+ # to quit the application right now. Thus, we can skip manually having
18
+ # to add this key combination - we do not have to call any method in
19
+ # addition to that, if this is enabled via this yaml file here.
20
20
  #
21
21
  # That way, if you have lots of ruby-gtk applications that make
22
22
  # use of Gtk::Runner, you can then simply exit from all of them
@@ -0,0 +1,3 @@
1
+ This directory may contain some things for testing purposes,
2
+ such as a .yml file that can be used to describe all widgets
3
+ for a given gtk-app.
@@ -0,0 +1,37 @@
1
+ # =========================================================================== #
2
+ # x = YAML.load_file('all_widgets.yml')
3
+ #
4
+ # This file is the reference .yml file for any custom .yml file you
5
+ # may want to use for your application at hand.
6
+ # =========================================================================== #
7
+ buttons:
8
+
9
+ button1:
10
+ text: 'This is button #1.'
11
+ css_class: 'mars1em pad8px bblack3'
12
+ on_clicked: do_something1
13
+
14
+ button2:
15
+ text: 'This is button #2.'
16
+ css_class: 'mars1em pad5px bblack1'
17
+ on_clicked: do_something2
18
+
19
+ button3:
20
+ text: 'A cat button.'
21
+ css_class: 'mars1em pad5px bgreen3'
22
+ on_clicked: do_something3
23
+
24
+ button4:
25
+ text: 'A mouse button.'
26
+ css_class: 'mars1em pad5px border_3px_black_dotted'
27
+ on_clicked: do_something4
28
+
29
+ button5:
30
+ text: 'A test button.'
31
+ css_class: 'mars1em pad5px test2'
32
+ on_clicked: do_something5
33
+
34
+ entries:
35
+ entry1:
36
+ text: 'This is entry #1.'
37
+ css_class: 'mars1em pad8px bblack3'
@@ -34,8 +34,6 @@
34
34
  # =========================================================================== #
35
35
  # Explanation of the options used in this yaml file:
36
36
  #
37
- # - x_pos is used to arrange the entries (tabble). Deprecated as of August 2021.
38
- # - y_pos is used to arrange the entries (tabble). Deprecated as of August 2021.
39
37
  # - generate: false (true is default and may be omitted.
40
38
  # if false is set, we dont generate
41
39
  # this entry. Thus you can use it
@@ -44,9 +42,14 @@
44
42
  # - idesk: true(if true, we generate an entry for idesk)
45
43
  #
46
44
  # =========================================================================== #
45
+ # Deprecated entries:
46
+ #
47
+ # - x_pos is used to arrange the entries (tabble). Deprecated as of August 2021.
48
+ # - y_pos is used to arrange the entries (tabble). Deprecated as of August 2021.
49
+ # =========================================================================== #
47
50
  # For fluxbox, the entry may look like this:
48
51
  #
49
- # [exec] (FireFox) {/Programs/Firefox/bin/firefox} </home/x/data/IMG/FF/FIREFOX_FAVICON.xpm>
52
+ # [exec] (FireFox) {/Programs/Firefox/bin/firefox} </home/x/data/images/FF/FIREFOX_FAVICON.xpm>
50
53
  #
51
54
  # =========================================================================== #
52
55
  # For tabble, we can use an entry similar to this one here:
@@ -19,6 +19,11 @@
19
19
  # x = YAML.load_file('control_panel.yml'); pp x; ''
20
20
  # =========================================================================== #
21
21
 
22
+ # =========================================================================== #
23
+ # === (1) Gidnight commander
24
+ # =========================================================================== #
25
+ # - x/GUI/gtk/tools/commander/gidnight_commander.rb
26
+
22
27
  # =========================================================================== #
23
28
  # === (1) Gtk::BurningWidget
24
29
  # =========================================================================== #
@@ -95,7 +100,7 @@ coloured_square:
95
100
  # === (12) Studium::GUI::Gtk::AskExamQuestion
96
101
  # =========================================================================== #
97
102
  ask_exam_question:
98
- Studium::GUI::Gtk::AskExamQuestion
103
+ Studium::GUI::Gtk::ExamQuestionWidget
99
104
 
100
105
  # =========================================================================== #
101
106
  # === (13) A little "google-search widget"
@@ -115,13 +120,8 @@ multimedia_paradise/gui/gtk3/multimedia_notebook/multimedia_notebook.rb:
115
120
  # === (13) This should be the Bioroebe-controller. Unfortunately it takes
116
121
  # too long ...
117
122
  # =========================================================================== #
118
- # bioroebe/gui/gtk3/notebook/notebook.rb:
119
- # Bioroebe::GUI::Gtk::Notebook
120
-
121
-
122
-
123
-
124
-
123
+ # bioroebe/gui/gtk3/controller/controller.rb:
124
+ # Bioroebe::GUI::Gtk::Controller
125
125
 
126
126
  # =========================================================================== #
127
127
  # === (01) The Roebe Shell
@@ -155,18 +155,12 @@ multimedia_paradise/gui/gtk3/multimedia_notebook/multimedia_notebook.rb:
155
155
  # ascii_paradise/gui/gtk3/animated_frame/widget.rb:
156
156
  # AsciiParadise::GUI::Gtk::Widget
157
157
 
158
-
159
-
160
-
161
-
162
158
  # =========================================================================== #
163
159
  # === (08) "Browser"
164
160
  # =========================================================================== #
165
161
  # browser:
166
162
  # Gtk::Browser
167
163
 
168
-
169
-
170
164
  # =========================================================================== #
171
165
  # === (10) The file-viewer widget
172
166
  # =========================================================================== #
@@ -185,7 +179,6 @@ multimedia_paradise/gui/gtk3/multimedia_notebook/multimedia_notebook.rb:
185
179
  # psaux_viewer:
186
180
  # Gtk::PsauxViewer
187
181
 
188
-
189
182
  # =========================================================================== #
190
183
  # === (15) Environment Information
191
184
  #
@@ -207,25 +200,19 @@ multimedia_paradise/gui/gtk3/multimedia_notebook/multimedia_notebook.rb:
207
200
  # simple_clock:
208
201
  # Gtk::SimpleClock
209
202
 
210
-
211
-
212
-
213
-
214
-
215
-
216
-
217
-
203
+ # =========================================================================== #
218
204
  # coloured_bar:
205
+ # =========================================================================== #
219
206
  # Gtk::ColouredBar
220
207
 
221
-
222
-
223
-
224
-
208
+ # =========================================================================== #
225
209
  # control_panel:
210
+ # =========================================================================== #
226
211
  # Gtk::ControlPanel
227
212
 
213
+ # =========================================================================== #
228
214
  # debug_widget:
215
+ # =========================================================================== #
229
216
  # Gtk::DebugWidget
230
217
 
231
218
 
@@ -271,7 +258,6 @@ multimedia_paradise/gui/gtk3/multimedia_notebook/multimedia_notebook.rb:
271
258
  # Gtk::SelectFile
272
259
 
273
260
 
274
-
275
261
  # sys_message:
276
262
  # Gtk::SysMessage
277
263
 
@@ -296,4 +282,51 @@ multimedia_paradise/gui/gtk3/multimedia_notebook/multimedia_notebook.rb:
296
282
  # === (03) conky
297
283
  # =========================================================================== #
298
284
  # conky:
299
- # Gtk::Conky
285
+ # Gtk::Conky
286
+
287
+ # =========================================================================== #
288
+ # The remaining entries are legacy from the old ruby-gtk2 implementation.
289
+ # =========================================================================== #
290
+
291
+ # ============================================================================ #
292
+ # x = YAML.load_file('/Users/x/DATA/PC/RUBY/SRC/GUI/GTK2/SYSTEM/YAML/system_launcher_requires.yml')
293
+ # ============================================================================ #
294
+
295
+ # - x/GUI/GTK2/CFDG/gtk2_confree_generator.rb
296
+ # - x/GUI/GTK2/AUDIO/audio_player.rb
297
+ # - x/GUI/gtk/tools/foto_lister.rb
298
+ # - multimedia
299
+ # - x/GUI/GTK2/colour_selection.rb
300
+ # - x/GUI/GTK2/firefox_url_grabber.rb
301
+ # - bioroebe/lib/bioroebe/gui/www_finder.rb
302
+ # - x/GUI/GTK2/BIOLOGY/anti_sense_strand.rb
303
+ # - x/GUI/GTK2/BIOLOGY/restriction_enzymes.rb
304
+ # - x/GUI/GTK2/CALCULATOR/gtk_calculator.rb
305
+ # - x/GUI/GTK2/EDITORS/RUBY_VIM/gtk_vim.rb
306
+ # - x/GUI/GTK2/FTP/gtk2_ftp_client.rb
307
+ # - x/GUI/GTK2/FILE_OPENER/file_opener.rb
308
+ # - x/GUI/GTK2/IMG/gtk_imageshack.rb
309
+ # - x/GUI/GTK2/GAMES/AMPLES/ample_game.rb
310
+ # - x/GUI/GTK2/GAMES/ASTEROIDS_FIGHTER/asteroids_fighter.rb
311
+ # - x/GUI/GTK2/GAMES/MASTERMIND/mastermind.rb
312
+ # - x/GUI/GTK2/GAMES/MINESWEEPER/new_minesweeper.rb
313
+ # - x/GUI/GTK2/GAMES/SCRAMBLE/scramble.rb
314
+ # - x/GUI/GTK2/GAMES/TICTACTOE/tictactoe.rb
315
+ # - x/GUI/GTK2/GAMES/VIER_GEWINNT/vier_gewinnt.rb
316
+ # - x/GUI/GTK2/RBT/Gtk_RecipeMaker.rb
317
+ # - x/GUI/GTK2/KEYGRABBER/keygrabber.rb
318
+ # - x/GUI/GTK2/MMEDIA/gtk2_multimedia_wrapper.rb
319
+ # - x/GUI/GTK2/MMEDIA/multimedia_converter.rb
320
+ # - x/GUI/GTK2/RPG/DSA/gtk2_simulator_wrapper.rb
321
+ # - x/GUI/GTK2/RPG/CHARACTER_INVENTORY/character_inventory.rb
322
+ # - x/GUI/GTK2/RPG/rpg_admin.rb
323
+ # - x/GUI/GTK2/RPG/SR/npc_storer.rb
324
+ # - x/GUI/gtk/tools/code_generator.rb
325
+ # - x/GUI/gtk/tools/file_viewer.rb
326
+ #
327
+
328
+ # - x/GUI/gtk/tools/google_searcher.rb
329
+ # - x/GUI/gtk/tools/gtk2_backup_wrapper.rb
330
+ # - x/GUI/gtk/tools/regex_matcher.rb
331
+ # - x/GUI/gtk/tools/rxorg_creator.rb
332
+ # - x/GUI/gtk/tools/todo.rb
data/lib/gtk_paradise.rb CHANGED
@@ -1,5 +0,0 @@
1
- #!/usr/bin/ruby -w
2
- # Encoding: UTF-8
3
- # frozen_string_literal: true
4
- # =========================================================================== #
5
- require 'gtk_paradise/requires/require_gtk3.rb' # This is the default since as of 2020.
@@ -18,6 +18,7 @@ array.each {|entry|
18
18
  }
19
19
  combo_box.active = 1
20
20
  r = Gtk.run
21
+ r.width_height(800, 600)
21
22
  r.increase_font_size
22
23
  r << Gtk.add_notebook(combo_box)
23
24
  r.top_left_then_show
@@ -0,0 +1,23 @@
1
+ require 'gtk2'
2
+
3
+ alias e puts
4
+
5
+ # Gdk::Display exists in ruby-gtk2:
6
+ pp Gdk::Display
7
+ pp Gdk::Display.class
8
+ e '='*80
9
+ e
10
+ e 'Does this method exist: Gdk::Display.default'
11
+ e
12
+ pp Gdk::Display.default # .primary_monitor.geometry.width
13
+ e '='*80
14
+ e 'Next testing Gdk::Screen.default:'
15
+ e
16
+ _ = Gdk::Screen.default
17
+ pp _
18
+ pp [_.width, _.height]
19
+
20
+ e '='*80
21
+
22
+ # The next method will fail for ruby-gtk2:
23
+ # pp Gdk::Display.default.primary_monitor.geometry.width
@@ -2,13 +2,13 @@
2
2
  # Encoding: UTF-8
3
3
  # frozen_string_literal: true
4
4
  # =========================================================================== #
5
- require 'gtk_paradise/require_gtk3'
5
+ require 'gtk_paradise/require_gtk2'
6
6
  require 'colours/colours_e_autoinclude.rb'
7
7
 
8
8
  include Gtk::BaseModule
9
-
9
+ e
10
10
  e 'Testing '+Colours.steelblue('Gtk::Notebook')+' next:'
11
-
11
+ e
12
12
  label = gtk_bold_label('Testing ::Gtk.image(:weather) next: ')
13
13
  image = ::Gtk.image(:weather_icon)
14
14
 
@@ -17,6 +17,7 @@ hbox.add(label)
17
17
  hbox.add(image)
18
18
 
19
19
  r = Gtk.run
20
+ r.padding = 12
20
21
  r.increase_font_size
21
22
  r << hbox
22
23
  r.set_size_request(800, 300)