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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $Xorg: Toggle.h,v 1.4 2001/02/09 02:03:47 xorgcvs Exp $
  3.  *
  4. Copyright 1989, 1994, 1998  The Open Group
  5. Permission to use, copy, modify, distribute, and sell this software and its
  6. documentation for any purpose is hereby granted without fee, provided that
  7. the above copyright notice appear in all copies and that both that
  8. copyright notice and this permission notice appear in supporting
  9. documentation.
  10. The above copyright notice and this permission notice shall be included in
  11. all copies or substantial portions of the Software.
  12. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  13. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  14. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  15. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  16. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  17. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  18. Except as contained in this notice, the name of The Open Group shall not be
  19. used in advertising or otherwise to promote the sale, use or other dealings
  20. in this Software without prior written authorization from The Open Group.
  21.  */
  22. /* $XFree86: xc/lib/Xaw/Toggle.h,v 1.5 2001/01/17 19:42:35 dawes Exp $ */
  23. /*
  24.  * ToggleP.h - Private definitions for Toggle widget
  25.  *
  26.  * Author: Chris D. Peterson
  27.  *         MIT X Consortium
  28.  *         kit@expo.lcs.mit.edu
  29.  *  
  30.  * Date:   January 12, 1989
  31.  */
  32. #ifndef _XawToggle_h
  33. #define _XawToggle_h
  34. #include <X11/Xaw/Command.h>
  35. /* Resources:
  36.  Name      Class RepType Default Value
  37.  ----      ----- ------- -------------
  38.  radioGroup          RadioGroup         Widget          NULL              +
  39.  radioData           RadioData          Pointer         (XPointer) Widget  ++
  40.  state               State              Boolean         Off
  41.  background      Background Pixel XtDefaultBackground
  42.  bitmap      Pixmap Pixmap None
  43.  border      BorderColor Pixel XtDefaultForeground
  44.  borderWidth      BorderWidth Dimension 1
  45.  callback      Callback Pointer NULL
  46.  cursor      Cursor Cursor None
  47.  destroyCallback     Callback Pointer NULL
  48.  displayList      DisplayList XawDisplayList* NULL
  49.  font      Font XFontStructx* XtDefaultFont
  50.  foreground      Foreground Pixel XtDefaultForeground
  51.  height      Height Dimension text height
  52.  highlightThickness  Thickness Dimension 2
  53.  insensitiveBorder   Insensitive Pixmap Gray
  54.  internalHeight      Height Dimension 2
  55.  internalWidth      Width Dimension 4
  56.  justify      Justify XtJustify XtJustifyCenter
  57.  label      Label String NULL
  58.  mappedWhenManaged   MappedWhenManaged Boolean True
  59.  resize      Resize Boolean True
  60.  sensitive      Sensitive Boolean True
  61.  width      Width Dimension text width
  62.  x      Position Position 0
  63.  y      Position Position 0
  64. + To use the toggle as a radio toggle button, set this resource to point to
  65.   any other widget in the radio group.
  66. ++ This is the data returned from a call to XtToggleGetCurrent, by default
  67.    this is set to the name of toggle widget.
  68. */
  69. /*
  70.  * These should be in StringDefs.h but aren't so we will define
  71.  * them here if they are needed
  72.  */
  73. #define XtCWidget "Widget"
  74. #define XtCState "State"
  75. #define XtCRadioGroup "RadioGroup"
  76. #define XtCRadioData "RadioData"
  77. #ifndef _XtStringDefs_h_
  78. #define XtRWidget "Widget"
  79. #endif
  80. #define XtNstate "state"
  81. #define XtNradioGroup "radioGroup"
  82. #define XtNradioData "radioData"
  83. extern WidgetClass               toggleWidgetClass;
  84. typedef struct _ToggleClassRec   *ToggleWidgetClass;
  85. typedef struct _ToggleRec        *ToggleWidget;
  86. /*
  87.  * Public Functions
  88.  */
  89. _XFUNCPROTOBEGIN
  90.    
  91. /*
  92.  * Function:
  93.  * XawToggleChangeRadioGroup
  94.  *
  95.  * Parameters:
  96.  * w     - toggle widget to change lists
  97.  * radio_group - any widget in the new list
  98.  *
  99.  * Description:
  100.  * Allows a toggle widget to change radio lists.
  101.  */
  102. void XawToggleChangeRadioGroup
  103. (
  104.  Widget w,
  105.  Widget radio_group
  106.  );
  107. /*
  108.  * Function:
  109.  * XawToggleGetCurrent
  110.  *
  111.  * Parameters:
  112.  * radio_group - any toggle widget in the toggle list
  113.  *
  114.  * Description:
  115.  *   Returns the RadioData associated with the toggle
  116.  *                   widget that is currently active in a toggle list.
  117.  * Returns:
  118.  * The XtNradioData associated with the toggle widget
  119.  */
  120. XtPointer XawToggleGetCurrent
  121. (
  122.  Widget radio_group
  123.  );
  124. /*
  125.  * Function:
  126.  * XawToggleSetCurrent
  127.  *
  128.  * Parameters:
  129.  * radio_group - any toggle widget in the toggle list
  130.  * radio_data - radio data of the toggle widget to set
  131.  *
  132.  * Description:
  133.  * Sets the Toggle widget associated with the radio_data specified.
  134.  */
  135. void XawToggleSetCurrent
  136. (
  137.  Widget radio_group,
  138.  XtPointer radio_data
  139.  );
  140. /*
  141.  * Function:
  142.  * XawToggleUnsetCurrent
  143.  *
  144.  * Parameters:
  145.  * radio_group - any toggle widget in the toggle list
  146.  *
  147.  * Description:
  148.  * Unsets all Toggles in the radio_group specified.
  149.  */
  150. void XawToggleUnsetCurrent
  151. (
  152.  Widget radio_group
  153.  );
  154. _XFUNCPROTOEND
  155. #endif /* _XawToggle_h */