rbcurse-core 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +69 -0
- data/VERSION +1 -0
- data/examples/abasiclist.rb +151 -0
- data/examples/alpmenu.rb +46 -0
- data/examples/app.sample +17 -0
- data/examples/atree.rb +100 -0
- data/examples/common/file.rb +45 -0
- data/examples/data/README.markdown +9 -0
- data/examples/data/brew.txt +38 -0
- data/examples/data/color.2 +37 -0
- data/examples/data/gemlist.txt +60 -0
- data/examples/data/lotr.txt +12 -0
- data/examples/data/ports.txt +136 -0
- data/examples/data/table.txt +37 -0
- data/examples/data/tasks.csv +88 -0
- data/examples/data/tasks.txt +27 -0
- data/examples/data/todo.txt +10 -0
- data/examples/data/todocsv.csv +28 -0
- data/examples/data/unix1.txt +21 -0
- data/examples/data/unix2.txt +11 -0
- data/examples/dbdemo.rb +487 -0
- data/examples/dirtree.rb +90 -0
- data/examples/newtabbedwindow.rb +100 -0
- data/examples/newtesttabp.rb +92 -0
- data/examples/tabular.rb +132 -0
- data/examples/tasks.rb +167 -0
- data/examples/term2.rb +83 -0
- data/examples/testkeypress.rb +72 -0
- data/examples/testlistbox.rb +158 -0
- data/examples/testmessagebox.rb +140 -0
- data/examples/testree.rb +106 -0
- data/examples/testwsshortcuts.rb +66 -0
- data/examples/testwsshortcuts2.rb +127 -0
- data/lib/rbcurse.rb +8 -0
- data/lib/rbcurse/core/docs/index.txt +73 -0
- data/lib/rbcurse/core/include/action.rb +40 -0
- data/lib/rbcurse/core/include/appmethods.rb +112 -0
- data/lib/rbcurse/core/include/bordertitle.rb +41 -0
- data/lib/rbcurse/core/include/chunk.rb +182 -0
- data/lib/rbcurse/core/include/io.rb +953 -0
- data/lib/rbcurse/core/include/listcellrenderer.rb +140 -0
- data/lib/rbcurse/core/include/listeditable.rb +317 -0
- data/lib/rbcurse/core/include/listscrollable.rb +590 -0
- data/lib/rbcurse/core/include/listselectable.rb +264 -0
- data/lib/rbcurse/core/include/multibuffer.rb +83 -0
- data/lib/rbcurse/core/include/orderedhash.rb +77 -0
- data/lib/rbcurse/core/include/ractionevent.rb +67 -0
- data/lib/rbcurse/core/include/rchangeevent.rb +27 -0
- data/lib/rbcurse/core/include/rhistory.rb +62 -0
- data/lib/rbcurse/core/include/rinputdataevent.rb +47 -0
- data/lib/rbcurse/core/include/vieditable.rb +170 -0
- data/lib/rbcurse/core/system/colormap.rb +163 -0
- data/lib/rbcurse/core/system/keyboard.rb +150 -0
- data/lib/rbcurse/core/system/keydefs.rb +30 -0
- data/lib/rbcurse/core/system/ncurses.rb +218 -0
- data/lib/rbcurse/core/system/panel.rb +162 -0
- data/lib/rbcurse/core/system/window.rb +901 -0
- data/lib/rbcurse/core/util/ansiparser.rb +117 -0
- data/lib/rbcurse/core/util/app.rb +1235 -0
- data/lib/rbcurse/core/util/basestack.rb +407 -0
- data/lib/rbcurse/core/util/bottomline.rb +1850 -0
- data/lib/rbcurse/core/util/colorparser.rb +71 -0
- data/lib/rbcurse/core/util/focusmanager.rb +31 -0
- data/lib/rbcurse/core/util/padreader.rb +189 -0
- data/lib/rbcurse/core/util/rcommandwindow.rb +587 -0
- data/lib/rbcurse/core/util/rdialogs.rb +619 -0
- data/lib/rbcurse/core/util/viewer.rb +149 -0
- data/lib/rbcurse/core/util/widgetshortcuts.rb +505 -0
- data/lib/rbcurse/core/widgets/applicationheader.rb +102 -0
- data/lib/rbcurse/core/widgets/box.rb +58 -0
- data/lib/rbcurse/core/widgets/divider.rb +310 -0
- data/lib/rbcurse/core/widgets/keylabelprinter.rb +178 -0
- data/lib/rbcurse/core/widgets/rcombo.rb +238 -0
- data/lib/rbcurse/core/widgets/rcontainer.rb +415 -0
- data/lib/rbcurse/core/widgets/rlink.rb +30 -0
- data/lib/rbcurse/core/widgets/rlist.rb +723 -0
- data/lib/rbcurse/core/widgets/rmenu.rb +939 -0
- data/lib/rbcurse/core/widgets/rmenulink.rb +22 -0
- data/lib/rbcurse/core/widgets/rmessagebox.rb +373 -0
- data/lib/rbcurse/core/widgets/rprogress.rb +118 -0
- data/lib/rbcurse/core/widgets/rtabbedpane.rb +615 -0
- data/lib/rbcurse/core/widgets/rtabbedwindow.rb +68 -0
- data/lib/rbcurse/core/widgets/rtextarea.rb +920 -0
- data/lib/rbcurse/core/widgets/rtextview.rb +780 -0
- data/lib/rbcurse/core/widgets/rtree.rb +787 -0
- data/lib/rbcurse/core/widgets/rwidget.rb +3040 -0
- data/lib/rbcurse/core/widgets/scrollbar.rb +143 -0
- data/lib/rbcurse/core/widgets/statusline.rb +94 -0
- data/lib/rbcurse/core/widgets/tabular.rb +264 -0
- data/lib/rbcurse/core/widgets/tabularwidget.rb +1211 -0
- data/lib/rbcurse/core/widgets/textpad.rb +516 -0
- data/lib/rbcurse/core/widgets/tree/treecellrenderer.rb +150 -0
- data/lib/rbcurse/core/widgets/tree/treemodel.rb +428 -0
- metadata +156 -0
metadata
ADDED
@@ -0,0 +1,156 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rbcurse-core
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease:
|
5
|
+
version: 0.0.0
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Rahul Kumar
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
|
13
|
+
date: 2011-12-05 00:00:00 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: ffi-ncurses
|
17
|
+
prerelease: false
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
19
|
+
none: false
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.4.0
|
24
|
+
type: :runtime
|
25
|
+
version_requirements: *id001
|
26
|
+
description: Ruby curses/ncurses widgets for easy application development on text terminals (ruby 1.9, 1.8)
|
27
|
+
email: sentinel1879@gmail.com
|
28
|
+
executables: []
|
29
|
+
|
30
|
+
extensions: []
|
31
|
+
|
32
|
+
extra_rdoc_files:
|
33
|
+
- README.md
|
34
|
+
files:
|
35
|
+
- README.md
|
36
|
+
- VERSION
|
37
|
+
- examples/abasiclist.rb
|
38
|
+
- examples/alpmenu.rb
|
39
|
+
- examples/app.sample
|
40
|
+
- examples/atree.rb
|
41
|
+
- examples/common/file.rb
|
42
|
+
- examples/data/README.markdown
|
43
|
+
- examples/data/brew.txt
|
44
|
+
- examples/data/color.2
|
45
|
+
- examples/data/gemlist.txt
|
46
|
+
- examples/data/lotr.txt
|
47
|
+
- examples/data/ports.txt
|
48
|
+
- examples/data/table.txt
|
49
|
+
- examples/data/tasks.csv
|
50
|
+
- examples/data/tasks.txt
|
51
|
+
- examples/data/todo.txt
|
52
|
+
- examples/data/todocsv.csv
|
53
|
+
- examples/data/unix1.txt
|
54
|
+
- examples/data/unix2.txt
|
55
|
+
- examples/dbdemo.rb
|
56
|
+
- examples/dirtree.rb
|
57
|
+
- examples/newtabbedwindow.rb
|
58
|
+
- examples/newtesttabp.rb
|
59
|
+
- examples/tabular.rb
|
60
|
+
- examples/tasks.rb
|
61
|
+
- examples/term2.rb
|
62
|
+
- examples/testkeypress.rb
|
63
|
+
- examples/testlistbox.rb
|
64
|
+
- examples/testmessagebox.rb
|
65
|
+
- examples/testree.rb
|
66
|
+
- examples/testwsshortcuts.rb
|
67
|
+
- examples/testwsshortcuts2.rb
|
68
|
+
- lib/rbcurse.rb
|
69
|
+
- lib/rbcurse/core/docs/index.txt
|
70
|
+
- lib/rbcurse/core/include/action.rb
|
71
|
+
- lib/rbcurse/core/include/appmethods.rb
|
72
|
+
- lib/rbcurse/core/include/bordertitle.rb
|
73
|
+
- lib/rbcurse/core/include/chunk.rb
|
74
|
+
- lib/rbcurse/core/include/io.rb
|
75
|
+
- lib/rbcurse/core/include/listcellrenderer.rb
|
76
|
+
- lib/rbcurse/core/include/listeditable.rb
|
77
|
+
- lib/rbcurse/core/include/listscrollable.rb
|
78
|
+
- lib/rbcurse/core/include/listselectable.rb
|
79
|
+
- lib/rbcurse/core/include/multibuffer.rb
|
80
|
+
- lib/rbcurse/core/include/orderedhash.rb
|
81
|
+
- lib/rbcurse/core/include/ractionevent.rb
|
82
|
+
- lib/rbcurse/core/include/rchangeevent.rb
|
83
|
+
- lib/rbcurse/core/include/rhistory.rb
|
84
|
+
- lib/rbcurse/core/include/rinputdataevent.rb
|
85
|
+
- lib/rbcurse/core/include/vieditable.rb
|
86
|
+
- lib/rbcurse/core/system/colormap.rb
|
87
|
+
- lib/rbcurse/core/system/keyboard.rb
|
88
|
+
- lib/rbcurse/core/system/keydefs.rb
|
89
|
+
- lib/rbcurse/core/system/ncurses.rb
|
90
|
+
- lib/rbcurse/core/system/panel.rb
|
91
|
+
- lib/rbcurse/core/system/window.rb
|
92
|
+
- lib/rbcurse/core/util/ansiparser.rb
|
93
|
+
- lib/rbcurse/core/util/app.rb
|
94
|
+
- lib/rbcurse/core/util/basestack.rb
|
95
|
+
- lib/rbcurse/core/util/bottomline.rb
|
96
|
+
- lib/rbcurse/core/util/colorparser.rb
|
97
|
+
- lib/rbcurse/core/util/focusmanager.rb
|
98
|
+
- lib/rbcurse/core/util/padreader.rb
|
99
|
+
- lib/rbcurse/core/util/rcommandwindow.rb
|
100
|
+
- lib/rbcurse/core/util/rdialogs.rb
|
101
|
+
- lib/rbcurse/core/util/viewer.rb
|
102
|
+
- lib/rbcurse/core/util/widgetshortcuts.rb
|
103
|
+
- lib/rbcurse/core/widgets/applicationheader.rb
|
104
|
+
- lib/rbcurse/core/widgets/box.rb
|
105
|
+
- lib/rbcurse/core/widgets/divider.rb
|
106
|
+
- lib/rbcurse/core/widgets/keylabelprinter.rb
|
107
|
+
- lib/rbcurse/core/widgets/rcombo.rb
|
108
|
+
- lib/rbcurse/core/widgets/rcontainer.rb
|
109
|
+
- lib/rbcurse/core/widgets/rlink.rb
|
110
|
+
- lib/rbcurse/core/widgets/rlist.rb
|
111
|
+
- lib/rbcurse/core/widgets/rmenu.rb
|
112
|
+
- lib/rbcurse/core/widgets/rmenulink.rb
|
113
|
+
- lib/rbcurse/core/widgets/rmessagebox.rb
|
114
|
+
- lib/rbcurse/core/widgets/rprogress.rb
|
115
|
+
- lib/rbcurse/core/widgets/rtabbedpane.rb
|
116
|
+
- lib/rbcurse/core/widgets/rtabbedwindow.rb
|
117
|
+
- lib/rbcurse/core/widgets/rtextarea.rb
|
118
|
+
- lib/rbcurse/core/widgets/rtextview.rb
|
119
|
+
- lib/rbcurse/core/widgets/rtree.rb
|
120
|
+
- lib/rbcurse/core/widgets/rwidget.rb
|
121
|
+
- lib/rbcurse/core/widgets/scrollbar.rb
|
122
|
+
- lib/rbcurse/core/widgets/statusline.rb
|
123
|
+
- lib/rbcurse/core/widgets/tabular.rb
|
124
|
+
- lib/rbcurse/core/widgets/tabularwidget.rb
|
125
|
+
- lib/rbcurse/core/widgets/textpad.rb
|
126
|
+
- lib/rbcurse/core/widgets/tree/treecellrenderer.rb
|
127
|
+
- lib/rbcurse/core/widgets/tree/treemodel.rb
|
128
|
+
homepage: http://rbcurse.rubyforge.org/
|
129
|
+
licenses: []
|
130
|
+
|
131
|
+
post_install_message:
|
132
|
+
rdoc_options: []
|
133
|
+
|
134
|
+
require_paths:
|
135
|
+
- lib
|
136
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ">="
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: "0"
|
142
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
143
|
+
none: false
|
144
|
+
requirements:
|
145
|
+
- - ">="
|
146
|
+
- !ruby/object:Gem::Version
|
147
|
+
version: "0"
|
148
|
+
requirements: []
|
149
|
+
|
150
|
+
rubyforge_project: rbcurse
|
151
|
+
rubygems_version: 1.8.8
|
152
|
+
signing_key:
|
153
|
+
specification_version: 3
|
154
|
+
summary: Ruby Ncurses Toolkit core infrastructure and widgets
|
155
|
+
test_files: []
|
156
|
+
|