libui_paradise 0.2.22 → 0.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of libui_paradise might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/libui_paradise/extensions/misc.rb +7 -0
- data/lib/libui_paradise/fiddle/pointer.rb +32 -18
- data/lib/libui_paradise/version/version.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 85070d797091f6af4c6cd6c7b930e17693342b5684a5167cdfb6fbef99c90de6
|
4
|
+
data.tar.gz: a236bf1d957374cdfd0cc1f409491ce0b7e2143ed8a9b3c2aa92130c98284a25
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 400b564610bfd6484ad37740b81b69d7ad5c4152cfe1760332ad62175da803899c5286ae3c07d5d6d047b157b0d957f2ce6bb8a3150a2d54f91b1a49e5f0a603
|
7
|
+
data.tar.gz: f9e1d0ab797c7d24fd36efd23bc5f3d699b63046517ae51b4ac376bde32aa1e38eec9f8303ef34497e3a954e8634538efbb4d68ed17b9639d54fc9d26e2657d2
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
[](https://www.ruby-lang.org/en/)
|
3
3
|
[](https://badge.fury.io/rb/libui_paradise)
|
4
4
|
|
5
|
-
This gem was <b>last updated</b> on the <span style="color: darkblue; font-weight: bold">
|
5
|
+
This gem was <b>last updated</b> on the <span style="color: darkblue; font-weight: bold">06.08.2022</span> (dd.mm.yyyy notation), at <span style="color: steelblue; font-weight: bold">02:40:37</span> o'clock.
|
6
6
|
|
7
7
|
## The libui_paradise project
|
8
8
|
|
@@ -13,6 +13,13 @@ module Extensions # === LibuiParadise::Extensions
|
|
13
13
|
# ========================================================================= #
|
14
14
|
COLOUR_BLUE = 0x1E90FF
|
15
15
|
|
16
|
+
# ========================================================================= #
|
17
|
+
# === return_pwd
|
18
|
+
# ========================================================================= #
|
19
|
+
def return_pwd
|
20
|
+
"#{Dir.pwd}/".squeeze('/')
|
21
|
+
end
|
22
|
+
|
16
23
|
# ========================================================================= #
|
17
24
|
# === ui_sync_connect
|
18
25
|
#
|
@@ -664,20 +664,6 @@ class Pointer # === Fiddle::Pointer
|
|
664
664
|
LibUI.button_on_clicked(self, &block)
|
665
665
|
end; alias on_click_event on_clicked # === on_click_event
|
666
666
|
|
667
|
-
# ========================================================================= #
|
668
|
-
# === on_key_press_event
|
669
|
-
# ========================================================================= #
|
670
|
-
def on_key_press_event(&block)
|
671
|
-
e 'NOT YET IMPLEMENTED.'
|
672
|
-
end
|
673
|
-
|
674
|
-
# ========================================================================= #
|
675
|
-
# === on_button_press_event
|
676
|
-
# ========================================================================= #
|
677
|
-
def on_button_press_event(&block)
|
678
|
-
e 'NOT YET IMPLEMENTED'
|
679
|
-
end
|
680
|
-
|
681
667
|
# ========================================================================= #
|
682
668
|
# === available_pointers?
|
683
669
|
# ========================================================================= #
|
@@ -935,10 +921,13 @@ class Pointer # === Fiddle::Pointer
|
|
935
921
|
# === Skeleton methods:
|
936
922
|
#
|
937
923
|
# A "skeleton" method is one that doesn't do anything right now. These
|
938
|
-
# were added to increase compatibility with the gtk_paradise gem
|
939
|
-
#
|
940
|
-
#
|
941
|
-
#
|
924
|
+
# were added to increase compatibility with the gtk_paradise gem in
|
925
|
+
# particular.
|
926
|
+
#
|
927
|
+
# Some of these skeleton methods may become real methods one day,
|
928
|
+
# depending on how sophisticated the libui code will be - but
|
929
|
+
# until then we will simply use different options on different
|
930
|
+
# toolkits.
|
942
931
|
# ========================================================================= #
|
943
932
|
def bblack1; end
|
944
933
|
def bblack2; end
|
@@ -1013,5 +1002,30 @@ class Pointer # === Fiddle::Pointer
|
|
1013
1002
|
def bblack4; end
|
1014
1003
|
def on_mouse_click_select_everything; end
|
1015
1004
|
def font=(i = ''); end
|
1005
|
+
def set_activates_default(i = true); end
|
1006
|
+
def enable_events; end
|
1007
|
+
def do_focus; end
|
1008
|
+
def border(i = '', *a); end
|
1009
|
+
def fancy_hint(i = ''); end
|
1010
|
+
def fancy_hints(i = ''); end
|
1011
|
+
def fancy_hint=(i = ''); end
|
1012
|
+
def fancy_hints=(i = ''); end
|
1013
|
+
def shadow_hint=(i = ''); end
|
1014
|
+
def on_enter_key(i = ''); end
|
1015
|
+
def signal_connect(i = ''); end
|
1016
|
+
|
1017
|
+
# ========================================================================= #
|
1018
|
+
# === on_key_press_event
|
1019
|
+
# ========================================================================= #
|
1020
|
+
def on_key_press_event(&block)
|
1021
|
+
# e 'NOT YET IMPLEMENTED.'
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
# ========================================================================= #
|
1025
|
+
# === on_button_press_event
|
1026
|
+
# ========================================================================= #
|
1027
|
+
def on_button_press_event(&block)
|
1028
|
+
# e 'NOT YET IMPLEMENTED'
|
1029
|
+
end
|
1016
1030
|
|
1017
1031
|
end; end
|
@@ -7,11 +7,11 @@ module LibuiParadise
|
|
7
7
|
# ========================================================================= #
|
8
8
|
# === VERSION
|
9
9
|
# ========================================================================= #
|
10
|
-
VERSION = '0.2.
|
10
|
+
VERSION = '0.2.23'
|
11
11
|
|
12
12
|
# ========================================================================= #
|
13
13
|
# === LAST_UPDATE
|
14
14
|
# ========================================================================= #
|
15
|
-
LAST_UPDATE = '
|
15
|
+
LAST_UPDATE = '06.08.2022'
|
16
16
|
|
17
17
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libui_paradise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.23
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert A. Heiler
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: libui
|