ui/qt/container.cpp

8 days ago

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 26 Mar 2025 21:47:04 +0100 (8 days ago)
changeset 519
8884c7fbe4cb
parent 516
4b31c74666d7
child 520
ea1bba55de44
permissions
-rw-r--r--

add box container (QT)

/*
 * 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 "container.h"
#include "../common/object.h"

#include <cx/mempool.h>

#include <QSpacerItem>
#include <QStackedWidget>

static void delete_container(UiContainerPrivate *ct) {
    delete ct;
}

static void add_container(UiObject *obj, UiContainerPrivate *ct) {
    UiContainerX *container = (UiContainerX*)ui_malloc(obj->ctx, sizeof(UiContainerX));
    container->close = 0;
    container->container = ct;
    container->prev = NULL;
    container->next = NULL;
    cxMempoolRegister(obj->ctx->mp, ct, (cx_destructor_func)delete_container);
    uic_object_push_container(obj, container);
}

/* -------------------- UiBoxContainer -------------------- */

UiBoxContainer::UiBoxContainer(QBoxLayout* box) {
    this->box = box;
    box->setContentsMargins(QMargins(0,0,0,0));
    box->setSpacing(0);
    
    ui_reset_layout(layout);
}

void UiBoxContainer::add(QWidget* widget, bool fill) {
    if(layout.fill != UI_LAYOUT_UNDEFINED) {
        fill = ui_lb2bool(layout.fill);
    }
    
    if(hasStretchedWidget && fill) {
        fill = false;
        fprintf(stderr, "UiError: container has 2 filled widgets");
    }
    
    box->addWidget(widget, fill);
    
    if(!hasStretchedWidget) {
        QSpacerItem *newspace = new QSpacerItem(0, 0, QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
        box->removeItem(space);
        box->addSpacerItem(newspace);
        space = newspace; 
    }
    
    if(fill) {
        hasStretchedWidget = true;
    }
    ui_reset_layout(layout);
    current = widget;
}

UIWIDGET ui_box(UiObject *obj, UiContainerArgs args, QBoxLayout::Direction dir) {
    UiContainerPrivate *ctn = (UiContainerPrivate*)ui_obj_container(obj);
    UI_APPLY_LAYOUT(ctn->layout, args);
    
    QWidget *widget = new QWidget();
    QBoxLayout *box = new QBoxLayout(dir);
    widget->setLayout(box);
    ctn->add(widget, true);
    
    
    
    return widget;
}

UIWIDGET ui_vbox_create(UiObject *obj, UiContainerArgs args) {
    return ui_box(obj, args, QBoxLayout::TopToBottom);
}

UIWIDGET ui_hbox_create(UiObject *obj, UiContainerArgs args) {
    return ui_box(obj, args, QBoxLayout::LeftToRight);
}

mercurial