ui/qt/container.cpp

7 days ago

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 26 Mar 2025 22:09:05 +0100 (7 days ago)
changeset 522
bb0d05f45046
parent 520
ea1bba55de44
child 525
878df45e6441
permissions
-rw-r--r--

add grid 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;
}

void ui_container_add(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);
    
    ui_container_add(obj, new UiBoxContainer(box));
    
    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);
}


/* -------------------- UiGridContainer -------------------- */

UiGridContainer::UiGridContainer(QGridLayout* grid, int margin, int columnspacing, int rowspacing) {
    this->current = NULL;
    this->grid = grid;
    grid->setContentsMargins(QMargins(margin, margin, margin, margin));
    grid->setHorizontalSpacing(columnspacing);
    grid->setVerticalSpacing(rowspacing);
    ui_reset_layout(layout);
}

void UiGridContainer::add(QWidget* widget, bool fill) {
    if(layout.newline) {
        x = 0;
        y++;
    }
    
    Qt::Alignment alignment = Qt::AlignTop;
    grid->setColumnStretch(x, layout.hexpand ? 1 : 0);
    if(layout.vexpand) {
        grid->setRowStretch(y, 1);
        alignment = 0;
    } else {
        grid->setRowStretch(y, 0);
    }
    
    int colspan = layout.colspan > 0 ? layout.colspan : 1;
    int rowspan = layout.rowspan > 0 ? layout.rowspan : 1;
    
    grid->addWidget(widget, y, x, rowspan, colspan, alignment);
    x += colspan;
    
    ui_reset_layout(layout);
    current = widget;
}

UIEXPORT UIWIDGET ui_grid_create(UiObject *obj, UiContainerArgs args) {
    UiContainerPrivate *ctn = (UiContainerPrivate*)ui_obj_container(obj);
    UI_APPLY_LAYOUT(ctn->layout, args);
    
    QWidget *widget = new QWidget();
    QGridLayout *grid = new QGridLayout();
    widget->setLayout(grid);
    ctn->add(widget, true);
    
    ui_container_add(obj, new UiGridContainer(grid, args.margin, args.columnspacing, args.rowspacing));
    
    return widget;
}



/* -------------------- Container Helper Functions -------------------- */

void ui_container_begin_close(UiObject *obj) {
    obj->container_end->close = true;
}

int ui_container_finish(UiObject *obj) {
    if(obj->container_end->close) {
        ui_end_new(obj);
        return 0;
    }
    return 1;
}


/*
 * -------------------- Layout Functions --------------------
 * 
 * functions for setting layout attributes for the current container
 *
 */

void ui_newline(UiObject *obj) {
    UiContainerPrivate *ct = ui_obj_container(obj);
    ct->layout.newline = TRUE;
}

mercurial