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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * $XConsortium: Toggle.h,v 1.16 94/04/17 20:13:19 kaleb Exp $
  3.  *
  4. Copyright (c) 1989, 1994  X Consortium
  5. Permission is hereby granted, free of charge, to any person obtaining a copy
  6. of this software and associated documentation files (the "Software"), to deal
  7. in the Software without restriction, including without limitation the rights
  8. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. copies of the Software, and to permit persons to whom the Software is
  10. furnished to do so, subject to the following conditions:
  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. X CONSORTIUM 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 X Consortium 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 X Consortium.
  22.  */
  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. /***********************************************************************
  35.  *
  36.  * Toggle Widget
  37.  *
  38.  ***********************************************************************/
  39. #include <X11/Xaw3d/Command.h>
  40. /* Resources:
  41.  Name      Class RepType Default Value
  42.  ----      ----- ------- -------------
  43.  radioGroup          RadioGroup         Widget          NULL              +
  44.  radioData           RadioData          Pointer         (XPointer) Widget  ++
  45.  state               State              Boolean         Off
  46.  background      Background Pixel XtDefaultBackground
  47.  bitmap      Pixmap Pixmap None
  48.  border      BorderColor Pixel XtDefaultForeground
  49.  borderWidth      BorderWidth Dimension 1
  50.  callback      Callback Pointer NULL
  51.  cursor      Cursor Cursor None
  52.  destroyCallback     Callback Pointer NULL
  53.  font      Font XFontStructx* XtDefaultFont
  54.  foreground      Foreground Pixel XtDefaultForeground
  55.  height      Height Dimension text height
  56.  highlightThickness  Thickness Dimension 2
  57.  insensitiveBorder   Insensitive Pixmap Gray
  58.  internalHeight      Height Dimension 2
  59.  internalWidth      Width Dimension 4
  60.  justify      Justify XtJustify XtJustifyCenter
  61.  label      Label String NULL
  62.  mappedWhenManaged   MappedWhenManaged Boolean True
  63.  resize      Resize Boolean True
  64.  sensitive      Sensitive Boolean True
  65.  width      Width Dimension text width
  66.  x      Position Position 0
  67.  y      Position Position 0
  68. + To use the toggle as a radio toggle button, set this resource to point to
  69.   any other widget in the radio group.
  70. ++ This is the data returned from a call to XtToggleGetCurrent, by default
  71.    this is set to the name of toggle widget.
  72. */
  73. /*
  74.  * These should be in StringDefs.h but aren't so we will define
  75.  * them here if they are needed.
  76.  */
  77. #define XtCWidget "Widget"
  78. #define XtCState "State"
  79. #define XtCRadioGroup "RadioGroup"
  80. #define XtCRadioData "RadioData"
  81. #ifndef _XtStringDefs_h_
  82. #define XtRWidget "Widget"
  83. #endif
  84. #define XtNstate "state"
  85. #define XtNradioGroup "radioGroup"
  86. #define XtNradioData "radioData"
  87. extern WidgetClass               toggleWidgetClass;
  88. typedef struct _ToggleClassRec   *ToggleWidgetClass;
  89. typedef struct _ToggleRec        *ToggleWidget;
  90. /************************************************************
  91.  * 
  92.  * Public Functions
  93.  *
  94.  ************************************************************/
  95. _XFUNCPROTOBEGIN
  96.    
  97. /* Function Name: XawToggleChangeRadioGroup
  98.  * Description: Allows a toggle widget to change radio lists.
  99.  * Arguments: w - The toggle widget to change lists.
  100.  *                 radio_group - any widget in the new list.
  101.  * Returns: none.
  102.  */
  103. extern void XawToggleChangeRadioGroup(
  104. #if NeedFunctionPrototypes
  105.     Widget /* w */,
  106.     Widget /* radio_group */
  107. #endif
  108. );
  109. /* Function Name: XawToggleGetCurrent
  110.  * Description: Returns the RadioData associated with the toggle
  111.  *                   widget that is currently active in a toggle list.
  112.  * Arguments: radio_group - any toggle widget in the toggle list.
  113.  * Returns: The XtNradioData associated with the toggle widget.
  114.  */
  115. extern XtPointer XawToggleGetCurrent(
  116. #if NeedFunctionPrototypes
  117.     Widget /* radio_group */
  118. #endif
  119. );
  120. /* Function Name: XawToggleSetCurrent
  121.  * Description: Sets the Toggle widget associated with the
  122.  *                   radio_data specified.
  123.  * Arguments: radio_group - any toggle widget in the toggle list.
  124.  *                 radio_data - radio data of the toggle widget to set.
  125.  * Returns: none.
  126.  */
  127. extern void XawToggleSetCurrent(
  128. #if NeedFunctionPrototypes
  129.     Widget /* radio_group */,
  130.     XtPointer /* radio_data */
  131. #endif
  132. );
  133.  
  134. /* Function Name: XawToggleUnsetCurrent
  135.  * Description: Unsets all Toggles in the radio_group specified.
  136.  * Arguments: radio_group - any toggle widget in the toggle list.
  137.  * Returns: none.
  138.  */
  139. extern void XawToggleUnsetCurrent(
  140. #if NeedFunctionPrototypes
  141.     Widget /* radio_group */
  142. #endif
  143. );
  144. _XFUNCPROTOEND
  145. #endif /* _XawToggle_h */