mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Untabify, add shadow keys for vert, color, horiz
This commit is contained in:
parent
468030a982
commit
702f7bb9af
1 changed files with 13 additions and 8 deletions
|
@ -325,6 +325,11 @@ static NSArray *XmlBoolDefaultYes = nil;
|
|||
@"middleViews", @"NSStackViewMiddleContainer",
|
||||
@"endViews", @"NSStackViewEndContainer",
|
||||
@"collectionViewLayout", @"NSCollectionViewLayout",
|
||||
@"shadow", @"NSViewShadow",
|
||||
@"blurRadius", @"NSShadowBlurRadius",
|
||||
@"width", @"NSShadowHoriz",
|
||||
@"height", @"NSShadowVert",
|
||||
@"color", @"NSShadowColor",
|
||||
nil];
|
||||
RETAIN(XmlKeyMapTable);
|
||||
|
||||
|
@ -870,12 +875,12 @@ didStartElement: (NSString*)elementName
|
|||
// Need to store element for making the connections...
|
||||
[self addConnection: element];
|
||||
}
|
||||
/*
|
||||
/*
|
||||
else if ([XmlConstraintRecordTags containsObject: elementName])
|
||||
{
|
||||
[self objectForXib: element]; // decode the constraint...
|
||||
}
|
||||
*/
|
||||
*/
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -3186,13 +3191,13 @@ didStartElement: (NSString*)elementName
|
|||
if (toolTipString != nil)
|
||||
{
|
||||
if ([object respondsToSelector: @selector(setToolTip:)])
|
||||
{
|
||||
[object setToolTip: toolTipString];
|
||||
}
|
||||
{
|
||||
[object setToolTip: toolTipString];
|
||||
}
|
||||
else if ([object respondsToSelector: @selector(setHeaderToolTip:)])
|
||||
{
|
||||
[object setHeaderToolTip: toolTipString];
|
||||
}
|
||||
{
|
||||
[object setHeaderToolTip: toolTipString];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue