Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Stubs for unimplemented classic widgets. |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
ec066be4aa3b623c36ebf16a820419b2 |
| User & Date: | gerald 2013-01-07 20:37:30.591 |
Context
|
2013-01-08
| ||
| 03:53 | Generated stubs for Themed Widgets (aka ::ttk:: widgets). check-in: ee5a9b9d4e user: gerald tags: trunk | |
|
2013-01-07
| ||
| 20:37 | Stubs for unimplemented classic widgets. check-in: ec066be4aa user: gerald tags: trunk | |
|
2013-01-06
| ||
| 18:25 | update jQuery from 1.7.2 to 1.8.3 check-in: b2b5101765 user: stever tags: trunk | |
Changes
Added widgets/labelframe.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# labelframe widgets
snit::type Labelframe {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','labelframe');"}
}
|
Added widgets/listbox.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# listbox widgets
snit::type Listbox {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','listbox');"}
}
|
Added widgets/menu.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# menu widgets
snit::type Menu {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','menu');"}
}
|
Added widgets/menubutton.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# menubutton widgets
snit::type Menubutton {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','menubutton');"}
}
|
Added widgets/message.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# message widgets
snit::type Message {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','message');"}
}
|
Added widgets/panedwindow.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# panedwindow widgets
snit::type Panedwindow {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','panedwindow');"}
}
|
Added widgets/radiobutton.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# radiobutton widgets
snit::type Radiobutton {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','radiobutton');"}
}
|
Added widgets/scale.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# scale widgets
snit::type Scale {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','scale');"}
}
|
Added widgets/scrollbar.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# scrollbar widgets
snit::type Scrollbar {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','scrollbar');"}
}
|
Added widgets/spinbox.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# spinbox widgets
snit::type Spinbox {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','spinbox');"}
}
|
Added widgets/text.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# text widgets
snit::type Text {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','text');"}
}
|
Added widgets/tk_optionmenu.tcl.
> > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 |
# tk_optionmenu widgets
snit::type Tk_optionmenu {
_wtkoption -bg "" {$JS.style.background='$V';}
_wtkoption -fg "" {$JS.style.color='$V';}
method _createjs {} {return "wtk.createLabel('[$self id]','tk_optionmenu');"}
}
|