gooderp18绿色标准版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
4.1KB

  1. # -*-mode: tcl; fill-column: 75; tab-width: 8; coding: iso-latin-1-unix -*-
  2. #
  3. # $Id: PanedWin.tcl,v 1.3 2001/12/09 05:31:07 idiscovery Exp $
  4. #
  5. # Tix Demostration Program
  6. #
  7. # This sample program is structured in such a way so that it can be
  8. # executed from the Tix demo program "widget": it must have a
  9. # procedure called "RunSample". It should also have the "if" statment
  10. # at the end of this file so that it can be run as a standalone
  11. # program using tixwish.
  12. # This file demonstrates the use of the tixPanedWindow widget. This program
  13. # is a dummy news reader: the user can adjust the sizes of the list
  14. # of artical names and the size of the text widget that shows the body
  15. # of the article
  16. #
  17. proc RunSample {w} {
  18. # We create the frame at the top of the dialog box
  19. #
  20. frame $w.top -relief raised -bd 1
  21. # Use a LabelEntry widget to show the name of the newsgroup
  22. # [Hint] We disable the entry widget so that the user can't
  23. # mess up with the name of the newsgroup
  24. #
  25. tixLabelEntry $w.top.name -label "Newsgroup: " -options {
  26. entry.width 25
  27. }
  28. $w.top.name subwidget entry insert 0 "comp.lang.tcl"
  29. $w.top.name subwidget entry config -state disabled
  30. pack $w.top.name -side top -anchor c -fill x -padx 14 -pady 6
  31. # Now use a PanedWindow to contain the list and text widgets
  32. #
  33. tixPanedWindow $w.top.pane -paneborderwidth 0
  34. pack $w.top.pane -side top -expand yes -fill both -padx 10 -pady 10
  35. set p1 [$w.top.pane add list -min 70 -size 100]
  36. set p2 [$w.top.pane add text -min 70]
  37. tixScrolledListBox $p1.list
  38. $p1.list subwidget listbox config -font [tix option get fixed_font]
  39. tixScrolledText $p2.text
  40. $p2.text subwidget text config -font [tix option get fixed_font]
  41. pack $p1.list -expand yes -fill both -padx 4 -pady 6
  42. pack $p2.text -expand yes -fill both -padx 4 -pady 6
  43. # Use a ButtonBox to hold the buttons.
  44. #
  45. tixButtonBox $w.box -orientation horizontal
  46. $w.box add ok -text Ok -underline 0 -command "destroy $w" \
  47. -width 8
  48. $w.box add cancel -text Cancel -underline 0 -command "destroy $w" \
  49. -width 8
  50. pack $w.box -side bottom -fill x
  51. pack $w.top -side top -fill both -expand yes
  52. # Put the junk inside the listbox and the tetx widget
  53. #
  54. $p1.list subwidget listbox insert end \
  55. " 12324 Re: TK is good for your health" \
  56. "+ 12325 Re: TK is good for your health" \
  57. "+ 12326 Re: Tix is even better for your health (Was: TK is good...)" \
  58. " 12327 Re: Tix is even better for your health (Was: TK is good...)" \
  59. "+ 12328 Re: Tix is even better for your health (Was: TK is good...)" \
  60. " 12329 Re: Tix is even better for your health (Was: TK is good...)" \
  61. "+ 12330 Re: Tix is even better for your health (Was: TK is good...)"
  62. $p2.text subwidget text config -wrap none -bg \
  63. [$p1.list subwidget listbox cget -bg]
  64. $p2.text subwidget text insert end {
  65. Mon, 19 Jun 1995 11:39:52 comp.lang.tcl Thread 34 of 220
  66. Lines 353 A new way to put text and bitmaps together iNo responses
  67. ioi@blue.seas.upenn.edu Ioi K. Lam at University of Pennsylvania
  68. Hi,
  69. I have implemented a new image type called "compound". It allows you
  70. to glue together a bunch of bitmaps, images and text strings together
  71. to form a bigger image. Then you can use this image with widgets that
  72. support the -image option. This way you can display very fancy stuffs
  73. in your GUI. For example, you can display a text string string
  74. together with a bitmap, at the same time, inside a TK button widget. A
  75. screenshot of compound images can be found at the bottom of this page:
  76. http://www.cis.upenn.edu/~ioi/tix/screenshot.html
  77. You can also you is in other places such as putting fancy bitmap+text
  78. in menus, tabs of tixNoteBook widgets, etc. This feature will be
  79. included in the next release of Tix (4.0b1). Count on it to make jazzy
  80. interfaces!}
  81. }
  82. # This "if" statement makes it possible to run this script file inside or
  83. # outside of the main demo program "widget".
  84. #
  85. if {![info exists tix_demo_running]} {
  86. wm withdraw .
  87. set w .demo
  88. toplevel $w; wm transient $w ""
  89. RunSample $w
  90. bind $w <Destroy> {if {"%W" == ".demo"} exit}
  91. }
上海开阖软件有限公司 沪ICP备12045867号-1