wxruby3 0.9.4 → 0.9.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/INSTALL.md +1 -1
- data/README.md +2 -2
- data/ext/wxruby3/include/wxruby-ComboPopup.h +777 -0
- data/lib/wx/core/combo_ctrl.rb +171 -0
- data/lib/wx/doc/comboctrl.rb +128 -3
- data/lib/wx/doc/owner_drawn_combobox.rb +5 -1
- data/lib/wx/version.rb +1 -1
- data/rakelib/lib/core/include/funcall.inc +2 -1
- data/rakelib/lib/director/comboctrl.rb +104 -3
- data/rakelib/lib/director/defs.rb +1 -3
- data/rakelib/lib/director/gdicommon.rb +6 -0
- data/rakelib/lib/director/menu_item.rb +1 -1
- data/rakelib/lib/director/num_validator.rb +5 -7
- data/rakelib/lib/director/owner_drawn_combobox.rb +1 -0
- data/rakelib/lib/director/persistent_window.rb +2 -2
- data/rakelib/lib/director/pgeditor.rb +1 -1
- data/rakelib/lib/director/pgproperties.rb +3 -3
- data/rakelib/lib/director/pgproperty.rb +5 -1
- data/rakelib/lib/director/richtext_style_listbox.rb +5 -0
- data/rakelib/lib/director/sizer.rb +1 -1
- data/rakelib/lib/director/window.rb +4 -0
- data/rakelib/lib/extractor/module.rb +15 -0
- data/rakelib/lib/generate/doc/combo_ctrl.yaml +135 -0
- data/rakelib/lib/generate/doc/file_dialog_customize_hook.yaml +62 -0
- data/rakelib/lib/generate/doc/file_system.yaml +28 -0
- data/rakelib/lib/generate/interface.rb +12 -4
- data/rakelib/lib/swig_runner.rb +7 -4
- data/rakelib/lib/typemap/combo_popup.rb +42 -0
- data/tests/test_combo_ctrl.rb +196 -0
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3623c0bd623afc405c9fd708ac6c149a9f027b37ad50c074d895c95553b44871
|
4
|
+
data.tar.gz: da64e12195ff18571aa158f37b0ca44dc39a0e500c765aafcdefcaa6d3e1109d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9da0beffcaf517ec7ac257d419daa62a3ec1f447fc7a622df13741aff1c9e80106ddfa77ed0f726188978cb6c486381beaaba604ea980ee71d9e2cf7ea77cb50
|
7
|
+
data.tar.gz: f1c210c748d39c539361d6ffe29196cbba54bb5c4a6da5f8bc814c43e88f6a2560b44aa2073b8c69a1e1ae947bc997753f0b645b9f4d81032ed7c7138e8feba4
|
data/INSTALL.md
CHANGED
@@ -16,7 +16,7 @@ The minimal requirements for installing any source based setup (gem, source pack
|
|
16
16
|
| C++ compiler<br>(incl. dev tools like `make`) | On linux a recent version of the GNU C++ compiler (with c++-14 support) needs to be installed<br>On Windows the RubyInstaller MSYS2-Devkit needs to be installed<br>On MacOS XCode with commandline tools needs to be installed via <code>sudo xcode-select --install</code> |
|
17
17
|
| Git version control toolkit | |
|
18
18
|
| SWIG >= 3.0.12 | On MacOS install Homebrew (https://brew.sh) and than <code>brew install swig</code> |
|
19
|
-
| Doxygen (>= 1.9.1
|
19
|
+
| Doxygen (>= 1.9.1) | On MacOS install Homebrew (https://brew.sh) and than <code>brew install doxygen@</code> |
|
20
20
|
| wxWidgets (>= 3.2) | See the <b>wxWidgets installation</b> section below. |
|
21
21
|
|
22
22
|
The wxRuby3 build process requires `git` to clone a copy of the wxWidgets Github repository to extract the interface
|
data/README.md
CHANGED
@@ -124,7 +124,7 @@ To install the source-only gem the following software is required:
|
|
124
124
|
| C++ compiler<br>(incl. dev tools like `make`) | On linux a recent version of the GNU C++ compiler (with c++-14 support) needs to be installed<br>On Windows the RubyInstaller MSYS2-Devkit needs to be installed<br>On MacOS XCode with commandline tools needs to be installed |
|
125
125
|
| Git version control toolkit | |
|
126
126
|
| SWIG >= 3.0.12 | On MacOS install with Homebrew |
|
127
|
-
| Doxygen (>= 1.9.1
|
127
|
+
| Doxygen (>= 1.9.1) | On MacOS install with Homebrew |
|
128
128
|
| wxWidgets >= 3.2 (*OPTIONAL*) | On Linux most distributions provide system installable (development) packages for wxWidgets providing a supported version.<br>Alternatively you can fairly easily install your own preferred version manually. |
|
129
129
|
|
130
130
|
See the [INSTALL](INSTALL.md) document for more details.
|
@@ -204,7 +204,7 @@ Several years of development have passed for wxWidgets and Ruby respectively,
|
|
204
204
|
improving code quality, adding new classes and new language features.
|
205
205
|
In 2022 I finally found the time and the inspiration to pick up this project
|
206
206
|
with the idea of reviving it to build some applications I had in mind.
|
207
|
-
wxRuby 3
|
207
|
+
wxRuby 3 intends to provide Ruby interfaces for all relevant (!) wxWidget
|
208
208
|
classes of the latest version 3.2 and beyond.
|
209
209
|
Building on the experiences of the previous wxRuby (2) developments as well
|
210
210
|
as the wxPython Phoenix project it is expected to provide a better and more
|