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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: ShellP.h,v 1.4 2001/02/09 02:03:58 xorgcvs Exp $ */
  2. /***********************************************************
  3. Copyright 1987, 1988, 1994, 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. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts.
  21.                         All Rights Reserved
  22. Permission to use, copy, modify, and distribute this software and its 
  23. documentation for any purpose and without fee is hereby granted, 
  24. provided that the above copyright notice appear in all copies and that
  25. both that copyright notice and this permission notice appear in 
  26. supporting documentation, and that the name of Digital not be
  27. used in advertising or publicity pertaining to distribution of the
  28. software without specific, written prior permission.  
  29. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  30. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  31. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  32. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  33. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  34. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  35. SOFTWARE.
  36. ******************************************************************/
  37. /* 
  38.  * ShellP.h - Private definitions for Shell widget
  39.  * 
  40.  * Author: Paul Asente
  41.  *  Digital Equipment Corporation
  42.  *  Western Software Laboratory
  43.  * Date: Thu Dec 3, 1987
  44.  */
  45. #ifndef _XtShellPrivate_h
  46. #define _XtShellPrivate_h
  47. #include <X11/Shell.h>
  48. /* *****
  49.  * ***** VendorP.h is included later on; it needs fields defined in the first
  50.  * ***** part of this header file
  51.  * *****
  52.  */
  53. /***********************************************************************
  54.  *
  55.  * Shell Widget Private Data
  56.  *
  57.  ***********************************************************************/
  58. /* New fields for the Shell widget class record */
  59. typedef struct {
  60.     XtPointer       extension;          /* pointer to extension record      */
  61. } ShellClassPart;
  62. typedef struct {
  63.     XtPointer next_extension; /* 1st 4 mandated for all extension records */
  64.     XrmQuark record_type; /* NULLQUARK; on ShellClassPart */
  65.     long version; /* must be XtShellExtensionVersion */
  66.     Cardinal record_size; /* sizeof(ShellClassExtensionRec) */
  67.     XtGeometryHandler root_geometry_manager;
  68. } ShellClassExtensionRec, *ShellClassExtension;
  69. #define XtShellExtensionVersion 1L
  70. #define XtInheritRootGeometryManager ((XtGeometryHandler)_XtInherit)
  71. typedef struct _ShellClassRec {
  72.    CoreClassPart      core_class;
  73. CompositeClassPart composite_class;
  74. ShellClassPart  shell_class;
  75. } ShellClassRec;
  76. externalref ShellClassRec shellClassRec;
  77. /* New fields for the shell widget */
  78. typedef struct {
  79. char       *geometry;
  80. XtCreatePopupChildProc create_popup_child_proc;
  81. XtGrabKind grab_kind;
  82. Boolean     spring_loaded;
  83. Boolean     popped_up;
  84. Boolean     allow_shell_resize;
  85. Boolean     client_specified; /* re-using old name */
  86. #define _XtShellPositionValid ((Boolean)(1<<0))
  87. #define _XtShellNotReparented ((Boolean)(1<<1))
  88. #define _XtShellPPositionOK ((Boolean)(1<<2))
  89. #define _XtShellGeometryParsed ((Boolean)(1<<3))
  90. Boolean     save_under;
  91. Boolean     override_redirect;
  92. XtCallbackList popup_callback;
  93. XtCallbackList popdown_callback;
  94. Visual*     visual;
  95. } ShellPart;
  96. typedef  struct {
  97. CorePart  core;
  98. CompositePart  composite;
  99. ShellPart  shell;
  100. } ShellRec, *ShellWidget;
  101. /***********************************************************************
  102.  *
  103.  * OverrideShell Widget Private Data
  104.  *
  105.  ***********************************************************************/
  106. /* New fields for the OverrideShell widget class record */
  107. typedef struct {
  108.     XtPointer       extension;          /* pointer to extension record      */
  109. } OverrideShellClassPart;
  110. typedef struct _OverrideShellClassRec {
  111.    CoreClassPart      core_class;
  112. CompositeClassPart composite_class;
  113. ShellClassPart  shell_class;
  114. OverrideShellClassPart  override_shell_class;
  115. } OverrideShellClassRec;
  116. externalref OverrideShellClassRec overrideShellClassRec;
  117. /* No new fields for the override shell widget */
  118. typedef struct {int frabjous;} OverrideShellPart;
  119. typedef  struct {
  120. CorePart  core;
  121. CompositePart  composite;
  122. ShellPart  shell;
  123. OverrideShellPart override;
  124. } OverrideShellRec, *OverrideShellWidget;
  125. /***********************************************************************
  126.  *
  127.  * WMShell Widget Private Data
  128.  *
  129.  ***********************************************************************/
  130. /* New fields for the WMShell widget class record */
  131. typedef struct {
  132.     XtPointer       extension;          /* pointer to extension record      */
  133. } WMShellClassPart;
  134. typedef struct _WMShellClassRec {
  135.    CoreClassPart      core_class;
  136. CompositeClassPart composite_class;
  137. ShellClassPart  shell_class;
  138. WMShellClassPart wm_shell_class;
  139. } WMShellClassRec;
  140. externalref WMShellClassRec wmShellClassRec;
  141. /* New fields for the WM shell widget */
  142. typedef struct {
  143. char    *title;
  144. int      wm_timeout;
  145. Boolean     wait_for_wm;
  146. Boolean     transient;
  147. Boolean     urgency;
  148. Widget      client_leader;
  149. String      window_role;
  150. struct _OldXSizeHints { /* pre-R4 Xlib structure */
  151.     long flags;
  152.     int x, y;
  153.     int width, height;
  154.     int min_width, min_height;
  155.     int max_width, max_height;
  156.     int width_inc, height_inc;
  157.     struct {
  158.     int x;
  159.     int y;
  160.     } min_aspect, max_aspect;
  161. } size_hints;
  162. XWMHints    wm_hints;
  163. int base_width, base_height;
  164. int win_gravity;
  165. Atom title_encoding;
  166. } WMShellPart;
  167. typedef  struct {
  168. CorePart  core;
  169. CompositePart  composite;
  170. ShellPart  shell;
  171. WMShellPart wm;
  172. } WMShellRec, *WMShellWidget;
  173. #include <X11/VendorP.h>
  174. /***********************************************************************
  175.  *
  176.  * TransientShell Widget Private Data
  177.  *
  178.  ***********************************************************************/
  179. /* New fields for the TransientShell widget class record */
  180. typedef struct {
  181.     XtPointer       extension;          /* pointer to extension record      */
  182. } TransientShellClassPart;
  183. typedef struct _TransientShellClassRec {
  184.    CoreClassPart      core_class;
  185. CompositeClassPart composite_class;
  186. ShellClassPart  shell_class;
  187. WMShellClassPart   wm_shell_class;
  188. VendorShellClassPart vendor_shell_class;
  189. TransientShellClassPart transient_shell_class;
  190. } TransientShellClassRec;
  191. externalref TransientShellClassRec transientShellClassRec;
  192. /* New fields for the transient shell widget */
  193. typedef struct {
  194. Widget transient_for;
  195. } TransientShellPart;
  196. typedef  struct {
  197. CorePart  core;
  198. CompositePart  composite;
  199. ShellPart  shell;
  200. WMShellPart wm;
  201. VendorShellPart vendor;
  202. TransientShellPart transient;
  203. } TransientShellRec, *TransientShellWidget;
  204. /***********************************************************************
  205.  *
  206.  * TopLevelShell Widget Private Data
  207.  *
  208.  ***********************************************************************/
  209. /* New fields for the TopLevelShell widget class record */
  210. typedef struct {
  211.     XtPointer       extension;          /* pointer to extension record      */
  212. } TopLevelShellClassPart;
  213. typedef struct _TopLevelShellClassRec {
  214.    CoreClassPart      core_class;
  215. CompositeClassPart composite_class;
  216. ShellClassPart  shell_class;
  217. WMShellClassPart   wm_shell_class;
  218. VendorShellClassPart vendor_shell_class;
  219. TopLevelShellClassPart top_level_shell_class;
  220. } TopLevelShellClassRec;
  221. externalref TopLevelShellClassRec topLevelShellClassRec;
  222. /* New fields for the top level shell widget */
  223. typedef struct {
  224. char    *icon_name;
  225. Boolean     iconic;
  226. Atom     icon_name_encoding;
  227. } TopLevelShellPart;
  228. typedef  struct {
  229. CorePart  core;
  230. CompositePart  composite;
  231. ShellPart  shell;
  232. WMShellPart wm;
  233. VendorShellPart vendor;
  234. TopLevelShellPart topLevel;
  235. } TopLevelShellRec, *TopLevelShellWidget;
  236. /***********************************************************************
  237.  *
  238.  * ApplicationShell Widget Private Data
  239.  *
  240.  ***********************************************************************/
  241. /* New fields for the ApplicationShell widget class record */
  242. typedef struct {
  243.     XtPointer       extension;          /* pointer to extension record      */
  244. } ApplicationShellClassPart;
  245. typedef struct _ApplicationShellClassRec {
  246.    CoreClassPart      core_class;
  247. CompositeClassPart composite_class;
  248. ShellClassPart  shell_class;
  249. WMShellClassPart   wm_shell_class;
  250. VendorShellClassPart vendor_shell_class;
  251. TopLevelShellClassPart top_level_shell_class;
  252. ApplicationShellClassPart application_shell_class;
  253. } ApplicationShellClassRec;
  254. externalref ApplicationShellClassRec applicationShellClassRec;
  255. /* New fields for the application shell widget */
  256. typedef struct {
  257. #if defined(__cplusplus) || defined(c_plusplus)
  258.     char *c_class;
  259. #else
  260.     char *class;
  261. #endif
  262.     XrmClass xrm_class;
  263.     int argc;
  264.     char **argv;
  265. } ApplicationShellPart;
  266. typedef  struct {
  267. CorePart  core;
  268. CompositePart  composite;
  269. ShellPart  shell;
  270. WMShellPart wm;
  271. VendorShellPart vendor;
  272. TopLevelShellPart topLevel;
  273. ApplicationShellPart application;
  274. } ApplicationShellRec, *ApplicationShellWidget;
  275. /***********************************************************************
  276.  *
  277.  * SessionShell Widget Private Data
  278.  *
  279.  ***********************************************************************/
  280. /* New fields for the SessionShell widget class record */
  281. typedef struct {
  282.     XtPointer       extension;          /* pointer to extension record */
  283. } SessionShellClassPart;
  284. typedef struct _SessionShellClassRec {
  285.    CoreClassPart      core_class;
  286. CompositeClassPart composite_class;
  287. ShellClassPart  shell_class;
  288. WMShellClassPart   wm_shell_class;
  289. VendorShellClassPart vendor_shell_class;
  290. TopLevelShellClassPart top_level_shell_class;
  291. ApplicationShellClassPart application_shell_class;
  292. SessionShellClassPart session_shell_class;
  293. } SessionShellClassRec;
  294. externalref SessionShellClassRec sessionShellClassRec;
  295. typedef struct _XtSaveYourselfRec *XtSaveYourself; /* implementation-private */
  296. /* New fields for the session shell widget */
  297. typedef struct {
  298.     SmcConn         connection;
  299.     String          session_id;
  300.     String*         restart_command;
  301.     String*         clone_command;
  302.     String*         discard_command;
  303.     String*         resign_command;
  304.     String*         shutdown_command;
  305.     String*         environment;
  306.     String          current_dir;
  307.     String          program_path;
  308.     unsigned char   restart_style;
  309.     unsigned char   checkpoint_state;
  310.     Boolean         join_session;
  311.     XtCallbackList  save_callbacks;
  312.     XtCallbackList  interact_callbacks;
  313.     XtCallbackList  cancel_callbacks;
  314.     XtCallbackList  save_complete_callbacks;
  315.     XtCallbackList  die_callbacks;
  316.     XtCallbackList  error_callbacks;
  317.     XtSaveYourself  save;
  318.     XtInputId       input_id;
  319.     XtPointer       ses20;
  320.     XtPointer       ses19;
  321.     XtPointer       ses18;
  322.     XtPointer       ses17;
  323.     XtPointer       ses16;
  324.     XtPointer       ses15;
  325.     XtPointer       ses14;
  326.     XtPointer       ses13;
  327.     XtPointer       ses12;
  328.     XtPointer       ses11;
  329.     XtPointer       ses10;
  330.     XtPointer       ses9;
  331.     XtPointer       ses8;
  332.     XtPointer       ses7;
  333.     XtPointer       ses6;
  334.     XtPointer       ses5;
  335.     XtPointer       ses4;
  336.     XtPointer       ses3;
  337.     XtPointer       ses2;
  338.     XtPointer       ses1;
  339. } SessionShellPart;
  340. typedef  struct {
  341. CorePart  core;
  342. CompositePart  composite;
  343. ShellPart  shell;
  344. WMShellPart wm;
  345. VendorShellPart vendor;
  346. TopLevelShellPart topLevel;
  347. ApplicationShellPart application;
  348. SessionShellPart session;
  349. } SessionShellRec, *SessionShellWidget;
  350. #endif /* _XtShellPrivate_h */