ui/motif/container.h

2 weeks ago

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

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

mercurial