From: Richard K. <ric...@us...> - 2005-05-25 22:06:50
|
Update of /cvsroot/actionstep/actionstep/src/org/actionstep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19492 Modified Files: NSView.as Log Message: renamed autoresizingMask constants Index: NSView.as =================================================================== RCS file: /cvsroot/actionstep/actionstep/src/org/actionstep/NSView.as,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** NSView.as 25 May 2005 14:21:52 -0000 1.12 --- NSView.as 25 May 2005 22:06:41 -0000 1.13 *************** *** 50,60 **** public static var NSLineBorder = 3; ! public static var NSViewNotSizable = 0; //The receiver cannot be resized. ! public static var NSViewMinXMargin = 1; //The left margin between the receiver and its superview is flexible. ! public static var NSViewWidthSizable = 2; //The receiverâs width is flexible. ! public static var NSViewMaxXMargin = 4; //The right margin between the receiver and its superview is flexible. ! public static var NSViewMinYMargin = 8; //The bottom margin between the receiver and its superview is flexible. ! public static var NSViewHeightSizable = 16; //The receiverâs height is flexible. ! public static var NSViewMaxYMargin = 32; //The top margin between the receiver and its superview is flexible. // Notifications --- 50,60 ---- public static var NSLineBorder = 3; ! public static var NotSizable = 0; //The receiver cannot be resized. ! public static var MinXMargin = 1; //The left margin between the receiver and its superview is flexible. ! public static var WidthSizable = 2; //The receiverâs width is flexible. ! public static var MaxXMargin = 4; //The right margin between the receiver and its superview is flexible. ! public static var MinYMargin = 8; //The bottom margin between the receiver and its superview is flexible. ! public static var HeightSizable = 16; //The receiverâs height is flexible. ! public static var MaxYMargin = 32; //The top margin between the receiver and its superview is flexible. // Notifications *************** *** 103,107 **** m_autoresizesSubviews = true; ! m_autoresizingMask = NSViewNotSizable; m_mcDepth = 10; --- 103,107 ---- m_autoresizesSubviews = true; ! m_autoresizingMask = NotSizable; m_mcDepth = 10; |