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
@@ -0,0 +1,38 @@
|
|
1
|
+
ack
|
2
|
+
aqua-less
|
3
|
+
atool
|
4
|
+
bash-completion
|
5
|
+
calcurse
|
6
|
+
cmake
|
7
|
+
coreutils
|
8
|
+
curl
|
9
|
+
elinks
|
10
|
+
findutils
|
11
|
+
gawk
|
12
|
+
gettext
|
13
|
+
git
|
14
|
+
gnu-sed
|
15
|
+
grep
|
16
|
+
htop
|
17
|
+
jed
|
18
|
+
libevent
|
19
|
+
moreutils
|
20
|
+
most
|
21
|
+
msmtp
|
22
|
+
multitail
|
23
|
+
mysql
|
24
|
+
oniguruma
|
25
|
+
pcre
|
26
|
+
pidof
|
27
|
+
pigz
|
28
|
+
pkg-config
|
29
|
+
pv
|
30
|
+
readline
|
31
|
+
rlwrap
|
32
|
+
s-lang
|
33
|
+
sqlite
|
34
|
+
tal
|
35
|
+
task
|
36
|
+
tig
|
37
|
+
tmux
|
38
|
+
wget
|
@@ -0,0 +1,37 @@
|
|
1
|
+
[1m[34m[47mShowing all items...[0m[0m
|
2
|
+
([31m8b0dbf[0m) [33m#enh[0m view with table, text, list, tree, fields hash
|
3
|
+
([31m3ef256[0m) [33m#fix[0m clearing/hiding widget
|
4
|
+
([31mdf584b[0m) [37m%menu[0m list place cursor firstchar match
|
5
|
+
([31m749828[0m) [37m%menu[0m RT_ARROW if none go left
|
6
|
+
([31med1515[0m) [37m%vimsplit[0m when adding, put grabbar cmd in system_commands
|
7
|
+
([31mb3102b[0m) [37m%listbox[0m reduce repaint, only if change, or selection
|
8
|
+
([31m344ad2[0m) [37m%form[0m dn_arrow to lower field, rt_arrow to right field
|
9
|
+
([31m35bed1[0m) [37m%tabularwidget[0m ask_select and ask_unselect
|
10
|
+
([31m7c24e7[0m) check other widgets for color changes
|
11
|
+
([31mf864fe[0m) check for [33m#UTF[0m-8 errors where match method used [33m#fix[0m
|
12
|
+
([31m4bef44[0m) testdir returns path wrong if i use ../ [33m#fix[0m
|
13
|
+
([31m2171c9[0m) [37m%TabularWidget[0m example scrollbar showing white space at end [33m#fix[0m
|
14
|
+
([31med7b0a[0m) search in tabular does not take offset of header into account [33m#fix[0m
|
15
|
+
([31mfc95e4[0m) [33m#enh[0m widgets can have [37m%keylabels[0m, so mode gets taken care of auto
|
16
|
+
([31mc538e9[0m) app_header assumes root_window, shd take window width into acount
|
17
|
+
([31me22c8e[0m) menu in dbdemo one column short (ony after F4 closes) [33m#fix[0m
|
18
|
+
([31m83dfff[0m) additional footer text in text view area [33m#hold[0m
|
19
|
+
([31m891157[0m) maybe selected and focussed should be shown same so no confusion
|
20
|
+
([31mdd5f96[0m) calculate color_pair once, and not so many times [33m#fix[0m
|
21
|
+
([31m2406f8[0m) listcellrenderer is horribly complicated - simplify
|
22
|
+
([31mf42383[0m) reduce [33m#repaint[0m in [33m#textarea[0m and [33m#tree[0m
|
23
|
+
([31m543b53[0m) dock through div by zero if row Ncurses.Lines-1 [33m#fix[0m
|
24
|
+
([31mc48a48[0m) The view in [33m#dbdemo[0m should allow sorting on header. and maybe select one row
|
25
|
+
([31m85461c[0m) common routine tabular(headings,content)
|
26
|
+
([31m9b3501[0m) sort on tabularwidget with resultset sometimes gives error ofcomparison
|
27
|
+
([31m31f476[0m) put comopnent traversal into traversal module
|
28
|
+
([31m5be1c4[0m) popuplist: space in single selection should select?
|
29
|
+
([31m330928[0m) system shell etc menu items should be available somehow ifwe want
|
30
|
+
([31m3663dc[0m) install mysql and gem and test resultset with that too
|
31
|
+
([31m745c3f[0m) remove multiform
|
32
|
+
[37m[41m
|
33
|
+
==================== TODAY ====================[0m
|
34
|
+
([31md56b4d[0m) alert dialog overflow on data, shd have increased in size [33m#fix[0m [33m#today[0m
|
35
|
+
[37m[41m
|
36
|
+
==================== URGENT ====================[0m
|
37
|
+
([31m140d16[0m) [33m#fix[0m [37m%testvimsplit[0m not sizing STACK correctly [33m#urgent[0m
|
@@ -0,0 +1,60 @@
|
|
1
|
+
activesupport (3.1.0, 3.0.10)
|
2
|
+
arrayfields (4.7.4)
|
3
|
+
bond (0.4.1)
|
4
|
+
bugzyrb (0.3.8)
|
5
|
+
bundler (1.0.18)
|
6
|
+
cheat (1.3.0)
|
7
|
+
chronic (0.6.4, 0.3.0)
|
8
|
+
colored (1.2)
|
9
|
+
dooby (0.3.1)
|
10
|
+
fattr (2.2.0)
|
11
|
+
ffi (1.0.9)
|
12
|
+
ffi-locale (1.0.1)
|
13
|
+
ffi-ncurses (0.4.0)
|
14
|
+
gem-man (0.3.0)
|
15
|
+
gemcutter (0.7.0)
|
16
|
+
gemedit (1.0.1)
|
17
|
+
git (1.2.5)
|
18
|
+
gmail (0.4.0)
|
19
|
+
gmail_xoauth (0.3.0)
|
20
|
+
growl (1.0.3)
|
21
|
+
highline (1.6.2, 1.6.1)
|
22
|
+
hoe (2.12.3)
|
23
|
+
i18n (0.6.0)
|
24
|
+
interactive_editor (0.0.10)
|
25
|
+
jeweler (1.6.4)
|
26
|
+
json_pure (1.6.1)
|
27
|
+
lightning (0.4.0)
|
28
|
+
live_console (0.2.1)
|
29
|
+
mail (2.3.0)
|
30
|
+
main (4.7.7, 4.2.0)
|
31
|
+
map (4.3.0)
|
32
|
+
maruku (0.6.0)
|
33
|
+
mime (0.1)
|
34
|
+
mime-types (1.16)
|
35
|
+
multi_json (1.0.3)
|
36
|
+
ncurses (1.2.4)
|
37
|
+
nokogiri (1.5.0)
|
38
|
+
oauth (0.4.5)
|
39
|
+
optiflag (0.7)
|
40
|
+
polyglot (0.3.2)
|
41
|
+
qwandry (0.1.4)
|
42
|
+
rake (0.9.2, 0.8.7)
|
43
|
+
random_data (1.5.2)
|
44
|
+
rbcurse (1.4.0)
|
45
|
+
rubyforge (2.0.4)
|
46
|
+
rubygems-update (1.8.10)
|
47
|
+
sequel (3.27.0)
|
48
|
+
snipplr (0.0.9)
|
49
|
+
spoon (0.0.1)
|
50
|
+
sqlite3 (1.3.4)
|
51
|
+
sqlite3-ruby (1.3.3)
|
52
|
+
subcommand (1.0.6)
|
53
|
+
syntax (1.0.0)
|
54
|
+
terminal-table (1.4.2)
|
55
|
+
thor (0.14.6)
|
56
|
+
todorb (1.2.3)
|
57
|
+
treetop (1.4.10)
|
58
|
+
tzinfo (0.3.29)
|
59
|
+
vmail (2.3.2)
|
60
|
+
yard (0.7.2)
|
@@ -0,0 +1,12 @@
|
|
1
|
+
I amar prestar aen. The world is changed. Han matho ne nen. I feel it in the water. Han mathon ned cae. I feel it in the earth. A han noston ned gwilith. I smell it in the air. Much that once was is lost, for none now live who remember it.
|
2
|
+
|
3
|
+
It began with the forging of the Great Rings. Three were given to the Elves, immortal, wisest and fairest of all beings. Seven to the Dwarf-Lords, great miners and craftsmen of the mountain halls. And nine, nine rings were gifted to the race of Men, who above all else desire power. For within these rings was bound the strength and the will to govern each race. But they were all of them deceived, for another ring was made. Deep in the land of Mordor, in the Fires of Mount Doom, the Dark Lord Sauron forged in secret a master ring to control all others, and into this ring he poured his cruelty, his malice and his will to dominate all life. One ring to rule them all.
|
4
|
+
|
5
|
+
One by one, the free lands of Middle-Earth fell to the power of the Ring, but there were some who resisted. A last alliance of Men and Elves marched against the armies of Mordor, and on the very slopes of Mount Doom, they fought for the freedom of Middle-Earth. Victory was near, but the power of the ring could not be undone.
|
6
|
+
It was in this moment, when all hope had faded, that Isildur, son of the king, took up his father's sword.
|
7
|
+
|
8
|
+
Sauron, the enemy of the free peoples of Middle-Earth, was defeated. The Ring passed to Isildur, who had this once chance to destroy evil forever. But the hearts of Men are easily corrupted. And the ring of power has a will of its own. It betrayed Isildur, to his death. And some things that should not have been forgotten were lost. History became legend, legend became myth. And for two and a half thousand years, the ring passed out of all knowledge. Until, when chance came, it ensnared a new bearer.
|
9
|
+
|
10
|
+
The Ring came to the creature Gollum, who took it deep into the tunnels of the Misty Mountains. And there it consumed him. The ring brought to Gollum unnatural long life. For five hundred years it poisoned his mind, and in the gloom of Gollum's cave, it waited. Darkness crept back into the forests of the world. Rumor grew of a shadow in the East, whispers of a nameless fear, and the Ring of Power percieved its time had now come. It abandoned Gollum. But something happened then that the Ring did not intend. It was picked up by the most unlikely creature imaginable: a Hobbit, Bilbo Baggins, of the Shire.
|
11
|
+
|
12
|
+
For the time will soon come when hobbits will shape the fortunes of all.
|
@@ -0,0 +1,136 @@
|
|
1
|
+
alpine @2.00 mail/alpine
|
2
|
+
apr @1.4.5 devel/apr
|
3
|
+
apr-util @1.3.12 devel/apr-util
|
4
|
+
autoconf @2.68 devel/autoconf
|
5
|
+
automake @1.11.1 devel/automake
|
6
|
+
bash @4.2.10 shells/bash
|
7
|
+
bash-completion @1.3 sysutils/bash-completion
|
8
|
+
bison @2.5 devel/bison
|
9
|
+
boost @1.47.0 devel/boost
|
10
|
+
boost-jam @3.1.18 devel/boost-jam
|
11
|
+
bzip2 @1.0.6 archivers/bzip2
|
12
|
+
coreutils @8.14 sysutils/coreutils
|
13
|
+
cppunit @1.12.1 devel/cppunit
|
14
|
+
ctags @5.8 devel/ctags
|
15
|
+
curl @7.22.0 net/curl
|
16
|
+
curl-ca-bundle @7.22.0 net/curl-ca-bundle
|
17
|
+
cyrus-sasl2 @2.1.23 security/cyrus-sasl2
|
18
|
+
db46 @4.6.21 databases/db46
|
19
|
+
dirac @1.0.2 multimedia/dirac
|
20
|
+
elvis @2.2_0 editors/elvis
|
21
|
+
expat @2.0.1 textproc/expat
|
22
|
+
expat @2.0.1 textproc/expat
|
23
|
+
faac @1.28 audio/faac
|
24
|
+
faad2 @2.7 audio/faad2
|
25
|
+
ffmpeg @0.7.6 multimedia/ffmpeg
|
26
|
+
file @5.09 sysutils/file
|
27
|
+
findutils @4.4.2 sysutils/findutils
|
28
|
+
flex @2.5.35 devel/flex
|
29
|
+
gawk @4.0.0 lang/gawk
|
30
|
+
gdbm @1.9.1 databases/gdbm
|
31
|
+
gettext @0.18.1.1 devel/gettext
|
32
|
+
gettext @0.18.1.1 devel/gettext
|
33
|
+
git-core @1.7.7 devel/git-core
|
34
|
+
glib2 @2.28.8 devel/glib2
|
35
|
+
gmake @3.82 devel/gmake
|
36
|
+
gmp @5.0.2 devel/gmp
|
37
|
+
gnupg @1.4.11 mail/gnupg
|
38
|
+
gperf @3.0.4 devel/gperf
|
39
|
+
gperf @3.0.4 devel/gperf
|
40
|
+
grep @2.9 sysutils/grep
|
41
|
+
groff @1.21 sysutils/groff
|
42
|
+
gsed @4.2.1 textproc/gsed
|
43
|
+
gzip @1.4 archivers/gzip
|
44
|
+
help2man @1.40.4 textproc/help2man
|
45
|
+
icu @4.8.1 devel/icu
|
46
|
+
irssi @0.8.15 irc/irssi
|
47
|
+
joe @3.7 editors/joe
|
48
|
+
lame @3.99 audio/lame
|
49
|
+
lame @3.99 audio/lame
|
50
|
+
libao @1.1.0 audio/libao
|
51
|
+
libiconv @1.14 textproc/libiconv
|
52
|
+
libiconv @1.14 textproc/libiconv
|
53
|
+
libid3tag @0.15.1b audio/libid3tag
|
54
|
+
libidn @1.22 mail/libidn
|
55
|
+
libmad @0.15.1b audio/libmad
|
56
|
+
libmp3splt @0.5.7a audio/libmp3splt
|
57
|
+
libogg @1.3.0 multimedia/libogg
|
58
|
+
liboil @0.3.17 devel/liboil
|
59
|
+
libpng @1.4.8 graphics/libpng
|
60
|
+
libsdl @1.2.14 devel/libsdl
|
61
|
+
libtheora @1.1.1 multimedia/libtheora
|
62
|
+
libtool @2.4.2 devel/libtool
|
63
|
+
libusb @1.0.8 devel/libusb
|
64
|
+
libvorbis @1.3.2 audio/libvorbis
|
65
|
+
libxml2 @2.7.8 textproc/libxml2
|
66
|
+
links @2.3 www/links
|
67
|
+
lzmautils @4.32.7 archivers/lzmautils
|
68
|
+
m4 @1.4.16 devel/m4
|
69
|
+
macutil @2.0b3 sysutils/macutil
|
70
|
+
mc @4.7.5.2 sysutils/mc
|
71
|
+
mp3splt @2.2.6a audio/mp3splt
|
72
|
+
mp3wrap @0.5 audio/mp3wrap
|
73
|
+
mp4v2 @1.9.1 multimedia/mp4v2
|
74
|
+
mpack @1.6 mail/mpack
|
75
|
+
mpg321 @0.2.10 audio/mpg321
|
76
|
+
ncftp @3.2.5 net/ncftp
|
77
|
+
ncurses @5.9 devel/ncurses
|
78
|
+
ncurses @5.9 devel/ncurses
|
79
|
+
ncursesw @5.8 devel/ncursesw
|
80
|
+
ncursesw @5.8 devel/ncursesw
|
81
|
+
neon @0.29.6 www/neon
|
82
|
+
netcat @1.10 net/netcat
|
83
|
+
openldap @2.4.21 databases/openldap
|
84
|
+
openssl @1.0.0e devel/openssl
|
85
|
+
p5-compress-raw-bzip2 @2.37.0 perl/p5-compress-raw-bzip2
|
86
|
+
p5-compress-raw-zlib @2.35.0 perl/p5-compress-raw-zlib
|
87
|
+
p5-crypt-ssleay @0.580.0 perl/p5-crypt-ssleay
|
88
|
+
p5-error @0.170.160 perl/p5-error
|
89
|
+
p5-html-parser @3.680.0 perl/p5-html-parser
|
90
|
+
p5-html-tagset @3.200.0 perl/p5-html-tagset
|
91
|
+
p5-io-compress @2.35.0 perl/p5-io-compress
|
92
|
+
p5-libwww-perl @6.20.0 perl/p5-libwww-perl
|
93
|
+
p5-locale-gettext @1.50.0 perl/p5-locale-gettext
|
94
|
+
p5-svn-simple @0.280.0 perl/p5-svn-simple
|
95
|
+
p5-term-readkey @2.300.0 perl/p5-term-readkey
|
96
|
+
p5-uri @1.580.0 perl/p5-uri
|
97
|
+
pcre @8.12 devel/pcre
|
98
|
+
perl5 @5.12.3 lang/perl5
|
99
|
+
perl5.8 @5.8.9 lang/perl5.8
|
100
|
+
pkgconfig @0.26 devel/pkgconfig
|
101
|
+
popt @1.16 devel/popt
|
102
|
+
pv @1.2.0 sysutils/pv
|
103
|
+
readline @6.2.000 devel/readline
|
104
|
+
rsync @3.0.8 net/rsync
|
105
|
+
schroedinger @1.0.10 multimedia/schroedinger
|
106
|
+
serf @0.7.2 www/serf
|
107
|
+
slang2 @2.2.3 lang/slang2
|
108
|
+
source-highlight @3.1.4 textproc/source-highlight
|
109
|
+
sqlite3 @3.7.8 databases/sqlite3
|
110
|
+
subversion @1.7.0 devel/subversion
|
111
|
+
subversion-perlbindings @1.7.0 devel/subversion-perlbindings
|
112
|
+
surfraw @2.2.1 net/surfraw
|
113
|
+
vim @7.3.286 editors/vim
|
114
|
+
wget @1.13.4 net/wget
|
115
|
+
x264 @20110628 multimedia/x264
|
116
|
+
xorg-bigreqsproto @1.1.1 x11/xorg-bigreqsproto
|
117
|
+
xorg-inputproto @2.0.2 x11/xorg-inputproto
|
118
|
+
xorg-kbproto @1.0.5 x11/xorg-kbproto
|
119
|
+
xorg-libX11 @1.4.4 x11/xorg-libX11
|
120
|
+
xorg-libXau @1.0.6 x11/xorg-libXau
|
121
|
+
xorg-libXdmcp @1.1.0 x11/xorg-libXdmcp
|
122
|
+
xorg-libXext @1.3.0 x11/xorg-libXext
|
123
|
+
xorg-libXrandr @1.3.2 x11/xorg-libXrandr
|
124
|
+
xorg-randrproto @1.3.2 x11/xorg-randrproto
|
125
|
+
xorg-renderproto @0.11.1 x11/xorg-renderproto
|
126
|
+
xorg-util-macros @1.15.0 x11/xorg-util-macros
|
127
|
+
xorg-xcmiscproto @1.2.1 x11/xorg-xcmiscproto
|
128
|
+
xorg-xextproto @7.2.0 x11/xorg-xextproto
|
129
|
+
xorg-xf86bigfontproto @1.2.0 x11/xorg-xf86bigfontproto
|
130
|
+
xorg-xproto @7.0.22 x11/xorg-xproto
|
131
|
+
xorg-xtrans @1.2.6 x11/xorg-xtrans
|
132
|
+
xrender @0.9.6 x11/xrender
|
133
|
+
XviD @1.3.2 multimedia/XviD
|
134
|
+
xz @5.0.3 archivers/xz
|
135
|
+
yasm @1.1.0 lang/yasm
|
136
|
+
zlib @1.2.5 archivers/zlib
|
@@ -0,0 +1,37 @@
|
|
1
|
+
69|C-u not available for textpad and view. how to|P2|open
|
2
|
+
85|combo symbol when label, see newmessagebox|P2|open
|
3
|
+
86|combo let caller suggest width and use if longer than longest item|P2|open
|
4
|
+
88|keep working on wsshortcuts as in testws..2.rb|P2|open
|
5
|
+
89|messagebox, see about background for zterm-256 as in header|P2|open
|
6
|
+
97|binding to KEY_ENTER doesn't work, have to bid to 13|P2|open
|
7
|
+
98|if list not binding ENTER then dont consume it|P2|open
|
8
|
+
22|widget hide (visible false) does not hide|P3|open
|
9
|
+
65|clean up window.rb prv_printstring etc|P3|open
|
10
|
+
74|list and others should just calculate longest in list|P3|open
|
11
|
+
79|cleanup button getpaint etc|P3|open
|
12
|
+
80|use @focusable in form to simplify|P3|open
|
13
|
+
87|praps global setting lists etc use SPC for scroll or selection|P3|open
|
14
|
+
92|messagebox: if text longer than display then can we split|P3|open
|
15
|
+
95|window.refresh required after alert of messagebox closes|P3|open
|
16
|
+
99|button option to set mnemo for keys without alt|P3|open
|
17
|
+
10|combo keys|P4|open
|
18
|
+
17|selected_item of list broken|P4|open
|
19
|
+
20|cannot bind_key using Alt key and another. |P4|open
|
20
|
+
27|#fix testvimsplit not sizing STACK correctly|P4|open
|
21
|
+
32| #tree many empty methods in #treemodel|P4|open
|
22
|
+
37|simplify #vimsplit calculation|P4|open
|
23
|
+
52|%label set_label may have to calculate at repaint esp in app|P4|open
|
24
|
+
55|Have a module Expandable for those that are multiline|P4|open
|
25
|
+
56|DRY up titles and borders|P4|open
|
26
|
+
60|fields width, display_len is for input area, not label plus input|P4|open
|
27
|
+
61|test2.rb color change not affecting text objects|P4|open
|
28
|
+
70|confusion between renderer and color_parser|P4|open
|
29
|
+
75|textpad to allow append << at some stage|P4|open
|
30
|
+
93|messagebox conform and choice whith single key getch|P4|open
|
31
|
+
8|container keep repainting all|P5|open
|
32
|
+
26|App to have a layout abject |P5|open
|
33
|
+
39|tabularwidget truncate needed left_margin|P5|open
|
34
|
+
42|append_to_kill, yank not working in %listbox|P5|open
|
35
|
+
49|resultsetview needs way to specify key fields|P5|open
|
36
|
+
50|sort on tabularwidget with resultset error sometimes|P5|open
|
37
|
+
96|configure confirm quit etc through a file|P5|open
|
@@ -0,0 +1,88 @@
|
|
1
|
+
1|clo|bug|X3|messagebox label print overlaps left border
|
2
|
+
2|clo|enh|P4|Field: methods not chainable
|
3
|
+
3|clo|bug|P3|button crash if mnemo not in text
|
4
|
+
4|clo|enh|P3|link mnemo should not have Alt
|
5
|
+
8|ope|bug|P5|container keep repainting all
|
6
|
+
9|clo|enh|P3|menu bar keys
|
7
|
+
10|ope|enh|P4|combo keys
|
8
|
+
11|clo|bug|X3|hand written DSL defs dont fire prop handler
|
9
|
+
12|clo|bug|X4|textview on_enter
|
10
|
+
13|clo|enh|P3|traversal of listboxes
|
11
|
+
14|clo|enh|P3|check keys Alt-Sh-O, Alt-[. Add some missing
|
12
|
+
15|clo|bug|P3|2 keys simulaneously with Alt-O or Alt-[
|
13
|
+
16|clo|enh|P3|put key combins in arrays and match
|
14
|
+
17|ope|bug|P4|selected_item of list broken
|
15
|
+
18|clo|enh|P3|valid_range for Field
|
16
|
+
19|clo|bug|X2|tree can print beyond right margin
|
17
|
+
20|ope|bug|P4|cannot bind_key using Alt key and another.
|
18
|
+
21|sta|enh|P2|make code from App common so reusable in other examples
|
19
|
+
22|ope|bug|P3|widget hide (visible false) does not hide
|
20
|
+
23|clo|bug|P3|listbox color changes not reflecting in cell_renderer
|
21
|
+
24|clo|bug|P3|Table: delete row should reflect focussed_index.
|
22
|
+
25|clo|enh|X3|#cleanup add_cols rows_panned #urgent
|
23
|
+
26|ope|fea|P5|App to have a layout abject
|
24
|
+
27|ope|bug|P4|#fix testvimsplit not sizing STACK correctly
|
25
|
+
28|clo|enh|P1|FieldValidationException should rollback change,
|
26
|
+
29|clo|enh|X1|return self from dsl_prop and dsl_accessor,
|
27
|
+
30|can|bug|P3|on_leave has validations that should be separated,
|
28
|
+
31|clo|enh|X1|#listbox data more accessible from LB class,
|
29
|
+
32|ope|enh|P4| #tree many empty methods in #treemodel
|
30
|
+
33|clo|enh|X3|display_menu shd furhter glob on tab
|
31
|
+
34|clo|enh|X3|display_menu large list need scrolling
|
32
|
+
35|clo|bug|X3|alert message getting truncated after 2 lines
|
33
|
+
36|clo|fea|X3|use j k h l for navigation if unused by a button of widget
|
34
|
+
37|ope|enh|P4|simplify #vimsplit calculation
|
35
|
+
38|clo|bug|X3|#tabbedpane when fire, state of old tab discrep
|
36
|
+
39|ope|bug|P5|tabularwidget truncate needed left_margin
|
37
|
+
40|clo|bug|X3|%textarea C-e goes to last char, not one after that
|
38
|
+
41|clo|bug|X3|M-2 did not work in textarea
|
39
|
+
42|ope|bug|P5|append_to_kill, yank not working in %listbox
|
40
|
+
43|clo|bug|X1|rt arrow and backspace issue ask(), dbdemo save #urgent
|
41
|
+
44|clo|bug|P1|need to hide window after ask(), dbdemo save
|
42
|
+
45|clo|bug|X3|directory list, after pressing Enter on ../ focus on header
|
43
|
+
46|clo|enh|X3|textview repaints all even when no scrolling
|
44
|
+
47|ope|enh|P4|vieditable and io.rb need to create statuswindow and take input
|
45
|
+
48|clo|bug|X3|say not working after ask hides window
|
46
|
+
49|ope|enh|P5|resultsetview needs way to specify key fields
|
47
|
+
50|ope|bug|P5|sort on tabularwidget with resultset error sometimes
|
48
|
+
51|clo|bug|X2|TabbedPane's TabbedButtons rely on window being 0,0
|
49
|
+
52|ope|bug|P4|%label set_label may have to calculate at repaint esp in app
|
50
|
+
53|clo|bug|X3|%App. if shortcut used outside stack or flow, dont attach form or set
|
51
|
+
54|clo|bug|X3|inside newtabbedpane button mnemonic and underline not happening #fix
|
52
|
+
55|ope|enh|P4|Have a module Expandable for those that are multiline
|
53
|
+
56|ope|enh|P4|DRY up titles and borders
|
54
|
+
57|clo|enh|X2|dont put default for color and bg in init of Wid or field
|
55
|
+
58|clo|enh|X2|Fields display_length should be width or made alias
|
56
|
+
60|ope|enh|P4|fields width, display_len is for input area, not label plus input
|
57
|
+
61|ope|bug|P4|test2.rb color change not affecting text objects
|
58
|
+
62|clo|bug|X2|when using chunks, movement crashes C-e etc
|
59
|
+
63|clo|bug|X2|chunks in textview, when scrolling earlier lines shown
|
60
|
+
64|clo|enh|X2|abstract chunk and parse into Format class
|
61
|
+
65|ope|enh|P3|clean up window.rb prv_printstring etc
|
62
|
+
66|clo|bug|X2|colorparser needs to carryover, and :reset
|
63
|
+
67|clo|enh|X3|several places doing attrib conversion in window, use get_attrib
|
64
|
+
68|clo|bug|X4|move chunk parsing from window.rb to chunk as in textview
|
65
|
+
69|ope|bug|P2|C-u not available for textpad and view. how to
|
66
|
+
70|ope|enh|P4|confusion between renderer and color_parser
|
67
|
+
71|clo|enh|X1|redo combo with basiclist or new popup
|
68
|
+
72|clo|enh|X2|redo label simplify, one line only
|
69
|
+
73|clo|bug|X2|rbasiclist needs to reduce selected symbol
|
70
|
+
74|ope|enh|P3|list and others should just calculate longest in list
|
71
|
+
75|ope|enh|P4|textpad to allow append << at some stage
|
72
|
+
76|clo|enh|X3|appmethods.rb may need to go into lib/common or somewhere else
|
73
|
+
77|clo|enh|X2|switch messagebox old and new and change rdialog
|
74
|
+
78|clo|enh|X1|switch tabbedpane classes and update examples
|
75
|
+
79|ope|enh|P3|cleanup button getpaint etc
|
76
|
+
80|ope|enh|P3|use @focusable in form to simplify
|
77
|
+
81|clo|bug|X2|field label mnemonic not being set
|
78
|
+
82|ope|bug|P2|new messagebox need default_button option
|
79
|
+
83|clo|enh|X2|check statusline usage, should use formatted only
|
80
|
+
84|clo|bug|X2|dbdemo M-z not doing anything
|
81
|
+
85|ope|bug|P2|combo symbol when label, see newmessagebox
|
82
|
+
86|ope|bug|P2|combo let caller suggest width and use if longer than longest item
|
83
|
+
87|ope|enh|P3|praps global setting lists etc use SPC for scroll or selection
|
84
|
+
88|ope|enh|P2|keep working on wsshortcuts as in testws..2.rb
|
85
|
+
89|ope|bug|P2|messagebox, see about background for zterm-256 as in header
|
86
|
+
90|clo|bug|X2|messagebox: message sets width, even if user has specified
|
87
|
+
91|clo|enh|X2|messagebox: default row col cannot be 0,0
|
88
|
+
92|ope|enh|P3|messagebox: if text longer than display then can we split
|
@@ -0,0 +1,27 @@
|
|
1
|
+
Field to have history which pops up
|
2
|
+
App to have layout objects @1.6
|
3
|
+
F2 menu to have context sensitive items
|
4
|
+
SL and Dock events Hide. Move ...
|
5
|
+
Stack and Flow to be objects @1.5
|
6
|
+
ability to share directory options and functions across dir apps
|
7
|
+
add event to form, key_resize
|
8
|
+
app: add popup @1.5
|
9
|
+
app: widgets can register with dock @1.5
|
10
|
+
can use textpad in resultsetdb view to make things simpler
|
11
|
+
colored module that allows row-wise coloring for all multirow wids
|
12
|
+
find_file like microemacs @1.5
|
13
|
+
motion options in textview and lists gg G cYcEcDcB zz zt zb etc
|
14
|
+
registering command with Alt-X SL and Dock
|
15
|
+
schemes (color) @1.5
|
16
|
+
textview etc can have source. also module to recog file type,fmt
|
17
|
+
use textpad for lists etc
|
18
|
+
window.close can have a event so cleanup of any widget can be done
|
19
|
+
Backward char search using F
|
20
|
+
add progress bar to StatusWindow
|
21
|
+
bottomline options global @1.5
|
22
|
+
catch_alt_digits maybe at form level not global
|
23
|
+
widgets needs to expose mapped keys in some easy way
|
24
|
+
color_pair as :red_on_black
|
25
|
+
confirm quit option, and call a proc before quitting
|
26
|
+
elusive error if row not given in button
|
27
|
+
rpopupmenu and rmenu share same class names
|