ui/motif/container.h

Tue, 18 Nov 2025 15:56:59 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Tue, 18 Nov 2025 15:56:59 +0100
changeset 912
06c37c12d149
parent 901
884d70e847a3
permissions
-rw-r--r--

fix listview get/set selection functions (Motif)

4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
1 /*
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
3 *
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
4 * Copyright 2014 Olaf Wintermann. All rights reserved.
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
5 *
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
8 *
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
11 *
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
15 *
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
27 */
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
28
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
29 #ifndef CONTAINER_H
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
30 #define CONTAINER_H
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
31
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
32 #include "../ui/toolkit.h"
153
ee49d1852a5f applies value binding refactoring and text refactoring to motif implementation
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 124
diff changeset
33 #include "../ui/container.h"
176
bc63cb601f6d port motif code to ucx 3
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 157
diff changeset
34 #include <cx/list.h>
60
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
35 #include <string.h>
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
36
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
37 #ifdef __cplusplus
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
38 extern "C" {
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
39 #endif
60
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
40
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
41 #define UI_APPLY_LAYOUT(layout, args) \
595
e62047c59658 refactore widget args passing (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 482
diff changeset
42 layout.fill = args->fill; \
e62047c59658 refactore widget args passing (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 482
diff changeset
43 layout.hexpand = args->hexpand; \
e62047c59658 refactore widget args passing (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 482
diff changeset
44 layout.vexpand = args->vexpand; \
e62047c59658 refactore widget args passing (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 482
diff changeset
45 layout.hfill = args->hfill; \
e62047c59658 refactore widget args passing (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 482
diff changeset
46 layout.vfill = args->vfill; \
e62047c59658 refactore widget args passing (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 482
diff changeset
47 layout.override_defaults = args->override_defaults; \
e62047c59658 refactore widget args passing (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 482
diff changeset
48 layout.colspan = args->colspan; \
e62047c59658 refactore widget args passing (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 482
diff changeset
49 layout.rowspan = args->rowspan
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
50
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
51 typedef enum UiBoxOrientation UiBoxOrientation;
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
52
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
53 enum UiContainerType {
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
54 UI_CONTAINER_GENERIC = 0,
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
55 UI_CONTAINER_TABVIEW
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
56 };
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
57 typedef enum UiContainerType UiContainerType;
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
58
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
59 #define ui_reset_layout(layout) memset(&(layout), 0, sizeof(UiLayout))
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
60 #define ui_lb2bool(b) ((b) == UI_LAYOUT_TRUE ? TRUE : FALSE)
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
61 #define ui_bool2lb(b) ((b) ? UI_LAYOUT_TRUE : UI_LAYOUT_FALSE)
52
25e5390cce41 added document tabview (GTK, Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 4
diff changeset
62
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
63 #define ui_obj_container(obj) (UiContainerPrivate*)obj->container_end
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
64
60
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
65
61
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
66 enum UiBoxOrientation {
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
67 UI_BOX_VERTICAL = 0,
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
68 UI_BOX_HORIZONTAL
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
69 };
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
70
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
71 typedef struct UiContainerPrivate UiContainerPrivate;
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
72
60
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
73
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
74 struct UiContainerPrivate {
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
75 UiContainerX container;
808
2b0ecad00872 refactor motif containers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 670
diff changeset
76 Widget (*prepare)(UiContainerPrivate*, UiLayout *layout, Arg *, int*);
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
77 void (*add)(UiContainerPrivate*, Widget);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
78 Widget widget;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
79 UiContainerType type;
62
70d2aee84432 added grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 61
diff changeset
80 };
70d2aee84432 added grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 61
diff changeset
81
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
82 typedef struct UiBoxContainer {
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
83 UiContainerPrivate container;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
84 Dimension n;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
85 } UiBoxContainer;
60
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
86
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
87 typedef struct UiGridContainer {
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
88 UiContainerPrivate container;
407
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
89 Dimension x;
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
90 Dimension y;
482
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
91 UiBool def_hexpand;
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
92 UiBool def_vexpand;
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
93 UiBool def_hfill;
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
94 UiBool def_vfill;
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
95 } UiGridContainer;
62
70d2aee84432 added grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 61
diff changeset
96
460
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
97 typedef struct UiTab {
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
98 Widget tab_button;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
99 Widget child;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
100 } UiTab;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
101
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
102 typedef struct UiMotifTabView UiMotifTabView;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
103 struct UiMotifTabView {
461
b480e133b576 implement missing tabview functions (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 460
diff changeset
104 UiObject *obj;
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
105 Widget form;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
106 Widget tabbar;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
107 Widget content;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
108 Widget current;
460
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
109 UiTab *current_tab;
475
8e06a446d552 implement tabview UiInteger binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 461
diff changeset
110 int current_index;
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
111 int height;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
112 Pixel bg1;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
113 Pixel bg2;
460
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
114 Pixel fg1;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
115 GC gc;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
116 int gc_initialized;
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
117 UiTabViewType tabview;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
118 UiSubContainerType subcontainer;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
119 CxList *tabs;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
120 void (*select)(UiMotifTabView *tabview, int tab);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
121 void (*add)(UiMotifTabView *tabview, int index, const char *name, Widget child);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
122 void (*remove)(UiMotifTabView *tabview, int index);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
123 };
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
124
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
125 typedef struct UiTabViewContainer {
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
126 UiContainerPrivate container;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
127 UiMotifTabView *tabview;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
128 } UiTabViewContainer;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
129
808
2b0ecad00872 refactor motif containers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 670
diff changeset
130 Widget ui_container_prepare(UiContainerPrivate *container, UiLayout *layout, Arg *args, int *n);
2b0ecad00872 refactor motif containers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 670
diff changeset
131 void ui_container_add(UiContainerPrivate *container, Widget widget);
901
884d70e847a3 implement grid margin (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 886
diff changeset
132 void ui_container_apply_grid_margin(
884d70e847a3 implement grid margin (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 886
diff changeset
133 Arg *args,
884d70e847a3 implement grid margin (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 886
diff changeset
134 int *n,
884d70e847a3 implement grid margin (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 886
diff changeset
135 int margin_left, int margin_right, int margin_top, int margin_bottom);
808
2b0ecad00872 refactor motif containers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 670
diff changeset
136
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
137 void ui_motif_tabview_select(UiMotifTabView *tabview, int tab);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
138 void ui_motif_tabview_add_tab(UiMotifTabView *tabview, int index, const char *name, Widget child);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
139 void ui_motif_tabview_remove(UiMotifTabView *tabview, int index);
460
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
140 void ui_motif_tabview_change_tab(UiMotifTabView *tabview, UiTab *tab);
475
8e06a446d552 implement tabview UiInteger binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 461
diff changeset
141 int64_t ui_tabview_get(UiInteger *i);
8e06a446d552 implement tabview UiInteger binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 461
diff changeset
142 void ui_tabview_set(UiInteger *i, int64_t value);
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
143
808
2b0ecad00872 refactor motif containers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 670
diff changeset
144 Widget ui_tabview_container_prepare(UiContainerPrivate *ctn, UiLayout *layout, Arg *args, int *n);
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
145 void ui_tabview_container_add(UiContainerPrivate *ctn, Widget widget);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
146
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
147 UiContainerX* ui_box_container(UiObject *obj, Widget grid, UiBoxOrientation orientation);
808
2b0ecad00872 refactor motif containers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 670
diff changeset
148 Widget ui_vbox_prepare(UiContainerPrivate *ctn, UiLayout *layout, Arg *args, int *n);
2b0ecad00872 refactor motif containers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 670
diff changeset
149 Widget ui_hbox_prepare(UiContainerPrivate *ctn, UiLayout *layout, Arg *args, int *n);
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
150 void ui_box_container_add(UiContainerPrivate *ctn, Widget widget);
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
151
407
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
152
482
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
153 UiContainerX* ui_grid_container(
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
154 UiObject *obj,
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
155 Widget grid,
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
156 UiBool def_hexpand,
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
157 UiBool def_vexpand,
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
158 UiBool def_hfill,
5bc95a6228b0 implement grid default expand/fill (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 475
diff changeset
159 UiBool def_vfill);
808
2b0ecad00872 refactor motif containers
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 670
diff changeset
160 Widget ui_grid_container_prepare(UiContainerPrivate *ctn, UiLayout *layout, Arg *args, int *n);
407
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
161 void ui_grid_container_add(UiContainerPrivate *ctn, Widget widget);
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
162
886
6f5e02fcb7b9 implement frame container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 808
diff changeset
163 UiContainerX* ui_frame_container(UiObject *obj, Widget frame);
6f5e02fcb7b9 implement frame container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 808
diff changeset
164 Widget ui_frame_container_prepare(UiContainerPrivate *ctn, UiLayout *layout, Arg *args, int *n);
6f5e02fcb7b9 implement frame container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 808
diff changeset
165 void ui_frame_container_add(UiContainerPrivate *ctn, Widget widget);
6f5e02fcb7b9 implement frame container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 808
diff changeset
166
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
167 #ifdef __cplusplus
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
168 }
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
169 #endif
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
170
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
171 #endif /* CONTAINER_H */
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
172

mercurial