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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $XConsortium: ToggleP.h,v 1.9 94/04/17 20:13:19 converse Exp $ */
  2. /*
  3. Copyright (c) 1989  X Consortium
  4. Permission is hereby granted, free of charge, to any person obtaining a copy
  5. of this software and associated documentation files (the "Software"), to deal
  6. in the Software without restriction, including without limitation the rights
  7. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  8. copies of the Software, and to permit persons to whom the Software is
  9. furnished to do so, subject to the following conditions:
  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. X CONSORTIUM 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 X Consortium 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 X Consortium.
  21. */
  22. /* 
  23.  * ToggleP.h - Private definitions for Toggle widget
  24.  * 
  25.  * Author: Chris D. Peterson
  26.  *         MIT X Consortium
  27.  *         kit@expo.lcs.mit.edu
  28.  *  
  29.  * Date:   January 12, 1989
  30.  *
  31.  */
  32. #ifndef _XawToggleP_h
  33. #define _XawToggleP_h
  34. #include <X11/Xaw3d/Toggle.h>
  35. #include <X11/Xaw3d/CommandP.h>
  36. /***********************************************************************
  37.  *
  38.  * Toggle Widget Private Data
  39.  *
  40.  ***********************************************************************/
  41. #define streq(a, b) ( strcmp((a), (b)) == 0 )
  42. typedef struct _RadioGroup {
  43.   struct _RadioGroup *prev, *next; /* Pointers to other elements in group. */
  44.   Widget widget;   /* Widget corrosponding to this element. */
  45. } RadioGroup;
  46. /************************************
  47.  *
  48.  *  Class structure
  49.  *
  50.  ***********************************/
  51.    /* New fields for the Toggle widget class record */
  52. typedef struct _ToggleClass  {
  53.     XtActionProc Set;
  54.     XtActionProc Unset;
  55.     XtPointer extension;
  56. } ToggleClassPart;
  57.    /* Full class record declaration */
  58. typedef struct _ToggleClassRec {
  59.     CoreClassPart core_class;
  60.     SimpleClassPart simple_class;
  61.     ThreeDClassPart threeD_class;
  62.     LabelClassPart label_class;
  63.     CommandClassPart command_class;
  64.     ToggleClassPart     toggle_class;
  65. } ToggleClassRec;
  66. extern ToggleClassRec toggleClassRec;
  67. /***************************************
  68.  *
  69.  *  Instance (widget) structure 
  70.  *
  71.  **************************************/
  72.     /* New fields for the Toggle widget record */
  73. typedef struct {
  74.     /* resources */
  75.     Widget      widget;
  76.     XtPointer   radio_data;
  77.     /* private data */
  78.     RadioGroup * radio_group;
  79. } TogglePart;
  80.    /* Full widget declaration */
  81. typedef struct _ToggleRec {
  82.     CorePart         core;
  83.     SimplePart      simple;
  84.     ThreeDPart       threeD;
  85.     LabelPart      label;
  86.     CommandPart      command;
  87.     TogglePart       toggle;
  88. } ToggleRec;
  89. #endif /* _XawToggleP_h */