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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301
|
/********************************************************************************
* *
* G r o u p B o x W i n d o w O b j e c t *
* *
*********************************************************************************
* Copyright (C) 1997,2022 by Jeroen van der Zijp. 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 "FXFont.h"
#include "FXEvent.h"
#include "FXWindow.h"
#include "FXDCWindow.h"
#include "FXApp.h"
#include "FXLabel.h"
#include "FXGroupBox.h"
/*
Notes:
- Radio behaviour of groupbox has been dropped; groupbox is now
purely a decorative layout manager.
*/
#define FRAME_MASK (FRAME_SUNKEN|FRAME_RAISED|FRAME_THICK)
#define GROUPBOX_TITLE_MASK (GROUPBOX_TITLE_LEFT|GROUPBOX_TITLE_CENTER|GROUPBOX_TITLE_RIGHT)
using namespace FX;
/*******************************************************************************/
namespace FX {
// Map
FXDEFMAP(FXGroupBox) FXGroupBoxMap[]={
FXMAPFUNC(SEL_PAINT,0,FXGroupBox::onPaint),
FXMAPFUNC(SEL_COMMAND,FXGroupBox::ID_SETVALUE,FXGroupBox::onCmdSetValue),
FXMAPFUNC(SEL_COMMAND,FXGroupBox::ID_SETSTRINGVALUE,FXGroupBox::onCmdSetStringValue),
FXMAPFUNC(SEL_COMMAND,FXGroupBox::ID_GETSTRINGVALUE,FXGroupBox::onCmdGetStringValue),
};
// Object implementation
FXIMPLEMENT(FXGroupBox,FXPacker,FXGroupBoxMap,ARRAYNUMBER(FXGroupBoxMap))
// Deserialization
FXGroupBox::FXGroupBox(){
flags|=FLAG_ENABLED;
font=(FXFont*)-1L;
textColor=0;
}
// Make a groupbox
FXGroupBox::FXGroupBox(FXComposite* p,const FXString& text,FXuint opts,FXint x,FXint y,FXint w,FXint h,FXint pl,FXint pr,FXint pt,FXint pb,FXint hs,FXint vs):
FXPacker(p,opts,x,y,w,h,pl,pr,pt,pb,hs,vs),label(text){
flags|=FLAG_ENABLED;
font=getApp()->getNormalFont();
textColor=getApp()->getForeColor();
}
// Create window
void FXGroupBox::create(){
FXPacker::create();
font->create();
}
// Detach window
void FXGroupBox::detach(){
FXPacker::detach();
font->detach();
}
// Enable the window
void FXGroupBox::enable(){
if(!(flags&FLAG_ENABLED)){
FXPacker::enable();
update();
}
}
// Disable the window
void FXGroupBox::disable(){
if(flags&FLAG_ENABLED){
FXPacker::disable();
update();
}
}
// Change the font
void FXGroupBox::setFont(FXFont* fnt){
if(!fnt){ fxerror("%s::setFont: NULL font specified.\n",getClassName()); }
if(font!=fnt){
font=fnt;
recalc();
update();
}
}
// Get default width
FXint FXGroupBox::getDefaultWidth(){
FXint cw=FXPacker::getDefaultWidth();
if(!label.empty()){
FXint tw=font->getTextWidth(label)+16;
return FXMAX(cw,tw);
}
return cw;
}
// Get default height
FXint FXGroupBox::getDefaultHeight(){
FXint ch=FXPacker::getDefaultHeight();
if(!label.empty()){
return ch+font->getFontHeight()+4-border; // Have text instead of border
}
return ch;
}
// Recompute layout
void FXGroupBox::layout(){
FXint tmp=padtop;
if(!label.empty()){
padtop=padtop+font->getFontHeight()+4-border; // Have text instead of border
}
FXPacker::layout();
flags&=~FLAG_DIRTY;
padtop=tmp;
}
// Update value from a message
long FXGroupBox::onCmdSetValue(FXObject*,FXSelector,void* ptr){
setText((const FXchar*)ptr);
return 1;
}
// Update value from a message
long FXGroupBox::onCmdSetStringValue(FXObject*,FXSelector,void* ptr){
setText(*((FXString*)ptr));
return 1;
}
// Obtain value from text field
long FXGroupBox::onCmdGetStringValue(FXObject*,FXSelector,void* ptr){
*((FXString*)ptr)=getText();
return 1;
}
// Handle repaint
long FXGroupBox::onPaint(FXObject*,FXSelector,void* ptr){
FXEvent *event=(FXEvent*)ptr;
FXDCWindow dc(this,event);
FXint tw,th,yy,xx;
xx=0;
yy=0;
// Paint background
dc.setForeground(backColor);
dc.fillRectangle(event->rect.x,event->rect.y,event->rect.w,event->rect.h);
// Draw label if there is one
if(!label.empty()){
yy=2+font->getFontAscent()/2;
}
// We should really just draw what's exposed!
switch(options&FRAME_MASK) {
case FRAME_LINE: drawBorderRectangle(dc,0,yy,width,height-yy); break;
case FRAME_SUNKEN: drawSunkenRectangle(dc,0,yy,width,height-yy); break;
case FRAME_RAISED: drawRaisedRectangle(dc,0,yy,width,height-yy); break;
case FRAME_GROOVE: drawGrooveRectangle(dc,0,yy,width,height-yy); break;
case FRAME_RIDGE: drawRidgeRectangle(dc,0,yy,width,height-yy); break;
case FRAME_SUNKEN|FRAME_THICK: drawDoubleSunkenRectangle(dc,0,yy,width,height-yy); break;
case FRAME_RAISED|FRAME_THICK: drawDoubleRaisedRectangle(dc,0,yy,width,height-yy); break;
}
// Draw label
if(!label.empty()){
tw=font->getTextWidth(label);
th=font->getFontHeight()+4;
if(options&GROUPBOX_TITLE_RIGHT) xx=width-tw-12;
else if(options&GROUPBOX_TITLE_CENTER) xx=(width-tw)/2-4;
else xx=4;
if(xx<4) xx=4;
if(tw+16>width) tw=width-16;
if(0<tw){
dc.setForeground(backColor);
dc.setFont(font);
dc.fillRectangle(xx,yy,tw+8,2);
dc.setClipRectangle(xx+4,0,tw,th);
if(isEnabled()){
dc.setForeground(textColor);
dc.drawText(xx+4,2+font->getFontAscent(),label);
}
else{
dc.setForeground(hiliteColor);
dc.drawText(xx+5,3+font->getFontAscent(),label);
dc.setForeground(shadowColor);
dc.drawText(xx+4,2+font->getFontAscent(),label);
}
}
}
return 1;
}
// Get group box style
FXuint FXGroupBox::getGroupBoxStyle() const {
return (options&GROUPBOX_TITLE_MASK);
}
// Set group box style
void FXGroupBox::setGroupBoxStyle(FXuint style){
FXuint opts=(options&~GROUPBOX_TITLE_MASK) | (style&GROUPBOX_TITLE_MASK);
if(options!=opts){
options=opts;
recalc();
update();
}
}
// Change text
void FXGroupBox::setText(const FXString& text){
if(label!=text){
label=text;
recalc();
update();
}
}
// Set text color
void FXGroupBox::setTextColor(FXColor clr){
if(textColor!=clr){
textColor=clr;
update();
}
}
// Save object to stream
void FXGroupBox::save(FXStream& store) const {
FXPacker::save(store);
store << label;
store << font;
store << textColor;
}
// Load object from stream
void FXGroupBox::load(FXStream& store){
FXPacker::load(store);
store >> label;
store >> font;
store >> textColor;
}
}
|