Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | UI tweaks |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
8af3877f0216289a6d1d83d7c6daa7a7 |
User & Date: | kevin 2017-09-20 02:47:34 |
Context
2017-09-20
| ||
02:51 | UI tweaks check-in: db9c25e236 user: kevin tags: trunk | |
02:47 | UI tweaks check-in: 8af3877f02 user: kevin tags: trunk | |
2017-09-19
| ||
11:43 | Code formatting and cleanup check-in: 28f8803fe4 user: kevin tags: trunk | |
Changes
Changes to stringscan.rb.
︙ | |||
77 78 79 80 81 82 83 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | - - + | end #core method; here we search for a string in text files within a directory and display a list of matching files in the listbox def stringgrep $root.update $file_list = [] $grep_list = [] |
︙ | |||
103 104 105 106 107 108 109 | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 | - | $lbox.insert('end', "#{i}") f.close end end rescue #puts "Search term not found.\n" end |
︙ | |||
273 274 275 276 277 278 279 | 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | - | state 'disabled' }.pack('side'=>'left','fill' => 'both', 'expand' => 'yes') $tscrollframe = Tk::Frame.new($bottomrightframe).pack('side'=>'right','fill' => 'y', 'expand' => 'no') $tscroll = Tk::Tile::Scrollbar.new($tscrollframe).pack('side'=>'right','fill' => 'y', 'expand' => 'no') $tbox.yscrollbar($tscroll) $labelframe = Tk::Tile::Frame.new($root).pack('side'=>'bottom', 'fill'=>'both', 'expand' => 'no') $bottomlabel = Tk::Tile::Label.new($labelframe) {text "No data displayed"}.pack('side' => 'left','fill' => 'both','expand' => 'no') |
︙ |