2009-08-17 12:41:51 +02:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
gpicturebox.h
|
|
|
|
|
2011-03-21 01:04:10 +01:00
|
|
|
(c) 2000-2011 Benoît Minisini <gambas@users.sourceforge.net>
|
2009-08-17 12:41:51 +02:00
|
|
|
|
|
|
|
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, 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; if not, write to the Free Software
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2009-08-17 12:41:51 +02:00
|
|
|
|
|
|
|
***************************************************************************/
|
2007-12-30 17:41:49 +01:00
|
|
|
#ifndef __GPICTUREBOX_H
|
|
|
|
#define __GPICTUREBOX_H
|
|
|
|
|
|
|
|
class gPictureBox : public gControl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
gPictureBox(gContainer *parent);
|
|
|
|
~gPictureBox();
|
|
|
|
|
|
|
|
int alignment();
|
|
|
|
int getBorder() { return getFrameBorder(); }
|
|
|
|
bool stretch();
|
|
|
|
gPicture* picture() { return _picture; }
|
2008-05-14 14:44:23 +02:00
|
|
|
bool isAutoResize() { return _autoresize; }
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
void setAlignment(int vl);
|
|
|
|
void setBorder(int vl) { setFrameBorder(vl); }
|
|
|
|
void setStretch(bool vl);
|
|
|
|
void setPicture(gPicture *pic);
|
2008-05-14 14:44:23 +02:00
|
|
|
void setAutoResize(bool);
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
//"Methods"
|
2011-07-11 22:44:42 +02:00
|
|
|
void resize(int w, int h);
|
2008-05-15 00:36:25 +02:00
|
|
|
virtual void updateBorder();
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
//"Private"
|
|
|
|
void redraw();
|
2008-05-15 00:36:25 +02:00
|
|
|
void adjust();
|
2007-12-30 17:41:49 +01:00
|
|
|
gPicture *_picture;
|
2008-05-14 14:44:23 +02:00
|
|
|
bool _autoresize;
|
2007-12-30 17:41:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|