rcurses 2.9 → 2.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +6 -0
- data/lib/rcurses/input.rb +4 -0
- data/lib/rcurses/pane.rb +9 -2
- data/lib/rcurses.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 24a1261f7feb08089088cd39e074ce58d7b31db2577c5d172cc702ca91c99341
|
4
|
+
data.tar.gz: fe64f92207aad03e6d6b7c0e8cdf61503a0e3c69dc69386f137cb16c1af80956
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de7a10ba81e044649267600766fdc49df41969bfdd37db99be7b82883288e3120e51558ad7052cc8d5b766d09c792fc2c8570792e2da2b2f7e6b9de5f5a29cac
|
7
|
+
data.tar.gz: 2e8fb40766d423138f6bf4fa29c040285c800ca6c9b68e155fc3106cf31eddb585176d622fda17b1327661e9acc452c15434dd56a977f7b6d4eabe711674ecf2
|
data/README.md
CHANGED
@@ -69,6 +69,8 @@ text | The text/content of the Pane
|
|
69
69
|
ix | "Index" - the line number at the top of the Pane, starts at 0, the first line of text in the Pane
|
70
70
|
align | Text alignment in the Pane: "l" = lefts aligned, "c" = center, "r" = right, with the default "l"
|
71
71
|
prompt | The prompt to print at the beginning of a one-liner Pane used as an input box
|
72
|
+
moreup | Set to true when there is more text above what is shown (top scroll bar i showing)
|
73
|
+
moredown | Set to true when there is more text below what is shown (bottom scroll bar i showing)
|
72
74
|
|
73
75
|
The methods for Pane:
|
74
76
|
|
@@ -150,12 +152,16 @@ Key pressed | string returned
|
|
150
152
|
----------------|----------------------------------------------------------
|
151
153
|
`esc` | "ESC"
|
152
154
|
`up` | "UP"
|
155
|
+
`shift-up` | "S-UP"
|
153
156
|
`ctrl-up` | "C-UP"
|
154
157
|
`down` | "DOWN"
|
158
|
+
`shift-down` | "S-DOWN"
|
155
159
|
`ctrl-down` | "C-DOWN"
|
156
160
|
`right` | "RIGHT"
|
161
|
+
`shift-right` | "S-RIGHT"
|
157
162
|
`ctrl-right` | "C-RIGHT"
|
158
163
|
`left` | "LEFT"
|
164
|
+
`shifth-left` | "S-LEFT"
|
159
165
|
`ctrl-left` | "C-LEFT"
|
160
166
|
`shift-tab` | "S-TAB"
|
161
167
|
`insert` | "INS"
|
data/lib/rcurses/input.rb
CHANGED
@@ -21,9 +21,13 @@ module Rcurses
|
|
21
21
|
third_char = $stdin.getc
|
22
22
|
case third_char
|
23
23
|
when 'A' then chr = "UP"
|
24
|
+
when 'a' then chr = "S-UP"
|
24
25
|
when 'B' then chr = "DOWN"
|
26
|
+
when 'b' then chr = "S-DOWN"
|
25
27
|
when 'C' then chr = "RIGHT"
|
28
|
+
when 'c' then chr = "S-RIGHT"
|
26
29
|
when 'D' then chr = "LEFT"
|
30
|
+
when 'd' then chr = "S-LEFT"
|
27
31
|
when 'Z' then chr = "S-TAB"
|
28
32
|
when '1'
|
29
33
|
fourth_char = $stdin.getc
|
data/lib/rcurses/pane.rb
CHANGED
@@ -5,6 +5,7 @@ module Rcurses
|
|
5
5
|
include Input
|
6
6
|
attr_accessor :x, :y, :w, :h, :fg, :bg
|
7
7
|
attr_accessor :border, :scroll, :text, :ix, :align, :prompt
|
8
|
+
attr_accessor :moreup, :moredown
|
8
9
|
|
9
10
|
def initialize(x = 1, y = 1, w = 1, h = 1, fg = nil, bg = nil)
|
10
11
|
@x = x
|
@@ -216,12 +217,18 @@ module Rcurses
|
|
216
217
|
|
217
218
|
if @ix > 0 and @scroll # Print "more" marker at top
|
218
219
|
col(@x + @w - 1); row(@y)
|
219
|
-
print "
|
220
|
+
print "∆".c(fmt)
|
221
|
+
@moreup = true
|
222
|
+
else
|
223
|
+
@moreup = false
|
220
224
|
end
|
221
225
|
|
222
226
|
if @txt.length - @ix > @h and @scroll # Print bottom "more" marker
|
223
227
|
col(@x + @w - 1); row(@y + @h - 1)
|
224
|
-
print "
|
228
|
+
print "∇".c(fmt)
|
229
|
+
@moredown = true
|
230
|
+
else
|
231
|
+
@moredown = false
|
225
232
|
end
|
226
233
|
|
227
234
|
if @border # Print border if @border is set to true
|
data/lib/rcurses.rb
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
# Web_site: http://isene.com/
|
6
6
|
# Github: https://github.com/isene/rcurses
|
7
7
|
# License: Public domain
|
8
|
-
# Version: 2.
|
8
|
+
# Version: 2.10: Added key captures for S-UP, S-DOWN, S-LEFT and S-RIGHT. added pane properties 'moreup' and 'moredown'
|
9
9
|
|
10
10
|
require 'io/console' # Basic gem for rcurses
|
11
11
|
require 'io/wait' # stdin handling
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcurses
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '2.
|
4
|
+
version: '2.10'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: clipboard
|
@@ -29,7 +29,8 @@ description: 'Create curses applications for the terminal easier than ever. Crea
|
|
29
29
|
up text (in panes or anywhere in the terminal) in bold, italic, underline, reverse
|
30
30
|
color, blink and in any 256 terminal colors for foreground and background. Use a
|
31
31
|
simple editor to let users edit text in panes. Left, right or center align text
|
32
|
-
in panes. Cursor movement around the terminal. New in 2.
|
32
|
+
in panes. Cursor movement around the terminal. New in 2.10: Added key captures for
|
33
|
+
S-UP, S-DOWN, S-LEFT and S-RIGHT. added pane properties ''moreup'' and ''moredown''.'
|
33
34
|
email: g@isene.com
|
34
35
|
executables: []
|
35
36
|
extensions: []
|