add empty sidebar
[uwplayer.git] / application / SidebarP.h
1 /*
2  * Copyright 2022 Olaf Wintermann
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a 
5  * copy of this software and associated documentation files (the "Software"), 
6  * to deal in the Software without restriction, including without limitation 
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense, 
8  * and/or sell copies of the Software, and to permit persons to whom the 
9  * Software is furnished to do so, subject to the following conditions:
10  * 
11  * The above copyright notice and this permission notice shall be included in 
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 
17  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
20  * DEALINGS IN THE SOFTWARE.
21  */
22
23
24 #ifndef SIDEBARP_H
25 #define SIDEBARP_H
26
27
28 #include <Xm/XmP.h>
29 #include <Xm/PrimitiveP.h>
30 #include <Xm/ManagerP.h>
31 #include <Xm/FormP.h>
32 #include <X11/Intrinsic.h>
33 #include <Xm/PrimitiveP.h>
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39
40 typedef struct SidebarData SidebarData;
41 struct SidebarData {
42     int a;
43 };
44
45     
46 typedef struct SidebarClassPart {
47     int unused;
48 } SidebarClassPart;
49
50 typedef struct SidebarClassRec {
51     CoreClassPart             core_class;
52     CompositeClassPart        composite_class;
53     ConstraintClassPart       constraint_class;
54     XmManagerClassPart        manager_class;
55     SidebarClassPart          sidebar_class;
56 } SidebarClassRec;
57
58 typedef struct SidebarPart {
59     int a;
60 } SidebarPart;
61
62 typedef struct SidebarRec {
63    CorePart             core;
64    CompositePart        composite;
65    ConstraintPart       constraint;
66    XmManagerPart        manager;
67    SidebarPart          sidebar;
68 } SidebarRec;
69
70 typedef struct SidebarRec *Sidebar;
71
72
73 #ifdef __cplusplus
74 }
75 #endif
76
77 #endif /* SIDEBARP_H */
78