Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch tklib-0-7-rc
Excluding Merge-Ins
This is equivalent to a diff from
f38162f408
to 7fbc0db947
2020-02-09
| | |
20:52 |
|
check-in: 4a6cbb19d1 user: aku tags: trunk, tklib-0.7, release
|
20:45 |
|
Closed-Leaf
check-in: 7fbc0db947 user: aku tags: tklib-0-7-rc
|
20:42 |
|
check-in: 50d59b6817 user: aku tags: tklib-0-7-rc
|
2020-02-07
| | |
16:36 |
|
check-in: dc658ef333 user: csaba tags: tklib-0-7-rc
|
2020-02-06
| | |
14:09 |
|
check-in: f38162f408 user: csaba tags: trunk
|
14:08 |
|
check-in: e686a78bf1 user: csaba tags: trunk
|
| | |
Changes to DESCRIPTION.txt.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
-
+
-
+
+
|
Identifier: tklib
Title: Tk Standard Library
Description: This package is intended to be a collection of
Tcl packages that provide utility functions useful to a
large collection of Tk programmers.
Rights: BSD
Version: 0.6
Version: 0.7
URL: http://core.tcl.tk/tklib/
Architecture: tcl
Contributor: Aaron Faupell <afaupell at users dot sourceforge dot net>
Contributor: Andreas Kupries <andreas_kupries at users dot sourceforge dot net>
Contributor: Andreas Kupries <andreask at activestate dot com>
Contributor: Andreas Kupries (AS Senior Dev) <andreask at activestate dot com>
Contributor: Arjen Markus <arjenmarkus at users dot sourceforge dot net>
Contributor: Csaba Nemethi <csaba dot nemethi at t-online dot de>
Contributor: David N. Welton <davidw at dedasys dot com>
Contributor: George Peter Staplin <georgeps at users dot sourceforge dot net>
Contributor: Jean-Luc Fontaine <jfontain at free dot fr>
Contributor: Jeff Hobbs <jeffh at ActiveState dot com>
Contributor: Keith Nash <kjnash at users dot sourceforge dot net>
|
︙ | | |
Changes to embedded/man/files/modules/datefield/datefield.n.
1
2
3
4
5
6
7
8
9
10
11
12
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
+
-
+
|
'\"
'\" Generated from file 'datefield\&.man' by tcllib/doctools with format 'nroff'
'\" Copyright (c) Keith Vetter <keith@ebook\&.gemstar\&.com>
'\" Copyright (c) Thomas Wunderlich <tcl\&.tk@blindenfreizeiten\&.de>
'\"
.TH "datefield" n 0\&.2 tklib "Tk datefield widget"
.TH "datefield" n 0\&.3 tklib "Tk datefield widget"
.\" The -*- nroff -*- definitions below are for supplemental macros used
.\" in Tcl/Tk manual entries.
.\"
.\" .AP type name in/out ?indent?
.\" Start paragraph describing an argument to a library procedure.
.\" type is type of argument (int, etc.), in/out is either "in", "out",
.\" or "in/out" to describe whether procedure reads or modifies arg,
|
︙ | | |
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
-
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
-
+
|
..
.BS
.SH NAME
datefield \- Tk datefield widget
.SH SYNOPSIS
package require \fBTk \fR
.sp
package require \fBdatefield ?0\&.2?\fR
package require \fBdatefield ?0\&.3?\fR
.sp
\fB::datefield::datefield\fR \fIwidgetpath\fR ?\fIoptions\fR?
.sp
\fI-format\fR
.sp
.BE
.SH DESCRIPTION
The \fBdatefield\fR package provides the datefield widget which
is an enhanced text entry widget for the purpose of date entry\&. Only
valid dates of the form MM/DD/YYYY can be entered\&.
is an enhanced text entry widget for the purpose of date entry\&. There
are three valid formats for the dates which can be entered:
.IP [1]
English form MM/DD/YYYY using \fI-format "%m/%d/%Y"\fR (default)
.IP [2]
German form DD\&.MM\&.YYYY using \fI-format "%d\&.%m\&.%Y"\fR
.IP [3]
ISO form YYYY-MM-DD using \fI-format "%Y-%m-%d"\fR
.PP
.PP
The datefield widget is, in fact, just an entry widget with
specialized bindings\&. This means all the command and options for an
entry widget apply equally here\&.
.SH COMMANDS
.TP
\fB::datefield::datefield\fR \fIwidgetpath\fR ?\fIoptions\fR?
Creates and configures a date field widget\&.
.PP
.SH OPTIONS
.TP
\fI-format\fR
One of "%m/%d/%Y" (English, default if option left), "%d\&.%m\&.%Y" (German),
or "%Y-%m-%d" (ISO)\&.
.PP
.PP
See the \fBentry\fR manual entry for details on all available options\&.
See the \fBentry\fR manual entry for details on all remaining/available
options\&.
.SH EXAMPLE
.CS
package require datefield
wm title \&. "Datefield example"
proc DayOfWeek {args} {
set now [clock scan $::myDate]
set ::myDate2 [clock format $now -format %A]
}
trace variable myDate w DayOfWeek
::datefield::datefield \&.df -textvariable myDate
::datefield::datefield \&.df -textvariable myDate -format "%m/%d/%Y"
label \&.l1 -text "Enter a date:" -anchor e
label \&.l2 -text "That date is a:" -anchor e
label \&.l3 -textvariable myDate2 -relief sunken -width 12
grid \&.l1 \&.df -sticky ew
grid \&.l2 \&.l3 -sticky ew
focus \&.df
|
︙ | | |
331
332
333
334
335
336
337
338
339
|
348
349
350
351
352
353
354
355
356
357
|
+
|
.SH KEYWORDS
clock, date, dateentry, entry, widget
.SH CATEGORY
Widget
.SH COPYRIGHT
.nf
Copyright (c) Keith Vetter <keith@ebook\&.gemstar\&.com>
Copyright (c) Thomas Wunderlich <tcl\&.tk@blindenfreizeiten\&.de>
.fi
|
Changes to embedded/man/files/modules/widgetPlus/widgetPlus.n.
︙ | | |
609
610
611
612
613
614
615
616
617
|
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
|
+
+
+
+
+
+
+
|
package require widgetPlus
::widgetPlus::EnableBWidget
namespace import widgetPlus::*
entryPlus \&.cb\&.e -undo 1 -maxundo 0
.CE
.SH "BUGS, IDEAS, FEEDBACK"
This document, and the package it describes, will undoubtedly contain
bugs and other problems\&.
Please report such in the category \fIwidgetPlus\fR of the
\fITklib Trackers\fR [http://core\&.tcl\&.tk/tklib/reportlist]\&.
Please also report any ideas for enhancements you may have for either
package and/or documentation\&.
.SH "SEE ALSO"
BWidget, ComboBox, Entry, entry, persistentSelection, spinbox, text, ttk::combobox, ttk::entry, ttk::spinbox
|
Changes to embedded/www/tklib/files/modules/datefield/datefield.html.
︙ | | |
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
-
+
-
+
|
margin-bottom: 1em;
border-bottom: 1px solid black;
}
--></style>
</head>
<!-- Generated from file 'datefield.man' by tcllib/doctools with format 'html'
-->
<!-- Copyright &copy; Keith Vetter &lt;[email protected]&gt;
<!-- Copyright &copy; Keith Vetter &lt;[email protected]&gt; -- Copyright &copy; Thomas Wunderlich &lt;[email protected]&gt;
-->
<!-- datefield.n
-->
<body><hr> [
<a href="../../../../../../../../home">Tklib Home</a>
| <a href="../../../../toc.html">Main Table Of Contents</a>
| <a href="../../../toc.html">Table Of Contents</a>
| <a href="../../../../index.html">Keyword Index</a>
| <a href="../../../../toc0.html">Categories</a>
| <a href="../../../../toc1.html">Modules</a>
| <a href="../../../../toc2.html">Applications</a>
] <hr>
<div class="doctools">
<h1 class="doctools_title">datefield(n) 0.2 tklib "Tk datefield widget"</h1>
<h1 class="doctools_title">datefield(n) 0.3 tklib "Tk datefield widget"</h1>
<div id="name" class="doctools_section"><h2><a name="name">Name</a></h2>
<p>datefield - Tk datefield widget</p>
</div>
<div id="toc" class="doctools_section"><h2><a name="toc">Table Of Contents</a></h2>
<ul class="doctools_toc">
<li class="doctools_section"><a href="#toc">Table Of Contents</a></li>
<li class="doctools_section"><a href="#synopsis">Synopsis</a></li>
|
︙ | | |
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
-
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
-
+
|
<li class="doctools_section"><a href="#copyright">Copyright</a></li>
</ul>
</div>
<div id="synopsis" class="doctools_section"><h2><a name="synopsis">Synopsis</a></h2>
<div class="doctools_synopsis">
<ul class="doctools_requirements">
<li>package require <b class="pkgname">Tk</b></li>
<li>package require <b class="pkgname">datefield <span class="opt">?0.2?</span></b></li>
<li>package require <b class="pkgname">datefield <span class="opt">?0.3?</span></b></li>
</ul>
<ul class="doctools_syntax">
<li><a href="#1"><b class="cmd">::datefield::datefield</b> <i class="arg">widgetpath</i> <span class="opt">?<i class="arg">options</i>?</span></a></li>
<li><a href="#2"><i class="arg">-format</i></a></li>
</ul>
</div>
</div>
<div id="section1" class="doctools_section"><h2><a name="section1">Description</a></h2>
<p>The <b class="package">datefield</b> package provides the datefield widget which
is an enhanced text entry widget for the purpose of date entry. Only
valid dates of the form MM/DD/YYYY can be entered.</p>
is an enhanced text entry widget for the purpose of date entry. There
are three valid formats for the dates which can be entered:</p>
<ol class="doctools_enumerated">
<li><p>English form MM/DD/YYYY using <i class="arg">-format "%m/%d/%Y"</i> (default)</p></li>
<li><p>German form DD.MM.YYYY using <i class="arg">-format "%d.%m.%Y"</i></p></li>
<li><p>ISO form YYYY-MM-DD using <i class="arg">-format "%Y-%m-%d"</i></p></li>
</ol>
<p>The datefield widget is, in fact, just an entry widget with
specialized bindings. This means all the command and options for an
entry widget apply equally here.</p>
</div>
<div id="section2" class="doctools_section"><h2><a name="section2">COMMANDS</a></h2>
<dl class="doctools_definitions">
<dt><a name="1"><b class="cmd">::datefield::datefield</b> <i class="arg">widgetpath</i> <span class="opt">?<i class="arg">options</i>?</span></a></dt>
<dd><p>Creates and configures a date field widget.</p></dd>
</dl>
</div>
<div id="section3" class="doctools_section"><h2><a name="section3">OPTIONS</a></h2>
<dl class="doctools_definitions">
<dt><a name="2"><i class="arg">-format</i></a></dt>
<dd><p>One of "%m/%d/%Y" (English, default if option left), "%d.%m.%Y" (German),
or "%Y-%m-%d" (ISO).</p></dd>
</dl>
<p>See the <b class="cmd"><a href="../../../../index.html#key32">entry</a></b> manual entry for details on all available options.</p>
<p>See the <b class="cmd"><a href="../../../../index.html#key32">entry</a></b> manual entry for details on all remaining/available
options.</p>
</div>
<div id="section4" class="doctools_section"><h2><a name="section4">EXAMPLE</a></h2>
<pre class="doctools_example">
package require datefield
wm title . "Datefield example"
proc DayOfWeek {args} {
set now [clock scan $::myDate]
set ::myDate2 [clock format $now -format %A]
}
trace variable myDate w DayOfWeek
::datefield::datefield .df -textvariable myDate
::datefield::datefield .df -textvariable myDate -format "%m/%d/%Y"
label .l1 -text "Enter a date:" -anchor e
label .l2 -text "That date is a:" -anchor e
label .l3 -textvariable myDate2 -relief sunken -width 12
grid .l1 .df -sticky ew
grid .l2 .l3 -sticky ew
focus .df
</pre>
|
︙ | | |
186
187
188
189
190
191
192
193
194
195
|
198
199
200
201
202
203
204
205
206
207
208
|
-
+
+
|
<div id="keywords" class="doctools_section"><h2><a name="keywords">Keywords</a></h2>
<p><a href="../../../../index.html#key31">clock</a>, <a href="../../../../index.html#key33">date</a>, <a href="../../../../index.html#key6">dateentry</a>, <a href="../../../../index.html#key32">entry</a>, <a href="../../../../index.html#key11">widget</a></p>
</div>
<div id="category" class="doctools_section"><h2><a name="category">Category</a></h2>
<p>Widget</p>
</div>
<div id="copyright" class="doctools_section"><h2><a name="copyright">Copyright</a></h2>
<p>Copyright © Keith Vetter <[email protected]></p>
<p>Copyright © Keith Vetter <[email protected]><br>
Copyright © Thomas Wunderlich <[email protected]></p>
</div>
</div></body></html>
|
Added embedded/www/tklib/files/modules/mentry/datetime1.png.
cannot compute difference between binary files
Added embedded/www/tklib/files/modules/mentry/datetime2.png.
cannot compute difference between binary files
Added embedded/www/tklib/files/modules/mentry/ethernetaddr.png.
cannot compute difference between binary files
Added embedded/www/tklib/files/modules/mentry/index.html.
|
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
|
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
|
<!DOCTYPE html>
<html>
<head>
<title>The Multi-Entry Widget Package Mentry 3.10</title>
<meta name="Author" content="Csaba Nemethi">
<meta name="Keywords" content="mentry, widget, entry, label">
</head>
<body>
<div align="center">
<h1>The Multi-Entry Widget Package Mentry 3.10</h1>
<h3>by</h3>
<h2>Csaba Nemethi</h2>
<address>
<a href="mailto:[email protected]">[email protected]</a>
</address>
</div>
<hr>
<h2>Contents</h2>
<p><a href="mentry.html">Mentry Programmer's Guide</a></p>
<p><a href="mentryWidget.html">The <code>mentry::mentry</code>
Command</a></p>
<p><a href="mentryDateTime.html">Multi-Entry Widgets for Date and
Time</a></p>
<p><a href="mentryFixedPoint.html">Multi-Entry Widgets for Real Numbers in
Fixed-Point Format</a></p>
<p><a href="mentryIPAddr.html">Multi-Entry Widgets for IP Addresses</a></p>
<p><a href="mentryIPv6Addr.html">Multi-Entry Widgets for IPv6
Addresses</a></p>
<p><a href="mentryThemes.html">Commands Related to Tile Themes</a></p>
<p><a href="wcbRef.html">Wcb Command Reference</a></p>
</body>
</html>
|
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
Added embedded/www/tklib/files/modules/mentry/mentry.html.