Wed, 02 Apr 2014 13:21:11 +0200
added menu accelerators (Cocoa)
0 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
4 | * Copyright 2014 Olaf Wintermann. All rights reserved. | |
5 | * | |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * | |
12 | * 2. Redistributions in binary form must reproduce the above copyright | |
13 | * notice, this list of conditions and the following disclaimer in the | |
14 | * documentation and/or other materials provided with the distribution. | |
15 | * | |
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
26 | * POSSIBILITY OF SUCH DAMAGE. | |
27 | */ | |
28 | ||
29 | #include <stdio.h> | |
30 | #include <stdlib.h> | |
31 | ||
32 | #include "toolkit.h" | |
33 | #include "menu.h" | |
3 | 34 | #include "toolbar.h" |
4
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
35 | #include "container.h" |
0 | 36 | #include "../ui/window.h" |
37 | #include "../common/context.h" | |
38 | ||
39 | static int nwindows = 0; | |
40 | ||
41 | static int window_default_width = 650; | |
42 | static int window_default_height = 550; | |
43 | ||
44 | static void window_close_handler(Widget window, void *udata, void *cdata) { | |
45 | nwindows--; | |
46 | if(nwindows == 0) { | |
47 | exit(0); | |
48 | } | |
49 | } | |
50 | ||
51 | UiObject* ui_window(char *title, void *window_data) { | |
52 | UcxMempool *mp = ucx_mempool_new(256); | |
53 | UiObject *obj = ucx_mempool_calloc(mp, 1, sizeof(UiObject)); | |
54 | obj->ctx = uic_context(obj, mp); | |
55 | ||
56 | Arg args[16]; | |
57 | int n = 0; | |
58 | ||
5 | 59 | XtSetArg(args[0], XmNtitle, title); |
60 | XtSetArg(args[1], XmNbaseWidth, window_default_width); | |
61 | XtSetArg(args[2], XmNbaseHeight, window_default_height); | |
0 | 62 | |
63 | Widget toplevel = XtAppCreateShell( | |
64 | "Test123", | |
65 | "abc", | |
66 | //applicationShellWidgetClass, | |
67 | vendorShellWidgetClass, | |
68 | ui_get_display(), | |
69 | args, | |
5 | 70 | 3); |
0 | 71 | |
72 | Atom wm_delete_window; | |
73 | wm_delete_window = XmInternAtom( | |
74 | XtDisplay(toplevel), | |
75 | "WM_DELETE_WINDOW", | |
76 | 0); | |
77 | XmAddWMProtocolCallback( | |
78 | toplevel, | |
79 | wm_delete_window, | |
80 | window_close_handler, | |
81 | obj); | |
82 | ||
83 | // menu | |
84 | Widget window = XtVaCreateManagedWidget( | |
85 | title, | |
86 | xmMainWindowWidgetClass, | |
87 | toplevel, | |
88 | NULL); | |
89 | obj->widget = window; | |
90 | ui_create_menubar(obj); | |
3 | 91 | |
92 | // toolbar | |
93 | Widget form = XtVaCreateManagedWidget( | |
94 | "window_form", | |
95 | xmFormWidgetClass, | |
96 | window, | |
97 | NULL); | |
98 | ||
4
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
99 | Widget toolbar = ui_create_toolbar(obj, form); |
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
100 | |
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
101 | // window content |
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
102 | XtSetArg(args[0], XmNshadowType, XmSHADOW_ETCHED_OUT); |
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
103 | XtSetArg(args[1], XmNshadowThickness, 0); |
5 | 104 | XtSetArg(args[2], XmNleftAttachment, XmATTACH_FORM); |
105 | XtSetArg(args[3], XmNrightAttachment, XmATTACH_FORM); | |
106 | XtSetArg(args[4], XmNbottomAttachment, XmATTACH_FORM); | |
107 | if(toolbar) { | |
108 | XtSetArg(args[5], XmNtopAttachment, XmATTACH_WIDGET); | |
109 | XtSetArg(args[6], XmNtopWidget, toolbar); | |
110 | n = 7; | |
111 | } else { | |
112 | XtSetArg(args[5], XmNtopAttachment, XmATTACH_FORM); | |
113 | n = 6; | |
114 | } | |
115 | Widget frame = XmCreateFrame(form, "toolbar_frame", args, n); | |
4
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
116 | XtManageChild(frame); |
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
117 | |
39b9b86ec452
added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
118 | obj->container = ui_frame_container(obj, frame); |
3 | 119 | |
120 | ||
121 | XtManageChild(form); | |
2
eeb50c534497
added support for replaceable documents
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
0
diff
changeset
|
122 | |
0 | 123 | obj->widget = toplevel; |
124 | nwindows++; | |
125 | return obj; | |
126 | } |