2008-03-12 18:59:59 +01:00
|
|
|
|
|
|
|
/*******************************************************************************/
|
|
|
|
/* Copyright (C) 2008 Jonathan Moore Liles */
|
|
|
|
/* */
|
|
|
|
/* 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; either version 2 of the License, or (at your */
|
|
|
|
/* option) any later version. */
|
|
|
|
/* */
|
|
|
|
/* 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; see the file COPYING. If not,write to the Free Software */
|
|
|
|
/* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
/*******************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/* Fl_Scalepack
|
|
|
|
|
|
|
|
This is similar to an Fl_Pack, but instead of the pack resizing
|
|
|
|
itself to enclose its children, this pack resizes its children to
|
|
|
|
fit itself. Of course, this only works well with highly flexible
|
|
|
|
widgets, but the task comes up often enough to warrent this class.
|
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
If and child happens to be the resizable() widget, then it will be
|
|
|
|
resized so the all the other children can fit around it, with their
|
|
|
|
current sizes (and the size of the Fl_Scalepack) maintained.
|
|
|
|
|
|
|
|
NOTES: An Fl_Pack as a direct child will not work, because Fl_Pack
|
|
|
|
changes its size in draw(), which throws off our resize
|
|
|
|
calculation. The whole idea of widgets being able to resize
|
|
|
|
themselves within draw() is horribly broken...
|
2008-03-12 18:59:59 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Fl_Scalepack.H"
|
|
|
|
|
|
|
|
#include <FL/Fl.H>
|
2010-02-24 15:58:47 +01:00
|
|
|
#include <FL/fl_draw.H>
|
2008-03-12 18:59:59 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
Fl_Scalepack::Fl_Scalepack ( int X, int Y, int W, int H, const char *L ) :
|
|
|
|
Fl_Group( X, Y, W, H, L )
|
|
|
|
{
|
|
|
|
resizable( 0 );
|
|
|
|
_spacing = 0;
|
|
|
|
}
|
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
void
|
|
|
|
Fl_Scalepack::resize ( int X, int Y, int W, int H )
|
|
|
|
{
|
|
|
|
/* Fl_Group's resize will change our child widget sizes, which
|
|
|
|
interferes with our own resizing method. */
|
2013-07-15 00:44:14 +02:00
|
|
|
long dx = X - x();
|
|
|
|
long dy = Y - y();
|
|
|
|
|
|
|
|
bool r = W != w() || H != h();
|
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
Fl_Widget::resize( X, Y, W, H );
|
2013-07-15 00:44:14 +02:00
|
|
|
|
|
|
|
Fl_Widget*const* a = array();
|
|
|
|
|
|
|
|
for (int i=children(); i--;)
|
|
|
|
{
|
|
|
|
Fl_Widget* o = *a++;
|
|
|
|
|
|
|
|
o->position( o->x() + dx, o->y() + dy );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( r )
|
|
|
|
redraw();
|
2010-02-24 15:58:47 +01:00
|
|
|
}
|
|
|
|
|
2008-03-12 18:59:59 +01:00
|
|
|
void
|
|
|
|
Fl_Scalepack::draw ( void )
|
|
|
|
{
|
2010-02-24 15:58:47 +01:00
|
|
|
|
|
|
|
if ( resizable() == this )
|
|
|
|
/* this resizable( this ) is the default for Fl_Group and is
|
|
|
|
* reset by Fl_Group::clear(), but it is not our default... */
|
|
|
|
resizable( 0 );
|
|
|
|
|
2008-03-12 18:59:59 +01:00
|
|
|
int tx = x() + Fl::box_dx( box() );
|
|
|
|
int ty = y() + Fl::box_dy( box() );
|
|
|
|
int tw = w() - Fl::box_dw( box() );
|
|
|
|
int th = h() - Fl::box_dh( box() );
|
|
|
|
|
|
|
|
if ( damage() & FL_DAMAGE_ALL )
|
|
|
|
{
|
2012-11-30 08:36:28 +01:00
|
|
|
draw_box();
|
2010-02-24 15:58:47 +01:00
|
|
|
|
2008-03-12 18:59:59 +01:00
|
|
|
draw_label();
|
|
|
|
}
|
|
|
|
|
|
|
|
int v = 0;
|
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
int cth = 0;
|
|
|
|
int ctw = 0;
|
|
|
|
|
|
|
|
Fl_Widget * const * a = array();
|
|
|
|
|
2008-03-12 18:59:59 +01:00
|
|
|
for ( int i = children(); i--; )
|
2010-02-24 15:58:47 +01:00
|
|
|
{
|
|
|
|
Fl_Widget *o = *a++;
|
|
|
|
|
|
|
|
if ( o->visible() )
|
|
|
|
{
|
2008-03-12 18:59:59 +01:00
|
|
|
++v;
|
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
if ( o != this->resizable() )
|
|
|
|
{
|
|
|
|
cth += o->h();
|
|
|
|
ctw += o->w();
|
|
|
|
}
|
|
|
|
|
|
|
|
cth += _spacing;
|
|
|
|
ctw += _spacing;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctw -= _spacing;
|
|
|
|
cth -= _spacing;
|
|
|
|
|
2009-12-28 06:25:28 +01:00
|
|
|
if ( 0 == v )
|
|
|
|
return;
|
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
if ( this->resizable() )
|
2008-03-12 18:59:59 +01:00
|
|
|
{
|
2010-02-24 15:58:47 +01:00
|
|
|
int pos = 0;
|
|
|
|
|
|
|
|
Fl_Widget * const * a = array();
|
|
|
|
|
|
|
|
for ( int i = children(); i--; )
|
|
|
|
{
|
|
|
|
Fl_Widget *o = *a++;
|
|
|
|
|
|
|
|
if ( o->visible() )
|
|
|
|
{
|
|
|
|
int X, Y, W, H;
|
|
|
|
|
|
|
|
if ( type() == HORIZONTAL )
|
|
|
|
{
|
|
|
|
X = tx + pos;
|
|
|
|
Y = ty;
|
|
|
|
W = o->w();
|
|
|
|
H = th;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
X = tx;
|
|
|
|
Y = ty + pos;
|
|
|
|
W = tw;
|
|
|
|
H = o->h();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( this->resizable() == o )
|
|
|
|
{
|
|
|
|
if ( type() == HORIZONTAL )
|
|
|
|
W = tw - ctw - 3;
|
|
|
|
else
|
|
|
|
H = th - cth;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (X != o->x() || Y != o->y() || W != o->w() || H != o->h() )
|
|
|
|
{
|
|
|
|
o->resize(X,Y,W,H);
|
|
|
|
o->clear_damage(FL_DAMAGE_ALL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( damage() & FL_DAMAGE_ALL )
|
|
|
|
{
|
|
|
|
draw_child( *o );
|
|
|
|
draw_outside_label( *o );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
update_child( *o );
|
|
|
|
|
|
|
|
/* if ( this->resizable() == o ) */
|
|
|
|
/* fl_rect( o->x(), o->y(), o->w(), o->h(), type() == VERTICAL ? FL_GREEN : FL_BLUE ); */
|
|
|
|
|
|
|
|
if ( type() == HORIZONTAL )
|
|
|
|
pos += o->w() + spacing();
|
|
|
|
else
|
|
|
|
pos += o->h() + spacing();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2008-03-12 18:59:59 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-02-24 15:58:47 +01:00
|
|
|
int sz = 0;
|
|
|
|
int pos = 0;
|
2008-03-12 18:59:59 +01:00
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
if ( type() == HORIZONTAL )
|
|
|
|
sz = (tw - (_spacing * (v - 1))) / v;
|
|
|
|
else
|
|
|
|
sz = (th - (_spacing * (v - 1))) / v;
|
2008-03-12 18:59:59 +01:00
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
Fl_Widget * const * a = array();
|
2008-03-12 18:59:59 +01:00
|
|
|
|
2010-02-24 15:58:47 +01:00
|
|
|
for ( int i = children(); i--; )
|
|
|
|
{
|
|
|
|
Fl_Widget *o = *a++;
|
|
|
|
|
|
|
|
if ( o->visible() )
|
|
|
|
{
|
|
|
|
int X, Y, W, H;
|
|
|
|
|
|
|
|
if ( type() == HORIZONTAL )
|
|
|
|
{
|
|
|
|
X = tx + pos;
|
|
|
|
Y = ty;
|
|
|
|
W = sz;
|
|
|
|
H = th;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
X = tx;
|
|
|
|
Y = ty + pos;
|
|
|
|
W = tw;
|
|
|
|
H = sz;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (X != o->x() || Y != o->y() || W != o->w() || H != o->h() )
|
|
|
|
{
|
|
|
|
o->resize(X,Y,W,H);
|
|
|
|
o->clear_damage(FL_DAMAGE_ALL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( damage() & FL_DAMAGE_ALL )
|
|
|
|
{
|
|
|
|
draw_child( *o );
|
|
|
|
draw_outside_label( *o );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
update_child( *o );
|
|
|
|
|
|
|
|
// fl_rect( o->x(), o->y(), o->w(), o->h(), type() == VERTICAL ? FL_RED : FL_YELLOW );
|
|
|
|
|
|
|
|
if ( type() == HORIZONTAL )
|
|
|
|
pos += o->w() + spacing();
|
|
|
|
else
|
|
|
|
pos += o->h() + spacing();
|
|
|
|
|
|
|
|
}
|
2008-03-12 18:59:59 +01:00
|
|
|
}
|
2010-02-24 15:58:47 +01:00
|
|
|
}
|
2008-03-12 18:59:59 +01:00
|
|
|
}
|