home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / dateentry.itk < prev    next >
Text File  |  2003-09-01  |  16KB  |  425 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.6 2002/09/05 19:33:58 smithc 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. #
  37. # Modified 2001-10-23 by Mark Alston to pass options to the datefield 
  38. # constructor.  Needed to allow use of new option -int which lets the 
  39. # user use dates in YYYY-MM-DD format as well as MM/DD/YYYY format.
  40. #
  41. # option -int yes sets dates to YYYY-MM-DD format
  42. #        -int no sets dates to MM/DD/YYYY format.
  43. #
  44. # ----------------------------------------------------------------------
  45. #
  46. # Usual options.
  47. #
  48. itk::usual Dateentry {
  49.     keep -background -borderwidth -currentdatefont -cursor \
  50.     -datefont -dayfont -foreground -highlightcolor \
  51.     -highlightthickness -labelfont -textbackground -textfont \
  52.     -titlefont -int
  53. }
  54.  
  55. # ------------------------------------------------------------------
  56. #                              DATEENTRY
  57. # ------------------------------------------------------------------
  58. itcl::class iwidgets::Dateentry {
  59.     inherit iwidgets::Datefield
  60.  
  61.     constructor {args} {
  62.     eval Datefield::constructor $args
  63.     } {}
  64.  
  65.     itk_option define -grab grab Grab "global"
  66.     itk_option define -icon icon Icon {}
  67.     
  68.     #
  69.     # The calendar widget isn't created until needed, yet we need
  70.     # its options to be available upon creation of a dateentry widget.
  71.     # So, we'll define them in these class now so they can just be
  72.     # propagated onto the calendar later.
  73.     #
  74.     itk_option define -days days Days {Su Mo Tu We Th Fr Sa}
  75.     itk_option define -forwardimage forwardImage Image {}
  76.     itk_option define -backwardimage backwardImage Image {}
  77.     itk_option define -weekdaybackground weekdayBackground Background \#d9d9d9
  78.     itk_option define -weekendbackground weekendBackground Background \#d9d9d9
  79.     itk_option define -outline outline Outline \#d9d9d9
  80.     itk_option define -buttonforeground buttonForeground Foreground blue
  81.     itk_option define -foreground foreground Foreground black
  82.     itk_option define -selectcolor selectColor Foreground red
  83.     itk_option define -selectthickness selectThickness SelectThickness 3
  84.     itk_option define -titlefont titleFont Font \
  85.     -*-helvetica-bold-r-normal--*-140-*
  86.     itk_option define -dayfont dayFont Font \
  87.     -*-helvetica-medium-r-normal--*-120-*
  88.     itk_option define -datefont dateFont Font \
  89.     -*-helvetica-medium-r-normal--*-120-*
  90.     itk_option define -currentdatefont currentDateFont Font \
  91.     -*-helvetica-bold-r-normal--*-120-*
  92.     itk_option define -startday startDay Day sunday
  93.     itk_option define -height height Height 165
  94.     itk_option define -width width Width 200
  95.     itk_option define -state state State normal
  96.  
  97.     protected {
  98.     method _getPopupDate {date}
  99.     method _releaseGrab {}
  100.     method _releaseGrabCheck {rootx rooty}
  101.     method _popup {}
  102.     method _getDefaultIcon {}
  103.  
  104.         common _defaultIcon ""
  105.     }
  106. }
  107.  
  108. #
  109. # Provide a lowercased access method for the dateentry class.
  110. proc ::iwidgets::dateentry {pathName args} {
  111.     uplevel ::iwidgets::Dateentry $pathName $args
  112. }
  113.  
  114. # ------------------------------------------------------------------
  115. #                        CONSTRUCTOR
  116. # ------------------------------------------------------------------
  117. itcl::body iwidgets::Dateentry::constructor {args} {
  118.     #
  119.     # Create an icon label to act as a button to bring up the 
  120.     # calendar popup.
  121.     #
  122.     itk_component add iconbutton {
  123.     label $itk_interior.iconbutton -relief raised
  124.     } {
  125.     keep -borderwidth -cursor -foreground 
  126.     }
  127.     grid $itk_component(iconbutton) -row 0 -column 0 -sticky ns
  128.     
  129.     #
  130.     # Initialize the widget based on the command line options.
  131.     #
  132.     eval itk_initialize $args
  133. }
  134.  
  135. # ------------------------------------------------------------------
  136. #                             OPTIONS
  137. # ------------------------------------------------------------------
  138.  
  139. # ------------------------------------------------------------------
  140. # OPTION: -icon
  141. #
  142. # Specifies the calendar icon image to be used in the date.
  143. # Should one not be provided, then a default pixmap will be used
  144. # if possible, bitmap otherwise.
  145. # ------------------------------------------------------------------
  146. itcl::configbody iwidgets::Dateentry::icon {
  147.     if {$itk_option(-icon) == {}} {
  148.     $itk_component(iconbutton) configure -image [_getDefaultIcon]
  149.     } else {
  150.     if {[lsearch [image names] $itk_option(-icon)] == -1} {
  151.         error "bad icon option \"$itk_option(-icon)\":\
  152.                    should be an existing image"
  153.     } else {
  154.         $itk_component(iconbutton) configure -image $itk_option(-icon)
  155.     }
  156.     }
  157. }
  158.  
  159. # ------------------------------------------------------------------
  160. # OPTION: -grab
  161. #
  162. # Specifies the grab level, local or global, to be obtained when 
  163. # bringing up the popup calendar.  The default is global.
  164. # ------------------------------------------------------------------
  165. itcl::configbody iwidgets::Dateentry::grab {
  166.     switch -- $itk_option(-grab) {
  167.     "local" - "global" {}
  168.     default {
  169.         error "bad grab option \"$itk_option(-grab)\":\
  170.                    should be local or global"
  171.     }
  172.     }
  173. }
  174.  
  175. # ------------------------------------------------------------------
  176. # OPTION: -state
  177. #
  178. # Specifies the state of the widget which may be disabled or
  179. # normal.  A disabled state prevents selection of the date field
  180. # or date icon button.
  181. # ------------------------------------------------------------------
  182. itcl::configbody iwidgets::Dateentry::state {
  183.     switch -- $itk_option(-state) {
  184.     normal {
  185.         bind $itk_component(iconbutton) <Button-1> [itcl::code $this _popup]
  186.     }
  187.     disabled {
  188.         bind $itk_component(iconbutton) <Button-1> {}
  189.     }
  190.     }
  191. }
  192.  
  193. # ------------------------------------------------------------------
  194. #                            METHODS
  195. # ------------------------------------------------------------------
  196.  
  197. # ------------------------------------------------------------------
  198. # PROTECTED METHOD: _getDefaultIcon
  199. #
  200. # This method is invoked uto retrieve the name of the default icon
  201. # image displayed in the icon button.
  202. # ------------------------------------------------------------------
  203. itcl::body iwidgets::Dateentry::_getDefaultIcon {} {
  204.     if {[lsearch [image types] pixmap] != -1} {
  205.       set _defaultIcon [image create pixmap -data {
  206.       /* XPM */
  207.       static char *calendar[] = {
  208.       /* width height num_colors chars_per_pixel */
  209.       "    25    20        6            1",
  210.       /* colors */
  211.       ". c #808080",
  212.       "# c #040404",
  213.       "a c #848484",
  214.       "b c #fc0404",
  215.       "c c #fcfcfc",
  216.       "d c #c0c0c0",
  217.       /* pixels */
  218.       "d##########d###########dd",
  219.       "d#ccccccccc##ccccccccca#d",
  220.       "##ccccccccc.#ccccccccc..#",
  221.       "##cccbbcccca#cccbbbccca.#",
  222.       "##cccbbcccc.#ccbbbbbcc..#",
  223.       "##cccbbccc####ccccbbcc..#",
  224.       "##cccbbcccca#ccccbbbcca.#",
  225.       "##cccbbcccc.#cccbbbccc..#",
  226.       "##cccbbcccca#ccbbbcccca.#",
  227.       "##cccbbbccc.#ccbbbbbcc..#",
  228.       "##ccccccccc.#ccccccccc..#",
  229.       "##ccccccccca#ccccccccca.#",
  230.       "##cc#####c#cd#c#####cc..#",
  231.       "##cccccccc####cccccccca.#",
  232.       "##cc#####cc.#cc#####cc..#",
  233.       "##ccccccccc.#ccccccccc..#",
  234.       "##ccccccccc.#ccccccccc..#",
  235.       "##..........#...........#",
  236.       "###..........#..........#",
  237.       "#########################"
  238.      };
  239.     }]
  240.     } else {
  241.     set _defaultIcon [image create bitmap -data {
  242.         #define calendr2_width 25
  243.         #define calendr2_height 20
  244.         static char calendr2_bits[] = {
  245.         0xfe,0xf7,0x7f,0xfe,0x02,0x18,0xc0,0xfe,0x03,
  246.         0x18,0x80,0xff,0x63,0x10,0x47,0xff,0x43,0x98,
  247.         0x8a,0xff,0x63,0x3c,0x4c,0xff,0x43,0x10,0x8a,
  248.         0xff,0x63,0x18,0x47,0xff,0x23,0x90,0x81,0xff,
  249.         0xe3,0x98,0x4e,0xff,0x03,0x10,0x80,0xff,0x03,
  250.         0x10,0x40,0xff,0xf3,0xa5,0x8f,0xff,0x03,0x3c,
  251.         0x40,0xff,0xf3,0x99,0x8f,0xff,0x03,0x10,0x40,
  252.         0xff,0x03,0x18,0x80,0xff,0x57,0x55,0x55,0xff,
  253.         0x57,0xb5,0xaa,0xff,0xff,0xff,0xff,0xff};
  254.         }]
  255.     }
  256.  
  257.     #
  258.     # Since this image will only need to be created once, we redefine
  259.     # this method to just return the image name for subsequent calls.
  260.     #
  261.     itcl::body ::iwidgets::Dateentry::_getDefaultIcon {} {
  262.     return $_defaultIcon
  263.     }
  264.  
  265.     return $_defaultIcon
  266. }
  267.  
  268. # ------------------------------------------------------------------
  269. # PROTECTED METHOD: _popup
  270. #
  271. # This method is invoked upon selection of the icon button.  It 
  272. # creates a calendar widget within a toplevel popup, calculates 
  273. # the position at which to display the calendar, performs a grab
  274. # and displays the calendar.
  275. # ------------------------------------------------------------------
  276. itcl::body iwidgets::Dateentry::_popup {} {
  277.     #
  278.     # First, let's nullify the icon binding so that any another 
  279.     # selections are ignored until were done with this one.  Next,
  280.     # change the relief of the icon.
  281.     #
  282.     bind $itk_component(iconbutton) <Button-1> {}
  283.     $itk_component(iconbutton) configure -relief sunken
  284.  
  285.     #
  286.     # Create a withdrawn toplevel widget and remove the window 
  287.     # decoration via override redirect.
  288.     #
  289.     itk_component add -private popup {
  290.     toplevel $itk_interior.popup 
  291.     } 
  292.     $itk_component(popup) configure -borderwidth 2 -background black
  293.     wm withdraw $itk_component(popup)
  294.     wm overrideredirect $itk_component(popup) 1
  295.  
  296.     #
  297.     # Add a binding to button 1 events in order to detect mouse
  298.     # clicks off the calendar in which case we'll release the grab.
  299.     # Also add a binding for Escape to always release.
  300.     #
  301.     bind $itk_component(popup) <1> [itcl::code $this _releaseGrabCheck %X %Y]
  302.     bind $itk_component(popup) <KeyPress-Escape> [itcl::code $this _releaseGrab]
  303.  
  304.     #
  305.     # Create the calendar widget and set its cursor properly.
  306.     #
  307.     itk_component add calendar {
  308.     iwidgets::Calendar $itk_component(popup).calendar \
  309.         -command [itcl::code $this _getPopupDate %d] \
  310.         -int $itk_option(-int)
  311.     } {
  312.     usual
  313.     keep -days -forwardimage -backwardimage -weekdaybackground \
  314.         -weekendbackground -outline -buttonforeground -selectcolor \
  315.         -selectthickness -titlefont -dayfont -datefont \
  316.         -currentdatefont -startday -width -height
  317.     }
  318.     grid $itk_component(calendar) -row 0 -column 0
  319.     $itk_component(calendar) configure -cursor top_left_arrow
  320.  
  321.     #
  322.     # The icon button will be used as the basis for the position of the
  323.     # popup on the screen.  We'll always attempt to locate the popup
  324.     # off the lower right corner of the button.  If that would put
  325.     # the popup off the screen, then we'll put above the upper left.
  326.     #
  327.     set rootx [winfo rootx $itk_component(iconbutton)]
  328.     set rooty [winfo rooty $itk_component(iconbutton)]
  329.     set popupwidth [winfo reqwidth $itk_component(popup)]
  330.     set popupheight [winfo reqheight $itk_component(popup)]
  331.  
  332.     set popupx [expr {$rootx + 3 + \
  333.             [winfo width $itk_component(iconbutton)]}]
  334.     set popupy [expr {$rooty + 3 + \
  335.             [winfo height $itk_component(iconbutton)]}]
  336.  
  337.     if {(($popupx + $popupwidth) > [winfo screenwidth .]) || \
  338.         (($popupy + $popupheight) > [winfo screenheight .])} {
  339.     set popupx [expr {$rootx - 3 - $popupwidth}]
  340.     set popupy [expr {$rooty - 3 - $popupheight}]
  341.     }
  342.     
  343.     #
  344.     # Get the current date from the datefield widget and both
  345.     # show and select it on the calendar.
  346.     #
  347.     # Added catch for bad dates. Calendar then shows current date.
  348.     if [catch "$itk_component(calendar) show [get]" err] {
  349.     $itk_component(calendar) show now
  350.     $itk_component(calendar) select now
  351.     } else {
  352.     $itk_component(calendar) select [get]
  353.     }
  354.     #
  355.     # Display the popup at the calculated position.
  356.     #
  357.     wm geometry $itk_component(popup) +$popupx+$popupy
  358.     wm deiconify $itk_component(popup)
  359.     tkwait visibility $itk_component(popup)
  360.  
  361.     #
  362.     # Perform either a local or global grab based on the -grab option.
  363.     #
  364.     if {$itk_option(-grab) == "local"} {
  365.     grab $itk_component(popup)
  366.     } else {
  367.     grab -global $itk_component(popup)
  368.     }
  369.  
  370.     #
  371.     # Make sure the widget is above all others and give it focus.
  372.     #
  373.     raise $itk_component(popup)
  374.     focus $itk_component(calendar)
  375. }
  376.  
  377. # ------------------------------------------------------------------
  378. # PROTECTED METHOD: _popupGetDate
  379. #
  380. # This method is the callback for selection of a date on the 
  381. # calendar.  It releases the grab and sets the date in the
  382. # datefield widget.
  383. # ------------------------------------------------------------------
  384. itcl::body iwidgets::Dateentry::_getPopupDate {date} {
  385.     _releaseGrab 
  386.     show $date
  387. }
  388.  
  389. # ------------------------------------------------------------------
  390. # PROTECTED METHOD: _releaseGrabCheck rootx rooty
  391. #
  392. # This method handles mouse button 1 events.  If the selection
  393. # occured within the bounds of the calendar, then return normally
  394. # and let the calendar handle the event.  Otherwise, we'll drop
  395. # the calendar and release the grab.
  396. # ------------------------------------------------------------------
  397. itcl::body iwidgets::Dateentry::_releaseGrabCheck {rootx rooty} {
  398.     set calx [winfo rootx $itk_component(calendar)]
  399.     set caly [winfo rooty $itk_component(calendar)]
  400.     set calwidth [winfo reqwidth $itk_component(calendar)]
  401.     set calheight [winfo reqheight $itk_component(calendar)]
  402.  
  403.     if {($rootx < $calx) || ($rootx > ($calx + $calwidth)) || \
  404.         ($rooty < $caly) || ($rooty > ($caly + $calheight))} {
  405.     _releaseGrab
  406.     return -code break
  407.     }
  408. }
  409.  
  410. # ------------------------------------------------------------------
  411. # PROTECTED METHOD: _releaseGrab
  412. #
  413. # This method releases the grab, destroys the popup, changes the 
  414. # relief of the button back to raised and reapplies the binding
  415. # to the icon button that engages the popup action.
  416. # ------------------------------------------------------------------
  417. itcl::body iwidgets::Dateentry::_releaseGrab {} {
  418.     grab release $itk_component(popup)
  419.     $itk_component(iconbutton) configure -relief raised
  420.     destroy $itk_component(popup) 
  421.     bind $itk_component(iconbutton) <Button-1> [itcl::code $this _popup]
  422. }
  423.