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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/********************************************************************************
* *
* I m a g e F r a m e W i d g e t *
* *
*********************************************************************************
* Copyright (C) 2001,2022 by H. J. Daniel III. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or modify *
* it under the terms of the GNU Lesser General Public License as published by *
* the Free Software Foundation; either version 3 of the License, or *
* (at your option) any later version. *
* *
* This library 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 Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/> *
********************************************************************************/
#include "xincs.h"
#include "fxver.h"
#include "fxdefs.h"
#include "fxmath.h"
#include "FXArray.h"
#include "FXHash.h"
#include "FXMutex.h"
#include "FXStream.h"
#include "FXString.h"
#include "FXSize.h"
#include "FXPoint.h"
#include "FXRectangle.h"
#include "FXStringDictionary.h"
#include "FXSettings.h"
#include "FXRegistry.h"
#include "FXAccelTable.h"
#include "FXEvent.h"
#include "FXWindow.h"
#include "FXDCWindow.h"
#include "FXApp.h"
#include "FXImage.h"
#include "FXImageFrame.h"
/*
Notes:
- Hacked around so as to support padding also.
- Fixed layout to center image if frame is larger.
- Fixed serialization also.
- Now supports various justification modes
*/
#define JUSTIFY_MASK (JUSTIFY_HZ_APART|JUSTIFY_VT_APART)
using namespace FX;
/*******************************************************************************/
namespace FX {
// Map
FXDEFMAP(FXImageFrame) FXImageFrameMap[]={
FXMAPFUNC(SEL_PAINT,0,FXImageFrame::onPaint),
};
// Object implementation
FXIMPLEMENT(FXImageFrame,FXFrame,FXImageFrameMap,ARRAYNUMBER(FXImageFrameMap))
// Deserialization
FXImageFrame::FXImageFrame(){
image=nullptr;
}
// Construct it
FXImageFrame::FXImageFrame(FXComposite* p,FXImage *img,FXuint opts,FXint x,FXint y,FXint w,FXint h,FXint pl,FXint pr,FXint pt,FXint pb):FXFrame(p,opts,x,y,w,h,pl,pr,pt,pb){
image=img;
}
// Create it all
void FXImageFrame::create(){
FXFrame::create();
if(image) image->create();
}
// Get default width
FXint FXImageFrame::getDefaultWidth(){
FXint w=0;
if(image) w=image->getWidth();
return w+padleft+padright+(border<<1);
}
// Get default height
FXint FXImageFrame::getDefaultHeight(){
FXint h=0;
if(image) h=image->getHeight();
return h+padtop+padbottom+(border<<1);
}
// Draw the image
long FXImageFrame::onPaint(FXObject*,FXSelector,void* ptr){
FXEvent *ev=(FXEvent*)ptr;
FXDCWindow dc(this,ev);
FXint imgx,imgy,imgw,imgh;
dc.setForeground(backColor);
if(image){
imgw=image->getWidth();
imgh=image->getHeight();
if(options&JUSTIFY_LEFT) imgx=padleft+border;
else if(options&JUSTIFY_RIGHT) imgx=width-padright-border-imgw;
else imgx=border+padleft+(width-padleft-padright-(border<<1)-imgw)/2;
if(options&JUSTIFY_TOP) imgy=padtop+border;
else if(options&JUSTIFY_BOTTOM) imgy=height-padbottom-border-imgh;
else imgy=border+padtop+(height-padbottom-padtop-(border<<1)-imgh)/2;
dc.fillRectangle(border,border,imgx-border,height-(border<<1));
dc.fillRectangle(imgx+imgw,border,width-border-imgx-imgw,height-(border<<1));
dc.fillRectangle(imgx,border,imgw,imgy-border);
dc.fillRectangle(imgx,imgy+imgh,imgw,height-border-imgy-imgh);
dc.drawImage(image,imgx,imgy);
}
else{
dc.fillRectangle(border,border,width-(border<<1),height-(border<<1));
}
drawFrame(dc,0,0,width,height);
return 1;
}
// Change image
void FXImageFrame::setImage(FXImage* img){
image=img;
recalc();
update();
}
// Set text justify style
void FXImageFrame::setJustify(FXuint style){
FXuint opts=(options&~JUSTIFY_MASK) | (style&JUSTIFY_MASK);
if(options!=opts){
options=opts;
update();
}
}
// Get text justify style
FXuint FXImageFrame::getJustify() const {
return (options&JUSTIFY_MASK);
}
// Save data
void FXImageFrame::save(FXStream& store) const {
FXFrame::save(store);
store << image;
}
// Load data
void FXImageFrame::load(FXStream& store){
FXFrame::load(store);
store >> image;
}
// Destructor
FXImageFrame::~FXImageFrame(){
image=(FXImage*)-1L;
}
}
|