home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Komunikace / Comanche / comanche.exe / lib / iwidgets3.0.0 / scripts / dateentry.itk < prev    next >
Text File  |  1999-02-24  |  15KB  |  409 lines

  1. #
  2. # Dateentry
  3. # ----------------------------------------------------------------------
  4. # Implements a quicken style date entry field with a popup calendar
  5. # by combining the datefield and calendar widgets together.  This
  6. # allows a user to enter the date via the keyboard or by using the
  7. # mouse by selecting the calendar icon which brings up a popup calendar.
  8. # ----------------------------------------------------------------------
  9. #   AUTHOR:  Mark L. Ulferts          E-mail: mulferts@austin.dsccc.com
  10. #
  11. #   @(#) $Id: dateentry.itk,v 1.1 1998/07/27 18:53:03 stanton Exp $
  12. # ----------------------------------------------------------------------
  13. #            Copyright (c) 1997 DSC Technologies Corporation
  14. # ======================================================================
  15. # Permission to use, copy, modify, distribute and license this software 
  16. # and its documentation for any purpose, and without fee or written 
  17. # agreement with DSC, is hereby granted, provided that the above copyright 
  18. # notice appears in all copies and that both the copyright notice and 
  19. # warranty disclaimer below appear in supporting documentation, and that 
  20. # the names of DSC Technologies Corporation or DSC Communications 
  21. # Corporation not be used in advertising or publicity pertaining to the 
  22. # software without specific, written prior permission.
  23. # DSC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING 
  24. # ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, AND NON-
  25. # INFRINGEMENT. THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, AND THE
  26. # AUTHORS AND DISTRIBUTORS HAVE NO OBLIGATION TO PROVIDE MAINTENANCE, 
  27. # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. IN NO EVENT SHALL 
  28. # DSC BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR 
  29. # ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, 
  30. # WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTUOUS ACTION,
  31. # ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS 
  32. # SOFTWARE.
  33. # ======================================================================
  34.  
  35. #
  36. # Usual options.
  37. #
  38. itk::usual Dateentry {
  39.     keep -background -borderwidth -currentdatefont -cursor \
  40.     -datefont -dayfont -foreground -highlightcolor \
  41.     -highlightthickness -labelfont -textbackground -textfont \
  42.     -titlefont
  43. }
  44.  
  45. # ------------------------------------------------------------------
  46. #                              DATEENTRY
  47. # ------------------------------------------------------------------
  48. class iwidgets::Dateentry {
  49.     inherit iwidgets::Datefield
  50.     
  51.     constructor {args} {}
  52.  
  53.     itk_option define -grab grab Grab "global"
  54.     itk_option define -icon icon Icon {}
  55.     
  56.     #
  57.     # The calendar widget isn't created until needed, yet we need
  58.     # its options to be available upon creation of a dateentry widget.
  59.     # So, we'll define them in these class now so they can just be
  60.     # propagated onto the calendar later.
  61.     #
  62.     itk_option define -days days Days {Su Mo Tu We Th Fr Sa}
  63.     itk_option define -forwardimage forwardImage Image {}
  64.     itk_option define -backwardimage backwardImage Image {}
  65.     itk_option define -weekdaybackground weekdayBackground Background \#d9d9d9
  66.     itk_option define -weekendbackground weekendBackground Background \#d9d9d9
  67.     itk_option define -outline outline Outline \#d9d9d9
  68.     itk_option define -buttonforeground buttonForeground Foreground blue
  69.     itk_option define -foreground foreground Foreground black
  70.     itk_option define -selectcolor selectColor Foreground red
  71.     itk_option define -selectthickness selectThickness SelectThickness 3
  72.     itk_option define -titlefont titleFont Font \
  73.     -*-helvetica-bold-r-normal--*-140-*
  74.     itk_option define -dayfont dayFont Font \
  75.     -*-helvetica-medium-r-normal--*-120-*
  76.     itk_option define -datefont dateFont Font \
  77.     -*-helvetica-medium-r-normal--*-120-*
  78.     itk_option define -currentdatefont currentDateFont Font \
  79.     -*-helvetica-bold-r-normal--*-120-*
  80.     itk_option define -startday startDay Day sunday
  81.     itk_option define -height height Height 165
  82.     itk_option define -width width Width 200
  83.     itk_option define -state state State normal
  84.  
  85.     protected {
  86.     method _getPopupDate {date}
  87.     method _releaseGrab {}
  88.     method _releaseGrabCheck {rootx rooty}
  89.     method _popup {}
  90.     method _getDefaultIcon {}
  91.  
  92.         common _defaultIcon ""
  93.     }
  94. }
  95.  
  96. #
  97. # Provide a lowercased access method for the dateentry class.
  98. proc ::iwidgets::dateentry {pathName args} {
  99.     uplevel ::iwidgets::Dateentry $pathName $args
  100. }
  101.  
  102. # ------------------------------------------------------------------
  103. #                        CONSTRUCTOR
  104. # ------------------------------------------------------------------
  105. body iwidgets::Dateentry::constructor {args} {
  106.     #
  107.     # Create an icon label to act as a button to bring up the 
  108.     # calendar popup.
  109.     #
  110.     itk_component add iconbutton {
  111.     label $itk_interior.iconbutton -relief raised
  112.     } {
  113.     keep -borderwidth -cursor -foreground 
  114.     }
  115.     grid $itk_component(iconbutton) -row 0 -column 0 -sticky ns
  116.     
  117.     #
  118.     # Initialize the widget based on the command line options.
  119.     #
  120.     eval itk_initialize $args
  121. }
  122.  
  123. # ------------------------------------------------------------------
  124. #                             OPTIONS
  125. # ------------------------------------------------------------------
  126.  
  127. # ------------------------------------------------------------------
  128. # OPTION: -icon
  129. #
  130. # Specifies the calendar icon image to be used in the date.
  131. # Should one not be provided, then a default pixmap will be used
  132. # if possible, bitmap otherwise.
  133. # ------------------------------------------------------------------
  134. configbody iwidgets::Dateentry::icon {
  135.     if {$itk_option(-icon) == {}} {
  136.     $itk_component(iconbutton) configure -image [_getDefaultIcon]
  137.     } else {
  138.     if {[lsearch [image names] $itk_option(-icon)] == -1} {
  139.         error "bad icon option \"$itk_option(-icon)\":\
  140.                    should be an existing image"
  141.     } else {
  142.         $itk_component(iconbutton) configure -image $itk_option(-icon)
  143.     }
  144.     }
  145. }
  146.  
  147. # ------------------------------------------------------------------
  148. # OPTION: -grab
  149. #
  150. # Specifies the grab level, local or global, to be obtained when 
  151. # bringing up the popup calendar.  The default is global.
  152. # ------------------------------------------------------------------
  153. configbody iwidgets::Dateentry::grab {
  154.     switch -- $itk_option(-grab) {
  155.     "local" - "global" {}
  156.     default {
  157.         error "bad grab option \"$itk_option(-grab)\":\
  158.                    should be local or global"
  159.     }
  160.     }
  161. }
  162.  
  163. # ------------------------------------------------------------------
  164. # OPTION: -state
  165. #
  166. # Specifies the state of the widget which may be disabled or
  167. # normal.  A disabled state prevents selection of the date field
  168. # or date icon button.
  169. # ------------------------------------------------------------------
  170. configbody iwidgets::Dateentry::state {
  171.     switch -- $itk_option(-state) {
  172.     normal {
  173.         bind $itk_component(iconbutton) <Button-1> [code $this _popup]
  174.     }
  175.     disabled {
  176.         bind $itk_component(iconbutton) <Button-1> {}
  177.     }
  178.     }
  179. }
  180.  
  181. # ------------------------------------------------------------------
  182. #                            METHODS
  183. # ------------------------------------------------------------------
  184.  
  185. # ------------------------------------------------------------------
  186. # PROTECTED METHOD: _getDefaultIcon
  187. #
  188. # This method is invoked uto retrieve the name of the default icon
  189. # image displayed in the icon button.
  190. # ------------------------------------------------------------------
  191. body iwidgets::Dateentry::_getDefaultIcon {} {
  192.     if {[lsearch [image types] pixmap] != -1} {
  193.       set _defaultIcon [image create pixmap -data {
  194.       /* XPM */
  195.       static char *calendar[] = {
  196.       /* width height num_colors chars_per_pixel */
  197.       "    25    20        6            1",
  198.       /* colors */
  199.       ". c #808080",
  200.       "# c #040404",
  201.       "a c #848484",
  202.       "b c #fc0404",
  203.       "c c #fcfcfc",
  204.       "d c #c0c0c0",
  205.       /* pixels */
  206.       "d##########d###########dd",
  207.       "d#ccccccccc##ccccccccca#d",
  208.       "##ccccccccc.#ccccccccc..#",
  209.       "##cccbbcccca#cccbbbccca.#",
  210.       "##cccbbcccc.#ccbbbbbcc..#",
  211.       "##cccbbccc####ccccbbcc..#",
  212.       "##cccbbcccca#ccccbbbcca.#",
  213.       "##cccbbcccc.#cccbbbccc..#",
  214.       "##cccbbcccca#ccbbbcccca.#",
  215.       "##cccbbbccc.#ccbbbbbcc..#",
  216.       "##ccccccccc.#ccccccccc..#",
  217.       "##ccccccccca#ccccccccca.#",
  218.       "##cc#####c#cd#c#####cc..#",
  219.       "##cccccccc####cccccccca.#",
  220.       "##cc#####cc.#cc#####cc..#",
  221.       "##ccccccccc.#ccccccccc..#",
  222.       "##ccccccccc.#ccccccccc..#",
  223.       "##..........#...........#",
  224.       "###..........#..........#",
  225.       "#########################"
  226.      };
  227.     }]
  228.     } else {
  229.     set _defaultIcon [image create bitmap -data {
  230.         #define calendr2_width 25
  231.         #define calendr2_height 20
  232.         static char calendr2_bits[] = {
  233.         0xfe,0xf7,0x7f,0xfe,0x02,0x18,0xc0,0xfe,0x03,
  234.         0x18,0x80,0xff,0x63,0x10,0x47,0xff,0x43,0x98,
  235.         0x8a,0xff,0x63,0x3c,0x4c,0xff,0x43,0x10,0x8a,
  236.         0xff,0x63,0x18,0x47,0xff,0x23,0x90,0x81,0xff,
  237.         0xe3,0x98,0x4e,0xff,0x03,0x10,0x80,0xff,0x03,
  238.         0x10,0x40,0xff,0xf3,0xa5,0x8f,0xff,0x03,0x3c,
  239.         0x40,0xff,0xf3,0x99,0x8f,0xff,0x03,0x10,0x40,
  240.         0xff,0x03,0x18,0x80,0xff,0x57,0x55,0x55,0xff,
  241.         0x57,0xb5,0xaa,0xff,0xff,0xff,0xff,0xff};
  242.         }]
  243.     }
  244.  
  245.     #
  246.     # Since this image will only need to be created once, we redefine
  247.     # this method to just return the image name for subsequent calls.
  248.     #
  249.     body ::iwidgets::Dateentry::_getDefaultIcon {} {
  250.     return $_defaultIcon
  251.     }
  252.  
  253.     return $_defaultIcon
  254. }
  255.  
  256. # ------------------------------------------------------------------
  257. # PROTECTED METHOD: _popup
  258. #
  259. # This method is invoked upon selection of the icon button.  It 
  260. # creates a calendar widget within a toplevel popup, calculates 
  261. # the position at which to display the calendar, performs a grab
  262. # and displays the calendar.
  263. # ------------------------------------------------------------------
  264. body iwidgets::Dateentry::_popup {} {
  265.     #
  266.     # First, let's nullify the icon binding so that any another 
  267.     # selections are ignored until were done with this one.  Next,
  268.     # change the relief of the icon.
  269.     #
  270.     bind $itk_component(iconbutton) <Button-1> {}
  271.     $itk_component(iconbutton) configure -relief sunken
  272.  
  273.     #
  274.     # Create a withdrawn toplevel widget and remove the window 
  275.     # decoration via override redirect.
  276.     #
  277.     itk_component add -private popup {
  278.     toplevel $itk_interior.popup 
  279.     } 
  280.     $itk_component(popup) configure -borderwidth 2 -background black
  281.     wm withdraw $itk_component(popup)
  282.     wm overrideredirect $itk_component(popup) 1
  283.  
  284.     #
  285.     # Add a binding to button 1 events in order to detect mouse
  286.     # clicks off the calendar in which case we'll release the grab.
  287.     # Also add a binding for Escape to always release.
  288.     #
  289.     bind $itk_component(popup) <1> [code $this _releaseGrabCheck %X %Y]
  290.     bind $itk_component(popup) <KeyPress-Escape> [code $this _releaseGrab]
  291.  
  292.     #
  293.     # Create the calendar widget and set its cursor properly.
  294.     #
  295.     itk_component add calendar {
  296.     iwidgets::Calendar $itk_component(popup).calendar \
  297.         -command [code $this _getPopupDate %d]
  298.     } {
  299.     usual
  300.     keep -days -forwardimage -backwardimage -weekdaybackground \
  301.         -weekendbackground -outline -buttonforeground -selectcolor \
  302.         -selectthickness -titlefont -dayfont -datefont \
  303.         -currentdatefont -startday -width -height
  304.     }
  305.     grid $itk_component(calendar) -row 0 -column 0
  306.     $itk_component(calendar) configure -cursor top_left_arrow
  307.  
  308.     #
  309.     # The icon button will be used as the basis for the position of the
  310.     # popup on the screen.  We'll always attempt to locate the popup
  311.     # off the lower right corner of the button.  If that would put
  312.     # the popup off the screen, then we'll put above the upper left.
  313.     #
  314.     set rootx [winfo rootx $itk_component(iconbutton)]
  315.     set rooty [winfo rooty $itk_component(iconbutton)]
  316.     set popupwidth [winfo reqwidth $itk_component(popup)]
  317.     set popupheight [winfo reqheight $itk_component(popup)]
  318.  
  319.     set popupx [expr $rootx + 3 + \
  320.             [winfo width $itk_component(iconbutton)]]
  321.     set popupy [expr $rooty + 3 + \
  322.             [winfo height $itk_component(iconbutton)]]
  323.  
  324.     if {([expr $popupx + $popupwidth] > [winfo screenwidth .]) || \
  325.         ([expr $popupy + $popupheight] > [winfo screenheight .])} {
  326.     set popupx [expr $rootx - 3 - $popupwidth]
  327.     set popupy [expr $rooty - 3 - $popupheight]
  328.     }
  329.     
  330.     #
  331.     # Get the current date from the datefield widget and both
  332.     # show and select it on the calendar.
  333.     #
  334.     $itk_component(calendar) show [get]
  335.     $itk_component(calendar) select [get]
  336.  
  337.     #
  338.     # Display the popup at the calculated position.
  339.     #
  340.     wm geometry $itk_component(popup) +$popupx+$popupy
  341.     wm deiconify $itk_component(popup)
  342.     tkwait visibility $itk_component(popup)
  343.  
  344.     #
  345.     # Perform either a local or global grab based on the -grab option.
  346.     #
  347.     if {$itk_option(-grab) == "local"} {
  348.     grab $itk_component(popup)
  349.     } else {
  350.     grab -global $itk_component(popup)
  351.     }
  352.  
  353.     #
  354.     # Make sure the widget is above all others and give it focus.
  355.     #
  356.     raise $itk_component(popup)
  357.     focus $itk_component(calendar)
  358. }
  359.  
  360. # ------------------------------------------------------------------
  361. # PROTECTED METHOD: _popupGetDate
  362. #
  363. # This method is the callback for selection of a date on the 
  364. # calendar.  It releases the grab and sets the date in the
  365. # datefield widget.
  366. # ------------------------------------------------------------------
  367. body iwidgets::Dateentry::_getPopupDate {date} {
  368.     _releaseGrab 
  369.     show $date
  370. }
  371.  
  372. # ------------------------------------------------------------------
  373. # PROTECTED METHOD: _releaseGrabCheck rootx rooty
  374. #
  375. # This method handles mouse button 1 events.  If the selection
  376. # occured within the bounds of the calendar, then return normally
  377. # and let the calendar handle the event.  Otherwise, we'll drop
  378. # the calendar and release the grab.
  379. # ------------------------------------------------------------------
  380. body iwidgets::Dateentry::_releaseGrabCheck {rootx rooty} {
  381.     set calx [winfo rootx $itk_component(calendar)]
  382.     set caly [winfo rooty $itk_component(calendar)]
  383.     set calwidth [winfo reqwidth $itk_component(calendar)]
  384.     set calheight [winfo reqheight $itk_component(calendar)]
  385.  
  386.     if {($rootx < $calx) || ($rootx > [expr $calx + $calwidth]) || \
  387.         ($rooty < $caly) || ($rooty > [expr $caly + $calheight])} {
  388.     _releaseGrab
  389.     return -code break
  390.     }
  391. }
  392.  
  393. # ------------------------------------------------------------------
  394. # PROTECTED METHOD: _releaseGrab
  395. #
  396. # This method releases the grab, destroys the popup, changes the 
  397. # relief of the button back to raised and reapplies the binding
  398. # to the icon button that engages the popup action.
  399. # ------------------------------------------------------------------
  400. body iwidgets::Dateentry::_releaseGrab {} {
  401.     grab release $itk_component(popup)
  402.     $itk_component(iconbutton) configure -relief raised
  403.     destroy $itk_component(popup) 
  404.     unset itk_component(popup)
  405.     bind $itk_component(iconbutton) <Button-1> [code $this _popup]
  406. }
  407.