ui/cocoa/window.m

branch
newapi
changeset 404
384f6d1f5784
parent 157
0b33b9396851
equal deleted inserted replaced
403:b59935b2de79 404:384f6d1f5784
1 /* 1 /*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 * 3 *
4 * Copyright 2012 Olaf Wintermann. All rights reserved. 4 * Copyright 2024 Olaf Wintermann. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met: 7 * modification, are permitted provided that the following conditions are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 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 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE. 26 * POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #include <stdio.h> 29 #import "window.h"
30 #include <stdlib.h>
31 #include <string.h>
32 30
33 #import "window.h" 31 #import "MainWindow.h"
34 #import "menu.h" 32 #import "WindowManager.h"
35 #import "toolbar.h"
36 #import "container.h"
37 #import <ucx/mempool.h>
38 #import "../common/context.h"
39 33
40 static int window_default_width = 600; 34 #include "../ui/window.h"
41 static int window_default_height = 500; 35 #include "../ui/properties.h"
36 #include "../common/context.h"
37 #include "../common/menu.h"
38 #include "../common/toolbar.h"
42 39
43 @implementation UiCocoaWindow 40 #include <cx/mempool.h>
44 41
45 - (UiCocoaWindow*) init: (NSRect)frame object: (UiObject*)obj { 42 static UiObject* create_window(const char *title, BOOL simple) {
46 self = [self initWithContentRect:frame 43 CxMempool *mp = cxBasicMempoolCreate(256);
47 styleMask:NSTitledWindowMask | 44 UiObject *obj = cxCalloc(mp->allocator, 1, sizeof(UiObject));
48 NSResizableWindowMask | 45 obj->ref = 0;
49 NSClosableWindowMask |
50 NSMiniaturizableWindowMask
51 backing:NSBackingStoreBuffered
52 defer:false];
53 46
54 uiobj = obj;
55 UcxAllocator *allocator = uiobj->ctx->mempool->allocator;
56 menus = ucx_map_new_a(allocator, 8);
57 items = ucx_map_new_a(allocator, 64);
58
59 return self;
60 }
61
62 - (UiObject*) object {
63 return uiobj;
64 }
65
66 - (void) setObject:(UiObject*)obj {
67 uiobj = obj;
68 }
69
70 - (void) setMenuItems:(UcxList*)menuItems {
71 UcxAllocator *allocator = uiobj->ctx->mempool->allocator;
72
73 UCX_FOREACH(elm, menuItems) {
74 UiStateItem *item = elm->data;
75 NSMenu *menu = [item->item menu];
76
77 // create UiMenuItem which represents an NSMenuItem for a Window
78 UiMenuItem *windowItem = ucx_mempool_malloc(uiobj->ctx->mempool, sizeof(UiMenuItem));
79 windowItem->item = item->item;
80 windowItem->state = 0;
81 if(item->var) {
82 // bind value
83 UiVar *var = uic_connect_var(uiobj->ctx, item->var, UI_VAR_INTEGER);
84 if(var) {
85 UiInteger *value = var->value;
86 value->obj = windowItem;
87 value->get = ui_menuitem_get;
88 value->set = ui_menuitem_set;
89 value = 0;
90 } else {
91 // TODO: error
92 }
93 }
94
95 // add item
96 UiAbstractMenuItem *abstractItem = malloc(sizeof(UiAbstractMenuItem));
97 abstractItem->update = ui_update_item;
98 abstractItem->item_data = windowItem;
99 UcxList *itemList = ucx_map_get(menus, ucx_key(&menu, sizeof(void*)));
100 itemList = ucx_list_append_a(allocator, itemList, abstractItem);
101 ucx_map_put(menus, ucx_key(&menu, sizeof(void*)), itemList);
102
103 ucx_map_put(items, ucx_key(&windowItem->item, sizeof(void*)), windowItem);
104 }
105 }
106
107 - (void) setMenuItemLists:(UcxList*)itemLists {
108 UcxAllocator *allocator = uiobj->ctx->mempool->allocator;
109
110 UCX_FOREACH(elm, itemLists) {
111 UiMenuItemList *list = elm->data;
112
113 UiAbstractMenuItem *abstractItem = malloc(sizeof(UiAbstractMenuItem));
114 abstractItem->update = ui_update_item_list;
115 abstractItem->item_data = list;
116
117 UcxList *itemList = ucx_map_get(menus, ucx_key(&list->menu, sizeof(void*)));
118 itemList = ucx_list_append_a(allocator, itemList, abstractItem);
119 ucx_map_put(menus, ucx_key(&list->menu, sizeof(void*)), itemList);
120
121 }
122 }
123
124 - (UiMenuItem*) getMenuItem:(NSMenuItem*)item {
125 return ucx_map_get(items, ucx_key(&item, sizeof(void*)));
126 }
127
128 - (void) updateMenu:(NSMenu*)menu {
129 UcxList *itemList = ucx_map_get(menus, ucx_key(&menu, sizeof(void*)));
130 UCX_FOREACH(elm, itemList) {
131 UiAbstractMenuItem *item = elm->data;
132 item->update(self, item->item_data);
133 }
134
135 // update group items
136 // TODO: use only one loop for all items
137 int ngroups = 0;
138 int *groups = ui_active_groups(uiobj->ctx, &ngroups);
139
140 NSArray *groupItems = [menu itemArray];
141 int count = [groupItems count];
142 for(int i=0;i<count;i++) {
143 id item = [groupItems objectAtIndex:i];
144 if([item class] == [UiGroupMenuItem class]) {
145 [item checkGroups: groups count:ngroups];
146 }
147 }
148 free(groups);
149 }
150
151 @end
152
153
154 /* ------------------------------ public API ------------------------------ */
155
156 UiObject* ui_window(char *title, void *window_data) {
157 UcxMempool *mp = ucx_mempool_new(256);
158 UiObject *obj = ucx_mempool_calloc(mp, 1, sizeof(UiObject));
159 obj->ctx = uic_context(obj, mp); 47 obj->ctx = uic_context(obj, mp);
160 48
161 // create native window 49 MainWindow *window = [[MainWindow alloc] init:obj];
162 NSRect frame = NSMakeRect( 50 [[WindowManager sharedWindowManager] addWindow:window];
163 300, 51 window.releasedWhenClosed = false;
164 200,
165 window_default_width,
166 window_default_height);
167 52
168 /* 53 obj->wobj = (__bridge void*)window;
169 UiCocoaWindow *window = [[UiCocoaWindow alloc] initWithContentRect:frame
170 styleMask:NSTitledWindowMask | NSResizableWindowMask |
171 NSClosableWindowMask | NSMiniaturizableWindowMask
172 backing:NSBackingStoreBuffered
173 defer:false];
174 */
175 UiCocoaWindow *window = [[UiCocoaWindow alloc] init:frame object:obj];
176
177 NSString *titleStr = [[NSString alloc] initWithUTF8String:title];
178 [window setTitle:titleStr];
179
180 UiMenuDelegate *menuDelegate = ui_menu_delegate();
181 [window setMenuItems: [menuDelegate items]];
182 [window setMenuItemLists: [menuDelegate lists]];
183
184 NSToolbar *toolbar = ui_create_toolbar(obj);
185 [window setToolbar: toolbar];
186
187 obj->widget = (NSView*)window;
188 obj->window = window_data;
189 obj->container = ui_window_container(obj, window);
190
191 54
192 return obj; 55 return obj;
193 } 56 }
194 57
195 void ui_close(UiObject *obj) { 58 UiObject* ui_window(const char *title, void *window_data) {
196 // TODO 59 UiObject *obj = create_window(title, FALSE);
60 obj->window = window_data;
61 return obj;
197 } 62 }
198 63
199 char* ui_openfiledialog(UiObject *obj) { 64 UiObject* ui_simple_window(const char *title, void *window_data) {
200 NSOpenPanel* op = [NSOpenPanel openPanel]; 65 UiObject *obj = create_window(title, TRUE);
201 if ([op runModal] == NSOKButton) { 66 obj->window = window_data;
202 NSArray *urls = [op URLs]; 67 return obj;
203 NSURL *url = [urls objectAtIndex:0];
204
205 const char *str = [[url path] UTF8String];
206 return (char*)strdup(str);
207 }
208 return NULL;
209 } 68 }
210
211 char* ui_savefiledialog(UiObject *obj) {
212 NSSavePanel* sp = [NSSavePanel savePanel];
213 if ([sp runModal] == NSOKButton) {
214 NSURL *url = [sp URL];
215
216 const char *str = [[url path] UTF8String];
217 return (char*)strdup(str);
218 }
219 return NULL;
220 }

mercurial