ui/motif/container.c

Sun, 11 May 2014 11:35:33 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 11 May 2014 11:35:33 +0200
changeset 36
e4198fc2ead4
parent 34
0ec8a5f17782
child 52
25e5390cce41
permissions
-rw-r--r--

fixed list, text and added ui_close (Motif)

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright 2014 Olaf Wintermann. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 *   1. Redistributions of source code must retain the above copyright
 *      notice, this list of conditions and the following disclaimer.
 *
 *   2. Redistributions in binary form must reproduce the above copyright
 *      notice, this list of conditions and the following disclaimer in the
 *      documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include <stdio.h>
#include <stdlib.h>

#include "container.h"
#include "../common/context.h"
#include "../common/object.h"

UiContainer* ui_frame_container(UiObject *obj, Widget frame) {
    UiContainer *ct = ucx_mempool_malloc(
            obj->ctx->mempool,
            sizeof(UiContainer));
    ct->widget = frame;
    ct->add = ui_frame_container_add;
    return ct;
}

Widget ui_frame_container_add(UiContainer *ct, Arg *args, int *n) {
    return ct->widget;
}


UIWIDGET ui_sidebar(UiObject *obj) {
    UiContainer *ct = uic_get_current_container(obj);
    
    Arg args[8];
    int n = 0;
    XtSetArg(args[n], XmNorientation, XmHORIZONTAL);
    n++;
    
    Widget parent = ct->add(ct, args, &n);
    Widget pane = XmCreatePanedWindow(parent, "pane", args, n);
    XtManageChild(pane);
    
    // add sidebar widget
    XtSetArg(args[0], XmNshadowType, XmSHADOW_ETCHED_OUT);
    XtSetArg(args[1], XmNshadowThickness, 0);
    Widget sidebar = XmCreateFrame(pane, "sidebar", args, 2);
    XtManageChild(sidebar);
    
    UiObject *left = uic_object_new(obj, sidebar);
    left->container = ui_frame_container(left, sidebar);
    
    // add content widget
    XtSetArg (args[2], XmNpaneMaximum, 8000);
    Widget content = XmCreateFrame(pane, "content_area", args, 3);
    XtManageChild(content);
    
    UiObject *right = uic_object_new(obj, content);
    right->container = ui_frame_container(right, content);
    
    uic_obj_add(obj, right);
    uic_obj_add(obj, left);
    
    return sidebar;
}

mercurial