ui/motif/container.h

2 weeks ago

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 26 Feb 2025 21:14:24 +0100 (2 weeks ago)
changeset 480
7dfd5e546b99
parent 475
8e06a446d552
child 482
5bc95a6228b0
permissions
-rw-r--r--

move ui_customwidget to separate file

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) \
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
42 layout.fill = args.fill; \
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
43 layout.hexpand = args.hexpand; \
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
44 layout.vexpand = args.vexpand; \
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
45 layout.hfill = args.hfill; \
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
46 layout.vfill = args.vfill; \
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
47 layout.colspan = args.colspan; \
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
48 layout.rowspan = args.rowspan
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
49
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
50 typedef enum UiBoxOrientation UiBoxOrientation;
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
51
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
52 enum UiContainerType {
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
53 UI_CONTAINER_GENERIC = 0,
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
54 UI_CONTAINER_TABVIEW
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
55 };
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
56 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
57
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
58 #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
59 #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
60 #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
61
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
62 #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
63
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
64 typedef struct UiLayout UiLayout;
60
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
65
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
66 struct UiLayout {
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
67 UiTri fill;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
68 UiBool newline;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
69 char *label;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
70 UiBool hexpand;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
71 UiBool vexpand;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
72 UiBool hfill;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
73 UiBool vfill;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
74 int width;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
75 int colspan;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
76 int rowspan;
60
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
77 };
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
78
61
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
79 enum UiBoxOrientation {
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
80 UI_BOX_VERTICAL = 0,
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
81 UI_BOX_HORIZONTAL
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
82 };
7ee124a58fe3 improved box (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 60
diff changeset
83
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
84 typedef struct UiContainerPrivate UiContainerPrivate;
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
85
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 struct UiContainerPrivate {
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
88 UiContainerX container;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
89 Widget (*prepare)(UiContainerPrivate*, Arg *, int*);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
90 void (*add)(UiContainerPrivate*, Widget);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
91 Widget widget;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
92 UiContainerType type;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
93 UiLayout layout;
62
70d2aee84432 added grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 61
diff changeset
94 };
70d2aee84432 added grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 61
diff changeset
95
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
96 typedef struct UiBoxContainer {
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
97 UiContainerPrivate container;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
98 Dimension n;
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
99 } UiBoxContainer;
60
7cd1b8890302 added vbox container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 52
diff changeset
100
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
101 typedef struct UiGridContainer {
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
102 UiContainerPrivate container;
407
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
103 Dimension x;
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
104 Dimension y;
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
105 } UiGridContainer;
62
70d2aee84432 added grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 61
diff changeset
106
460
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
107 typedef struct UiTab {
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
108 Widget tab_button;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
109 Widget child;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
110 } UiTab;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
111
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
112 typedef struct UiMotifTabView UiMotifTabView;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
113 struct UiMotifTabView {
461
b480e133b576 implement missing tabview functions (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 460
diff changeset
114 UiObject *obj;
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
115 Widget form;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
116 Widget tabbar;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
117 Widget content;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
118 Widget current;
460
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
119 UiTab *current_tab;
475
8e06a446d552 implement tabview UiInteger binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 461
diff changeset
120 int current_index;
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
121 int height;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
122 Pixel bg1;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
123 Pixel bg2;
460
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
124 Pixel fg1;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
125 GC gc;
1274d84f44de finish minimal tabview implementation (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 452
diff changeset
126 int gc_initialized;
452
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
127 UiTabViewType tabview;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
128 UiSubContainerType subcontainer;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
129 CxList *tabs;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
130 void (*select)(UiMotifTabView *tabview, int tab);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
131 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
132 void (*remove)(UiMotifTabView *tabview, int index);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
133 };
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
134
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
135 typedef struct UiTabViewContainer {
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
136 UiContainerPrivate container;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
137 UiMotifTabView *tabview;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
138 } UiTabViewContainer;
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
139
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
140 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
141 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
142 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
143 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
144 int64_t ui_tabview_get(UiInteger *i);
8e06a446d552 implement tabview UiInteger binding (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 461
diff changeset
145 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
146
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
147 Widget ui_tabview_container_prepare(UiContainerPrivate *ctn, Arg *args, int *n);
a0620cf552a6 add first code for motif tabview (incomplete)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 407
diff changeset
148 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
149
406
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
150 UiContainerX* ui_box_container(UiObject *obj, Widget grid, UiBoxOrientation orientation);
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
151 Widget ui_vbox_prepare(UiContainerPrivate *ctn, Arg *args, int *n);
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
152 Widget ui_hbox_prepare(UiContainerPrivate *ctn, Arg *args, int *n);
0ebf9d7b23e8 add first code of the new Motif implementation, implement buttons
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 176
diff changeset
153 void ui_box_container_add(UiContainerPrivate *ctn, Widget widget);
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
154
407
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
155
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
156 UiContainerX* ui_grid_container(UiObject *obj, Widget grid);
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
157 Widget ui_grid_container_prepare(UiContainerPrivate *ctn, Arg *args, int *n);
8ea123dd89db semi functional grid container (Motif)
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 406
diff changeset
158 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
159
4
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
160 #ifdef __cplusplus
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
161 }
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
162 #endif
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
163
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
164 #endif /* CONTAINER_H */
39b9b86ec452 added simple container
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
165

mercurial