A Widgetscope is made up of two parts:
- a probe systems that must be installed in a running application
- a set of widgetscopes, i.e. some specialized viewers able to inpect and change the properties of the observed widgets.
Widgetscopes run in a dedicated space fully separated from the application. They run in a separate 'interpreter', so that no conflict with your application's resources (procedures, variables, widgets,...) may occurr. The only parts that are loaded with your application are a set of procedures , confined in a dedicated namespace '::wprobe' that will be used to instrument just your app's widgets you want to inspect.
Download edit
wscope 1.0 [1]
Install the package wscope edit
Wscope package should be installed as a standard Tk package, that is as a subdirectory of one of the directories given by the "auto_path" variable.Quick Tour edit
Let's start with a very simple TclTk application like the following#-- example1.tcl --------------------------------------------------------- button .button1 -text "Hello World" .button1 configure -command { tk_dialog .hello "Hello World!" "what a wonderful world" info 0 "Yeah" } pack .button1If you installed the package as suggested, you can run this application by typing the following command:
- (on Windows)
tkcon.tcl example1.tcl -load wscope -slave "wprobe::quickstart ; tkcon iconify"
- (on Linux/MacOS)
tkcon example1.tcl -load wscope -slave "wprobe::quickstart ; tkcon iconify"The above command in detail:
- launch the TkCon console
- run the script "example1.tcl"
- then load the package wscope
- and finally run the tcl command "wprobe::quickstart"
- and hide the TkCon console.
Now you can inspect and change its properties. <<br> Note that when you click on the "Hello World" button, its attached widgetscope reports the changes (in particular for the "-state" and "-relief" options).
You can also open (or deiconify) the TkCon console and type a command like the following
.button1 configure -background orangeor conversely, you can act through the widgetscope; press the "-background" button, or type somthing in any text-box