CommandP.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2. * $Xorg: CommandP.h,v 1.4 2001/02/09 02:03:43 xorgcvs Exp $
  3. */
  4. /***********************************************************
  5. Copyright 1987, 1988, 1998  The Open Group
  6. Permission to use, copy, modify, distribute, and sell this software and its
  7. documentation for any purpose is hereby granted without fee, provided that
  8. the above copyright notice appear in all copies and that both that
  9. copyright notice and this permission notice appear in supporting
  10. documentation.
  11. The above copyright notice and this permission notice shall be included in
  12. all copies or substantial portions of the Software.
  13. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  16. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  17. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  18. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  19. Except as contained in this notice, the name of The Open Group shall not be
  20. used in advertising or otherwise to promote the sale, use or other dealings
  21. in this Software without prior written authorization from The Open Group.
  22. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  23.                         All Rights Reserved
  24. Permission to use, copy, modify, and distribute this software and its 
  25. documentation for any purpose and without fee is hereby granted, 
  26. provided that the above copyright notice appear in all copies and that
  27. both that copyright notice and this permission notice appear in 
  28. supporting documentation, and that the name of Digital not be
  29. used in advertising or publicity pertaining to distribution of the
  30. software without specific, written prior permission.  
  31. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  32. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  33. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  34. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  35. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  36. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  37. SOFTWARE.
  38. ******************************************************************/
  39. /* $XFree86: xc/lib/Xaw/CommandP.h,v 1.7 2001/01/17 19:42:26 dawes Exp $ */
  40. #ifndef _XawCommandP_h
  41. #define _XawCommandP_h
  42. /*
  43.  * Command Widget Private Data
  44.  */
  45. #include <X11/Xaw/Command.h>
  46. #include <X11/Xaw/LabelP.h>
  47. typedef enum {
  48.     HighlightNone, /* Do not highlight */
  49.     HighlightWhenUnset, /* Highlight only when unset, this is
  50.    to preserve current command widget 
  51.    functionality */
  52.     HighlightAlways /* Always highlight, lets the toggle widget
  53.    and other subclasses do the right thing */
  54. } XtCommandHighlight;
  55. /* New fields for the Command widget class record */
  56. typedef struct _CommandClass {
  57.     XtPointer extension;
  58. } CommandClassPart;
  59. /* Full class record declaration */
  60. typedef struct _CommandClassRec {
  61.     CoreClassPart core_class;
  62.     SimpleClassPart simple_class;
  63.     LabelClassPart label_class;
  64.     CommandClassPart    command_class;
  65. } CommandClassRec;
  66. extern CommandClassRec commandClassRec;
  67. /* New fields for the Command widget record */
  68. typedef struct {
  69.     /* resources */
  70.     Dimension   highlight_thickness;
  71.     XtCallbackList callbacks;
  72.     /* private state */
  73.     Pixmap       gray_pixmap;
  74.     GC           normal_GC;
  75.     GC           inverse_GC;
  76.     Boolean      set;
  77.     XtCommandHighlight highlighted;
  78.     /* more resources */
  79.     int shape_style;    
  80.     Dimension corner_round;
  81. #ifndef OLDXAW
  82.     XtPointer pad[4]; /* for future use and keep binary compatability */
  83. #endif
  84. } CommandPart;
  85. /* Full widget declaration */
  86. typedef struct _CommandRec {
  87.     CorePart         core;
  88.     SimplePart      simple;
  89.     LabelPart      label;
  90.     CommandPart      command;
  91. } CommandRec;
  92. #endif /* _XawCommandP_h */