Sun, 06 Apr 2014 13:21:37 +0200
added open/save dialogs
3 | 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 | #include <string.h> | |
32 | ||
33 | #include "toolbar.h" | |
34 | #include "button.h" | |
35 | #include "../../ucx/mempool.h" | |
36 | #include "../common/context.h" | |
37 | ||
38 | static UcxMap *toolbar_items; | |
39 | static UcxList *defaults; | |
40 | ||
41 | void ui_toolbar_init() { | |
42 | toolbar_items = ucx_map_new(16); | |
43 | } | |
44 | ||
45 | void ui_toolitem(char *name, char *label, ui_callback f, void *udata) { | |
46 | UiToolItem *item = malloc(sizeof(UiToolItem)); | |
47 | item->item.add_to = (ui_toolbar_add_f)add_toolitem_widget; | |
48 | item->label = label; | |
49 | item->callback = f; | |
50 | item->userdata = udata; | |
51 | ||
52 | ucx_map_cstr_put(toolbar_items, name, item); | |
53 | } | |
54 | ||
27
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
55 | void ui_toolitem_st(char *name, char *stockid, ui_callback f, void *userdata) { |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
56 | ui_toolitem_stgr(name, stockid, f, userdata, -1); |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
57 | } |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
58 | |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
59 | void ui_toolitem_stgr(char *name, char *stockid, ui_callback f, void *userdata, ...) { |
3 | 60 | UiStToolItem *item = malloc(sizeof(UiStToolItem)); |
61 | item->item.add_to = (ui_toolbar_add_f)add_toolitem_st_widget; | |
62 | item->stockid = stockid; | |
63 | item->callback = f; | |
27
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
64 | item->userdata = userdata; |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
65 | |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
66 | // add groups |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
67 | va_list ap; |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
68 | va_start(ap, userdata); |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
69 | int group; |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
70 | while((group = va_arg(ap, int)) != -1) { |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
71 | item->groups = ucx_list_append(item->groups, (void*)(intptr_t)group); |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
72 | } |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
73 | va_end(ap); |
3 | 74 | |
75 | ucx_map_cstr_put(toolbar_items, name, item); | |
76 | } | |
77 | ||
78 | void ui_toolbar_add_default(char *name) { | |
79 | char *s = strdup(name); | |
80 | defaults = ucx_list_append(defaults, s); | |
81 | } | |
82 | ||
83 | GtkWidget* ui_create_toolbar(UiObject *obj) { | |
84 | if(!defaults) { | |
85 | return NULL; | |
86 | } | |
87 | ||
88 | GtkWidget *toolbar = gtk_toolbar_new(); | |
89 | #ifdef UI_GTK3 | |
90 | gtk_style_context_add_class( | |
91 | gtk_widget_get_style_context(toolbar), | |
92 | GTK_STYLE_CLASS_PRIMARY_TOOLBAR); | |
93 | #endif | |
94 | ||
95 | GtkToolbar *tb = GTK_TOOLBAR(toolbar); | |
96 | UCX_FOREACH(elm, defaults) { | |
97 | UiToolItemI *item = ucx_map_cstr_get(toolbar_items, elm->data); | |
98 | if(item) { | |
99 | item->add_to(tb, item, obj); | |
100 | } else if(!strcmp(elm->data, "@separator")) { | |
101 | gtk_toolbar_insert(tb, gtk_separator_tool_item_new(), -1); | |
102 | } else { | |
103 | fprintf(stderr, "UI Error: Unknown toolbar item: %s\n", elm->data); | |
104 | } | |
105 | } | |
106 | ||
107 | return toolbar; | |
108 | } | |
109 | ||
110 | void add_toolitem_widget(GtkToolbar *tb, UiToolItem *item, UiObject *obj) { | |
111 | GtkToolItem *button = gtk_tool_button_new(NULL, item->label); | |
112 | gtk_tool_item_set_homogeneous(button, FALSE); | |
113 | ||
114 | if(item->callback) { | |
115 | UiEventData *event = ucx_mempool_malloc( | |
116 | obj->ctx->mempool, | |
117 | sizeof(UiEventData)); | |
118 | event->obj = obj; | |
119 | event->user_data = item->userdata; | |
120 | event->callback = item->callback; | |
121 | ||
122 | g_signal_connect( | |
123 | button, | |
124 | "clicked", | |
125 | G_CALLBACK(ui_button_clicked), | |
126 | event); | |
127 | } | |
128 | ||
129 | gtk_toolbar_insert(tb, button, -1); | |
27
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
130 | |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
131 | if(item->groups) { |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
132 | uic_add_group_widget(obj->ctx, button, item->groups); |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
133 | } |
3 | 134 | } |
135 | ||
136 | void add_toolitem_st_widget(GtkToolbar *tb, UiStToolItem *item, UiObject *obj) { | |
137 | GtkToolItem *button = gtk_tool_button_new_from_stock(item->stockid); | |
138 | gtk_tool_item_set_homogeneous(button, FALSE); | |
139 | ||
140 | if(item->callback) { | |
141 | UiEventData *event = ucx_mempool_malloc( | |
142 | obj->ctx->mempool, | |
143 | sizeof(UiEventData)); | |
144 | event->obj = obj; | |
145 | event->user_data = item->userdata; | |
146 | event->callback = item->callback; | |
147 | ||
148 | g_signal_connect( | |
149 | button, | |
150 | "clicked", | |
151 | G_CALLBACK(ui_button_clicked), | |
152 | event); | |
153 | } | |
154 | ||
155 | gtk_toolbar_insert(tb, button, -1); | |
27
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
156 | |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
157 | if(item->groups) { |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
158 | uic_add_group_widget(obj->ctx, button, item->groups); |
77b09bb52ca0
added groups for toolbar items and copy & paste (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
3
diff
changeset
|
159 | } |
3 | 160 | } |