1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/*
* Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of the
* License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
#pragma once
#include <mforms/container.h>
#include <map>
namespace mforms {
class Box;
class Button;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#ifndef SWIG
struct BoxImplPtrs
{
bool (*create)(Box *self, bool horizontal);
void (*add)(Box *self, View *child, bool expand, bool fill);
void (*add_end)(Box *self, View *child, bool expand, bool fill);
void (*remove)(Box *self, View *child);
void (*set_homogeneous)(Box *self, bool);
void (*set_spacing)(Box *self, int);
};
#endif
#endif
/** Places child views sequentially in a vertical or horizontal layout.
The container will use all available space in its parent and layout child views
so that their minimal sizes are respected. If there is leftover space in the Box,
it will be evenly distributed among child views that are marked to expand.
*/
class MFORMS_EXPORT Box : public Container
{
public:
/** Constructor.
@param horiz - true to place child views from left to right. false to place them from
top to bottom.
*/
Box(bool horiz);
/** Adds a child view, from left to right or top to bottom.
@param subview - subview to be added
@param expand - whether the subview should expand to use leftover space in the box
@param fill - whether the subview should be resized to fill all allocated space or
use only its minimum required size. If not set then the subview is centered within
the computed space (vertically in horizontal layout, horizontally in vertical layout).
*/
void add(View *subview, bool expand, bool fill= false);
/** Adds a child view, from right to left or bottom to top.
@param subview - subview to be added
@param expand - whether the subview should expand to use leftover space in the box
@param fill - whether the subview should be resized to fill all allocated space or
use only its minimum required size. Only makes sense if the target size is larger
than the preferred view size (if set to expand, homogeneous mode enabled).
*/
void add_end(View *subview, bool expand, bool fill= false);
/** Remove a subview */
virtual void remove(View *subview);
/** Sets whether all child views should have the same space. */
void set_homogeneous(bool flag);
/** Sets spacing between child items. */
void set_spacing(int space);
/** Returns the orientation of the box. */
bool is_horizontal();
protected:
BoxImplPtrs *_box_impl;
bool _is_horizontal;
};
};
|