7 days ago
implement all grid layout features (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> #include <QLabel> 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, bool def_hexpand, bool def_vexpand, bool def_hfill, bool def_vfill) { this->current = NULL; this->grid = grid; this->def_hexpand = def_hexpand; this->def_vexpand = def_vexpand; this->def_hfill = def_hfill; this->def_vfill = def_vfill; 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++; } int hexpand = false; int vexpand = false; int hfill = false; int vfill = false; if(!layout.override_defaults) { if(def_hexpand) { hexpand = true; hfill = true; } else if(def_hfill) { hfill = true; } if(def_vexpand) { vexpand = true; vfill = true; } else if(def_vfill) { vfill = true; } } if(layout.fill != UI_LAYOUT_UNDEFINED) { fill = ui_lb2bool(layout.fill); } if(layout.hexpand) { hexpand = true; //hfill = true; } else if(layout.hfill) { hfill = true; } if(layout.vexpand) { vexpand = true; //vfill = true; } else if(layout.vfill) { vfill = true; } if(fill) { hfill = true; vfill = true; } if(hexpand) { col_expanding = true; } if(vexpand) { row_expanding = true; } if(hexpand) { grid->setColumnStretch(x, 1); } if(vexpand) { grid->setRowStretch(y, 1); } Qt::Alignment alignment = 0; if(!hfill) { alignment = Qt::AlignLeft; } if(!vfill) { alignment = Qt::AlignTop; } int colspan = layout.colspan > 0 ? layout.colspan : 1; int rowspan = layout.rowspan > 0 ? layout.rowspan : 1; grid->addWidget(widget, y, x, rowspan, colspan, alignment); if(x > max_x) { max_x = x; } if(y > max_y) { max_y = y; } x += colspan; ui_reset_layout(layout); current = widget; } void UiGridContainer::end() { if(!col_expanding) { QLabel *filler = new QLabel(""); x = max_x + 1; grid->setColumnStretch(x, 1); grid->addWidget(filler, 0, x, 1, 1, 0); } if(!row_expanding) { QLabel *filler = new QLabel(""); y++; grid->setRowStretch(y, 1); grid->addWidget(filler, y, 0, 1, 1, 0); } } 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, args.def_hexpand, args.def_vexpand, args.def_hfill, args.def_vfill)); 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) { UiContainerPrivate *ctn = (UiContainerPrivate*)obj->container_end->container; ctn->end(); 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; }