Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Further refinements |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
a650365576bd3bde33399c5b19cf33de |
User & Date: | kevin 2017-06-24 22:41:12 |
Context
2017-06-25
| ||
02:51 | Further tweaks of comments check-in: fadc0bf21b user: kevin tags: trunk | |
2017-06-24
| ||
22:41 | Further refinements check-in: a650365576 user: kevin tags: trunk | |
20:21 | Update help credits check-in: d62c1c6307 user: kevin tags: trunk | |
Changes
Deleted highlights.rb.
|
| < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Changes to stringscan.rb.
︙ | ︙ | |||
197 198 199 200 201 202 203 | $termlabel = Tk::Tile::Label.new($topframe) {text "Search Term:"}.pack('side' => 'left','fill' => 'both','expand' => 'no') $termentry = Tk::Tile::Entry.new($topframe) {textvariable $searchterm}.pack('side' => 'left','fill' => 'both','expand' => 'no') $termentry.bind('Return', proc {stringgrep}) $nextsep = Tk::Tile::Separator.new($mainframe) {orient 'horizontal'}.pack('side'=>'top', 'fill'=>'both') #listbox, textbox, scrollbars $bottomframe = Tk::Frame.new($mainframe).pack('side'=>'bottom','fill' => 'both', 'expand' => 'yes') | | | 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 | $termlabel = Tk::Tile::Label.new($topframe) {text "Search Term:"}.pack('side' => 'left','fill' => 'both','expand' => 'no') $termentry = Tk::Tile::Entry.new($topframe) {textvariable $searchterm}.pack('side' => 'left','fill' => 'both','expand' => 'no') $termentry.bind('Return', proc {stringgrep}) $nextsep = Tk::Tile::Separator.new($mainframe) {orient 'horizontal'}.pack('side'=>'top', 'fill'=>'both') #listbox, textbox, scrollbars $bottomframe = Tk::Frame.new($mainframe).pack('side'=>'bottom','fill' => 'both', 'expand' => 'yes') $bottomleftframe = Tk::Tile::Frame.new($bottomframe).pack('side'=>'left','fill' => 'both', 'expand' => 'yes') $listlabel = Tk::Tile::Label.new($bottomleftframe) { text 'File Name' style 'TablelistHeader.TLabel' padding 1 }.pack('side'=>'top', 'fill'=>'both', 'expand' => 'no') $lbox = Tk::Listbox.new($bottomleftframe){ width 50 |
︙ | ︙ |