Ignore:
Timestamp:
Jun 21, 2010 6:16:13 AM (14 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/gui/scripts/xyprint.tcl

    r1768 r1769  
    1919option add *XyPrint.dimColor gray widgetDefault
    2020option add *XyPrint.controlBackground gray widgetDefault
    21 option add *XyPrint*font "Arial 9"
     21option add *XyPrint*Font "Arial 9" widgetDefault
    2222option add *XyPrint*Entry*width "6" widgetDefault
    2323option add *XyPrint*Entry*background "white" widgetDefault
     
    214214    set h $_settings($this-layout-height)i
    215215
    216     puts stderr "outputing graph w=$w h=$h"
    217216    $_clone postscript configure \
    218217        -decoration yes \
     
    707706
    708707    checkbutton $page.border -text "border" \
    709         -font "Arial 10"  \
    710708        -variable [itcl::scope _settings($this-legend-borderwidth)] \
    711709        -onvalue 1 -offvalue 0 \
     
    714712        "Display a solid border around the legend."
    715713
    716     label $page.slider_l -text "legend\nentry"  -font "Arial 10" -justify right
     714    label $page.slider_l -text "legend\nentry"  -justify right
    717715    itk_component add element_slider {
    718716        ::scale $page.slider -from 1 -to 1 \
     
    723721        "Select the current entry."
    724722
    725     label $page.label_l -text "label" -font "Arial 10"
     723    label $page.label_l -text "label"
    726724    entry $page.label \
    727725        -background white \
    728         -font "Arial 10" \
    729726        -textvariable [itcl::scope _settings($this-element-label)]
    730727    bind  $page.label <KeyPress-Return> [itcl::code $this ApplyElementSettings]
     
    732729        "Set the label of the current entry in the legend."
    733730
    734     label $page.color_l -text "color "  -font "Arial 10"
     731    label $page.color_l -text "color "
    735732    Rappture::Combobox $page.color -width 15 -editable no
    736733    $page.color choices insert end \
     
    757754        "Set the color of the current entry."
    758755
    759     label $page.dashes_l -text "line style"  -font "Arial 10"
     756    label $page.dashes_l -text "line style"
    760757    Rappture::Combobox $page.dashes -width 15 -editable no
    761758    $page.dashes choices insert end \
     
    769766        "Set the line style of the current entry."
    770767
    771     label $page.symbol_l -text "symbol"  -font "Arial 10"
     768    label $page.symbol_l -text "symbol"
    772769    Rappture::Combobox $page.symbol -editable no
    773770    $page.symbol choices insert end \
     
    867864        -text "Axis" -padx 2 -pady 2 -window $page -fill both
    868865   
    869     label $page.axis_l -text "axis"  -font "Arial 10"
     866    label $page.axis_l -text "axis"
    870867    itk_component add axis_combo {
    871868        Rappture::Combobox $page.axis -width 20 -editable no
     
    875872        "Select the current axis."
    876873
    877     label $page.title_l -text "title"  -font "Arial 10"
     874    label $page.title_l -text "title"
    878875    entry $page.title \
    879876        -textvariable [itcl::scope _settings($this-axis-title)]
     
    882879        "Set the title of the current axis."
    883880
    884     label $page.min_l -text "min"  -font "Arial 10"
     881    label $page.min_l -text "min"
    885882    entry $page.min -width 10 \
    886883        -textvariable [itcl::scope _settings($this-axis-min)]
     
    889886        "Set the minimum limit for the current axis. If empty, the minimum is automatically determined."
    890887
    891     label $page.max_l -text "max"  -font "Arial 10"
     888    label $page.max_l -text "max"
    892889    entry $page.max -width 10 \
    893890        -textvariable [itcl::scope _settings($this-axis-max)]
     
    896893        "Set the maximum limit for the current axis. If empty, the maximum is automatically determined."
    897894
    898     label $page.subdivisions_l -text "subdivisions"  -font "Arial 10"
     895    label $page.subdivisions_l -text "subdivisions"
    899896    entry $page.subdivisions \
    900897        -textvariable [itcl::scope _settings($this-axis-subdivisions)]
     
    904901        "Set the number of subdivisions (minor ticks) for the current axis."
    905902
    906     label $page.stepsize_l -text "step size"  -font "Arial 10"
     903    label $page.stepsize_l -text "step size"
    907904    entry $page.stepsize \
    908905        -textvariable [itcl::scope _settings($this-axis-stepsize)]
Note: See TracChangeset for help on using the changeset viewer.