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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
|
/* -*-objc-*-
GSMarkupTagView.m
Copyright (C) 2002 Free Software Foundation, Inc.
Author: Nicola Pero <n.pero@mi.flashnet.it>
Date: March 2002
This file is part of GNUstep Renaissance
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this library; see the file COPYING.LIB.
If not, write to the Free Software Foundation,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <TagCommonInclude.h>
#include "GSMarkupTagView.h"
#include "GSAutoLayoutDefaults.h"
#ifndef GNUSTEP
# include <Foundation/Foundation.h>
# include <AppKit/AppKit.h>
# include "GNUstep.h"
#else
# include <Foundation/NSString.h>
# include <AppKit/NSView.h>
#endif
#include <NSViewSize.h>
@implementation GSMarkupTagView
+ (NSString *) tagName
{
return @"view";
}
+ (Class) platformObjectClass
{
return [NSView class];
}
+ (BOOL) useInstanceOfAttribute
{
return YES;
}
- (id) initPlatformObject: (id)platformObject
{
/* Choose a reasonable size to start with. Starting with a zero
* size is not a good choice as it can easily cause problems of
* subviews getting negative sizes etc. If we have a hardcoded
* size, it's a good idea to use it from the start; if so, we'll
* also skip the -sizeToFitContent later.
*/
NSRect frame = NSMakeRect (0, 0, 100, 100);
NSString *width;
NSString *height;
width = [_attributes objectForKey: @"width"];
if (width != nil)
{
float w = [width floatValue];
if (w > 0)
{
frame.size.width = w;
}
}
height = [_attributes objectForKey: @"height"];
if (height != nil)
{
float h = [height floatValue];
if (h > 0)
{
frame.size.height = h;
}
}
platformObject = [platformObject initWithFrame: frame];
/* nextKeyView, previousKeyView are outlets :-), done
* automatically. */
return platformObject;
}
/* This is done at init time, but should be done *after* all other
* initialization - so it is in a separate method which subclasses
* can/must call at the end of their initPlatformObject: method. */
- (id) postInitPlatformObject: (id)platformObject
{
/* If no width or no height is specified, we need to use
* -sizeToFitContent to choose a good size.
*/
if (([_attributes objectForKey: @"width"] == nil)
|| ([_attributes objectForKey: @"height"] == nil))
{
[(NSView *)platformObject sizeToFitContent];
}
/* Now set the hardcoded frame if any. */
{
NSRect frame = [platformObject frame];
NSString *x, *y, *width, *height;
BOOL needToSetFrame = NO;
x = [_attributes objectForKey: @"x"];
if (x != nil)
{
frame.origin.x = [x floatValue];
needToSetFrame = YES;
}
y = [_attributes objectForKey: @"y"];
if (y != nil)
{
frame.origin.y = [y floatValue];
needToSetFrame = YES;
}
width = [_attributes objectForKey: @"width"];
if (width != nil)
{
float w = [width floatValue];
if (w > 0)
{
frame.size.width = w;
needToSetFrame = YES;
}
}
height = [_attributes objectForKey: @"height"];
if (height != nil)
{
float h = [height floatValue];
if (h > 0)
{
frame.size.height = h;
needToSetFrame = YES;
}
}
if (needToSetFrame)
{
[platformObject setFrame: frame];
}
}
/* We don't normally use autoresizing masks, except in special
* cases: mostly stuff contained directly inside NSBox objects. In
* that case, any changes in the size of the NSBox will propagate to
* the object inside it via its autoresizing mask.
*
* So we want to convert the autolayout flags of the view into a
* corresponding autoresizing mask so that it all works as expected
* when used inside a NSBox - ie, if you set halign="center" into an
* NSBox that is itself set to expand, then when the NSBox expands,
* the view inside is centered.
*
* Please note that if we are the window's content view, this could
* be a problem because on Apple Mac OS X the autoresizing mask gets
* used (in the vertical direction) and might cause the view to
* overwrite the window's titlebar (tested with 10.4)! For that
* reason, in GSMarkupTagWindow we always set the autoresizing mask
* of a window's content view to NSViewWidthSizable |
* NSViewHeightSizable.
*/
{
unsigned int autoresizingMask = 0;
{
/* Read the halign from the tag attributes, and if nothing is
* found, from the default for that view. */
int autoLayoutHorizontalAlignment = 0;
autoLayoutHorizontalAlignment = [self gsAutoLayoutHAlignment];
if (autoLayoutHorizontalAlignment == 255)
{
autoLayoutHorizontalAlignment = [platformObject
autolayoutDefaultHorizontalAlignment];
}
switch (autoLayoutHorizontalAlignment)
{
case GSAutoLayoutExpand:
case GSAutoLayoutWeakExpand:
autoresizingMask |= NSViewWidthSizable;
break;
case GSAutoLayoutAlignMin:
autoresizingMask |= NSViewMaxXMargin;
break;
case GSAutoLayoutAlignCenter:
autoresizingMask |= NSViewMaxXMargin | NSViewMinXMargin;
break;
case GSAutoLayoutAlignMax:
autoresizingMask |= NSViewMinXMargin;
break;
}
}
{
/* Read the valign from the tag attributes, and if nothing is
* found, from the default for that view. */
int autoLayoutVerticalAlignment = 0;
autoLayoutVerticalAlignment = [self gsAutoLayoutVAlignment];
if (autoLayoutVerticalAlignment == 255)
{
autoLayoutVerticalAlignment = [platformObject
autolayoutDefaultVerticalAlignment];
}
switch (autoLayoutVerticalAlignment)
{
case GSAutoLayoutExpand:
case GSAutoLayoutWeakExpand:
autoresizingMask |= NSViewHeightSizable;
break;
case GSAutoLayoutAlignMin:
autoresizingMask |= NSViewMaxYMargin;
break;
case GSAutoLayoutAlignCenter:
autoresizingMask |= NSViewMaxYMargin | NSViewMinYMargin;
break;
case GSAutoLayoutAlignMax:
autoresizingMask |= NSViewMinYMargin;
break;
}
}
[platformObject setAutoresizingMask: autoresizingMask];
}
/* You can set autoresizing masks if you're trying to build views in the
* old hardcoded size style. Else, it's pretty useless.
*
* Subclasses have each one their own default autoresizing mask. We
* only modify the existing one if a different one is specified in
* the .gsmarkup file. The format for specifying them is as in
* autoresizingMask="hw" for NSViewHeightSizable |
* NSViewWidthSizable, and autoresizingMask="" for nothing,
* autoresizingMask="xXhy" for NSViewMinXMargin | NSViewMaxXMargin |
* NSViewHeightSizable | NSViewMinYMargin.
*/
{
NSString *autoresizingMaskString = [_attributes objectForKey:
@"autoresizingMask"];
if (autoresizingMaskString != nil)
{
int i, count = [autoresizingMaskString length];
unsigned newAutoresizingMask = 0;
for (i = 0; i < count; i++)
{
unichar c = [autoresizingMaskString characterAtIndex: i];
switch (c)
{
case 'h':
newAutoresizingMask |= NSViewHeightSizable;
break;
case 'w':
newAutoresizingMask |= NSViewWidthSizable;
break;
case 'x':
newAutoresizingMask |= NSViewMinXMargin;
break;
case 'X':
newAutoresizingMask |= NSViewMaxXMargin;
break;
case 'y':
newAutoresizingMask |= NSViewMinYMargin;
break;
case 'Y':
newAutoresizingMask |= NSViewMaxYMargin;
break;
default:
break;
}
}
if (newAutoresizingMask != [platformObject autoresizingMask])
{
[platformObject setAutoresizingMask: newAutoresizingMask];
}
}
}
{
/* This attribute is only there for people wanting to use the old
* legacy OpenStep autoresizing system. We ignore it otherwise.
*/
int autoresizesSubviews = [self boolValueForAttribute: @"autoresizesSubviews"];
if (autoresizesSubviews == 0)
{
[platformObject setAutoresizesSubviews: NO];
}
else if (autoresizesSubviews == 1)
{
[platformObject setAutoresizesSubviews: YES];
}
}
if ([self boolValueForAttribute: @"hidden"] == 1)
{
[platformObject setHidden: YES];
}
{
NSString *toolTip = [self localizedStringValueForAttribute: @"toolTip"];
if (toolTip != nil)
{
[platformObject setToolTip: toolTip];
}
}
if (([self class] == [GSMarkupTagView class])
|| [self shouldTreatContentAsSubviews])
{
/* Extract the contents of the tag. Contents are subviews that
* get added to us. This should only be used in special cases
* or when the (legacy) OpenStep autoresizing system is used
* (also, splitviews use it). In all other cases, vbox and hbox
* and similar autoresizing containers should be used.
*/
int i, count = [_content count];
/* Go in the order found in the XML file, so that the list of
* views in the XML file goes from the ones below to the
* ones above.
* Ie, in
* <view id="1">
* <view id="2" />
* <view id="3" />
* </view>
* view 3 appears over view 2.
*/
for (i = 0; i < count; i++)
{
GSMarkupTagView *v = [_content objectAtIndex: i];
NSView *view = [v platformObject];
if (view != nil && [view isKindOfClass: [NSView class]])
{
[platformObject addSubview: view];
}
}
}
return platformObject;
}
/* This is ignored unless it returns YES, in which cases it forces
* loading all content tags as subviews.
*/
- (BOOL) shouldTreatContentAsSubviews
{
return NO;
}
- (int) gsAutoLayoutHAlignment
{
NSString *halign;
if ([self boolValueForAttribute: @"hexpand"] == 1)
{
return GSAutoLayoutExpand;
}
halign = [_attributes objectForKey: @"halign"];
if (halign != nil)
{
if ([halign isEqualToString: @"expand"])
{
return GSAutoLayoutExpand;
}
else if ([halign isEqualToString: @"wexpand"])
{
return GSAutoLayoutWeakExpand;
}
else if ([halign isEqualToString: @"min"])
{
return GSAutoLayoutAlignMin;
}
else if ([halign isEqualToString: @"left"])
{
return GSAutoLayoutAlignMin;
}
else if ([halign isEqualToString: @"center"])
{
return GSAutoLayoutAlignCenter;
}
else if ([halign isEqualToString: @"max"])
{
return GSAutoLayoutAlignMax;
}
else if ([halign isEqualToString: @"right"])
{
return GSAutoLayoutAlignMax;
}
}
return 255;
}
- (int) gsAutoLayoutVAlignment
{
NSString *valign;
if ([self boolValueForAttribute: @"vexpand"] == 1)
{
return GSAutoLayoutExpand;
}
valign = [_attributes objectForKey: @"valign"];
if (valign != nil)
{
if ([valign isEqualToString: @"expand"])
{
return GSAutoLayoutExpand;
}
else if ([valign isEqualToString: @"wexpand"])
{
return GSAutoLayoutWeakExpand;
}
else if ([valign isEqualToString: @"min"])
{
return GSAutoLayoutAlignMin;
}
else if ([valign isEqualToString: @"bottom"])
{
return GSAutoLayoutAlignMin;
}
else if ([valign isEqualToString: @"center"])
{
return GSAutoLayoutAlignCenter;
}
else if ([valign isEqualToString: @"max"])
{
return GSAutoLayoutAlignMax;
}
else if ([valign isEqualToString: @"top"])
{
return GSAutoLayoutAlignMax;
}
}
return 255;
}
@end
|