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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: Template.c,v 1.4 2001/02/09 02:03:46 xorgcvs Exp $ */
  2. /*
  3. Copyright 1987, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /* $XFree86: xc/lib/Xaw/Template.c,v 1.8 2001/08/01 00:44:39 tsi Exp $ */
  22. #ifdef HAVE_CONFIG_H
  23. #include <config.h>
  24. #endif
  25. #include <X11/IntrinsicP.h>
  26. #include <X11/StringDefs.h>
  27. #include <X11/Xaw/TemplateP.h>
  28. /*
  29.  * Class Methods
  30.  */
  31. static void TemplateInitialize(Widget, Widget, ArgList, Cardinal*);
  32. /*
  33.  * Prototypes
  34.  */
  35. static Bool TemplateFunction(TemplateWidget, int, int, Bool);
  36. /*
  37.  * Actions
  38.  */
  39. static void TemplateAction(Widget, XEvent*, String*, Cardinal*);
  40. /*
  41.  * Initialization
  42.  */
  43. #define offset(field) XtOffsetOf(TemplateRec, template.field)
  44. static XtResource resources[] = {
  45. /*{
  46.     name,
  47.     class,
  48.     type,
  49.     size,
  50.     offset,
  51.     default_type,
  52.     default_addr
  53.   },*/
  54.   {
  55.     XtNtemplateResource,
  56.     XtCTemplateResource,
  57.     XtRTemplateResource,
  58.     sizeof(char*),
  59.     offset(resource),
  60.     XtRString,
  61.     (XtPointer)"default"
  62.   },
  63. };
  64. #undef offset
  65. static XtActionsRec actions[] =
  66. {
  67.     /*{name, procedure},*/
  68.     {"template", TemplateAction},
  69. };
  70. static char translations[] =
  71. "<Key>:" "template()n"
  72. ;
  73. #define Superclass (&widgetClassRec)
  74. TemplateClassRec templateClassRec = {
  75.   /* core */
  76.   {
  77.     (WidgetClass)Superclass, /* superclass */
  78.     "Template", /* class_name */
  79.     sizeof(TemplateRec), /* widget_size */
  80.     NULL, /* class_initialize */
  81.     NULL, /* class_part_initialize */
  82.     False, /* class_inited */
  83.     TemplateInitialize, /* initialize */
  84.     NULL, /* initialize_hook */
  85.     XtInheritRealize, /* realize */
  86.     actions, /* actions */
  87.     XtNumber(actions), /* num_actions */
  88.     resources, /* resources */
  89.     XtNumber(resources), /* num_resources */
  90.     NULLQUARK, /* xrm_class */
  91.     True, /* compress_motion */
  92.     True, /* compress_exposure */
  93.     True, /* compress_enterleave */
  94.     False, /* visible_interest */
  95.     NULL, /* destroy */
  96.     NULL, /* resize */
  97.     NULL, /* expose */
  98.     NULL, /* set_values */
  99.     NULL, /* set_values_hook */
  100.     XtInheritSetValuesAlmost, /* set_values_almost */
  101.     NULL, /* get_values_hook */
  102.     NULL, /* accept_focus */
  103.     XtVersion, /* version */
  104.     NULL, /* callback_private */
  105.     translations, /* tm_table */
  106.     XtInheritQueryGeometry, /* query_geometry */
  107.     XtInheritDisplayAccelerator, /* display_accelerator */
  108.     NULL, /* extension */
  109.   },
  110.   /* template */
  111.   {
  112.     NULL, /* extension */
  113.   }
  114. };
  115. WidgetClass templateWidgetClass = (WidgetClass)&templateClassRec;
  116. /*
  117.  * Implementation
  118.  */
  119. /*
  120.  * Function:
  121.  * TemplateInitialize
  122.  *
  123.  * Parameters:
  124.  * request - requested widget
  125.  * w - the widget
  126.  * args - arguments
  127.  * num_args - number of arguments
  128.  *
  129.  * Description:
  130.  * Initializes widget instance.
  131.  */
  132. /*ARGSUSED*/
  133. static void
  134. TemplateInitialize(Widget request, Widget w, ArgList args, Cardinal *num_args)
  135. {
  136.     TemplateWidget tw = (TemplateWidget)w;
  137.     tw->template.private = NULL;
  138. }
  139. /*
  140.  * Function:
  141.  * TemplateFunction
  142.  *
  143.  * Parameters:
  144.  * tw    - template widget
  145.  * x     - x coordinate
  146.  * y     - y coordinate
  147.  * force - force action
  148.  *
  149.  * Description:
  150.  * This function does nothing.
  151.  *
  152.  * Return:
  153.  * Parameter force
  154.  */
  155. /*ARGSUSED*/
  156. static Bool
  157. TemplateFunction(TemplateWidget tw, int x, int y, Bool force)
  158. {
  159.     return (force);
  160. }
  161. /*
  162.  * Function:
  163.  * TemplateAction
  164.  *
  165.  * Parameters:
  166.  * w    - template widget
  167.  * event    - event that caused this action
  168.  * params    - parameters
  169.  * num_params - number of parameters
  170.  *
  171.  * Description:
  172.  * This function does nothing.
  173.  */
  174. /*ARGSUSED*/
  175. static void
  176. TemplateAction(Widget w, XEvent *event, String *params, Cardinal *num_params)
  177. {
  178. }