Eskil

Check-in [59cc4ed70c]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Remove old file
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 59cc4ed70c5ee18794b9a55b44fdcfff53e6e42b
User & Date: peter 2016-08-18 19:11:38.615
Context
2016-08-19
15:30
GUI support for table and separator. check-in: ceab939d5e user: peter tags: trunk
2016-08-18
19:11
Remove old file check-in: 59cc4ed70c user: peter tags: trunk
2016-08-15
21:36
Obviously no check-in: 1e99cee11b user: peter tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Deleted src/tablelist5.13.patch.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
diff -ur tablelist5.13.orig/scripts/tablelistConfig.tcl tablelist5.13/scripts/tablelistConfig.tcl
--- tablelist5.13.orig/scripts/tablelistConfig.tcl	2015-01-01 16:07:23.784270154 +0100
+++ tablelist5.13/scripts/tablelistConfig.tcl	2015-06-03 23:52:28.584316642 +0200
@@ -23,6 +23,7 @@
     lappend configSpecs(-activestyle)		frame
     lappend configSpecs(-autoscan)		1
     lappend configSpecs(-collapsecommand)	{}
+    lappend configSpecs(-colorizecommand)	{}
     lappend configSpecs(-columns)		{}
     lappend configSpecs(-columntitles)		{}
     lappend configSpecs(-customdragsource)	0
@@ -559,6 +560,7 @@
 		-acceptchildcommand -
 		-acceptdropcommand -
 		-collapsecommand -
+		-colorizecommand -
 		-editendcommand -
 		-editstartcommand -
 		-expandcommand -
diff -ur tablelist5.13.orig/scripts/tablelistUtil.tcl tablelist5.13/scripts/tablelistUtil.tcl
--- tablelist5.13.orig/scripts/tablelistUtil.tcl	2015-01-01 20:08:52.271490592 +0100
+++ tablelist5.13/scripts/tablelistUtil.tcl	2015-06-03 23:52:28.584316642 +0200
@@ -3394,6 +3394,13 @@
 			}
 		    }
 		}
+                set cmdPre $data(-colorizecommand)
+                if {$cmdPre ne ""} {
+                    set tabIdx1 [$w index $textIdx1+1c]
+                    lappend cmdPre $win $w $key $row $col \
+                            $tabIdx1 $tabIdx2 $inStripe $selected
+                    uplevel \#0 $cmdPre
+                }
 
 		set textIdx1 $textIdx2
 	    }
diff -ur tablelist5.13.orig/scripts/tablelistWidget.tcl tablelist5.13/scripts/tablelistWidget.tcl
--- tablelist5.13.orig/scripts/tablelistWidget.tcl	2015-01-01 16:08:26.801266763 +0100
+++ tablelist5.13/scripts/tablelistWidget.tcl	2015-06-03 23:52:28.584316642 +0200
@@ -105,6 +105,7 @@
 	-borderwidth		 {borderWidth		  BorderWidth	      f}
 	-bd			 -borderwidth
 	-collapsecommand	 {collapseCommand	  CollapseCommand     w}
+	-colorizecommand	 {colorizeCommand	  ColorizeCommand     w}
 	-columns		 {columns		  Columns	      w}
 	-columntitles		 {columnTitles		  ColumnTitles	      w}
 	-cursor			 {cursor		  Cursor	      c}
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<