| 302 |
302 |
| 303 void ui_frame_container_add(UiContainerPrivate *ctn, Widget widget) { |
303 void ui_frame_container_add(UiContainerPrivate *ctn, Widget widget) { |
| 304 // NOOP |
304 // NOOP |
| 305 } |
305 } |
| 306 |
306 |
| |
307 /* -------------------------- SplitPane -------------------------- */ |
| |
308 |
| |
309 UIWIDGET ui_splitpane_create(UiObject *obj, UiSplitPaneArgs *args, int orientation) { |
| |
310 return NULL; // TODO |
| |
311 } |
| |
312 |
| |
313 UIWIDGET ui_hsplitpane_create(UiObject *obj, UiSplitPaneArgs *args) { |
| |
314 return ui_splitpane_create(obj, args, XmHORIZONTAL); |
| |
315 } |
| |
316 |
| |
317 UIWIDGET ui_vsplitpane_create(UiObject *obj, UiSplitPaneArgs *args) { |
| |
318 return ui_splitpane_create(obj, args, XmVERTICAL); |
| |
319 } |
| |
320 |
| 307 /* -------------------------- TabView Container -------------------------- */ |
321 /* -------------------------- TabView Container -------------------------- */ |
| 308 |
322 |
| 309 static void ui_tabbar_resize(Widget widget, XtPointer udata, XtPointer cdata) { |
323 static void ui_tabbar_resize(Widget widget, XtPointer udata, XtPointer cdata) { |
| 310 UiMotifTabView *tabview = udata; |
324 UiMotifTabView *tabview = udata; |
| 311 |
325 |