[Hdrflow-svn] SF.net SVN: hdrflow: [243] trunk/app/HDRFlow
Status: Pre-Alpha
Brought to you by:
glslang
From: <gl...@us...> - 2007-08-12 22:53:36
|
Revision: 243 http://hdrflow.svn.sourceforge.net/hdrflow/?rev=243&view=rev Author: glslang Date: 2007-08-12 15:53:34 -0700 (Sun, 12 Aug 2007) Log Message: ----------- + add rendering order and source popups to viewer drawer Modified Paths: -------------- trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib trunk/app/HDRFlow/English.lproj/MainMenu.nib/keyedobjects.nib trunk/app/HDRFlow/HDRFlowController.h trunk/app/HDRFlow/HDRFlowController.mm Modified: trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib =================================================================== --- trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib 2007-08-12 21:11:42 UTC (rev 242) +++ trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib 2007-08-12 22:53:34 UTC (rev 243) @@ -15,9 +15,9 @@ <string>446.1</string> <key>IBOpenObjects</key> <array> + <integer>266</integer> + <integer>29</integer> <integer>21</integer> - <integer>29</integer> - <integer>266</integer> </array> <key>IBSystem Version</key> <string>8R2218</string> Modified: trunk/app/HDRFlow/English.lproj/MainMenu.nib/keyedobjects.nib =================================================================== (Binary files differ) Modified: trunk/app/HDRFlow/HDRFlowController.h =================================================================== --- trunk/app/HDRFlow/HDRFlowController.h 2007-08-12 21:11:42 UTC (rev 242) +++ trunk/app/HDRFlow/HDRFlowController.h 2007-08-12 22:53:34 UTC (rev 243) @@ -19,6 +19,8 @@ { NSMutableArray* channels; NSMutableArray* alpha; + NSMutableArray* source; + NSMutableArray* order; NSMutableArray* lut; ScriptEditorController* scriptEditor; Modified: trunk/app/HDRFlow/HDRFlowController.mm =================================================================== --- trunk/app/HDRFlow/HDRFlowController.mm 2007-08-12 21:11:42 UTC (rev 242) +++ trunk/app/HDRFlow/HDRFlowController.mm 2007-08-12 22:53:34 UTC (rev 243) @@ -51,6 +51,16 @@ [ alpha addObject: [ [ NSString alloc ] initWithString: @"Green" ] ]; [ alpha addObject: [ [ NSString alloc ] initWithString: @"Blue" ] ]; + source = [ [ NSMutableArray alloc ] init ]; + [ source addObject: [ [ NSString alloc ] initWithString: @"A" ] ]; + [ source addObject: [ [ NSString alloc ] initWithString: @"B" ] ]; + [ source addObject: [ [ NSString alloc ] initWithString: @"AB" ] ]; + + order = [ [ NSMutableArray alloc ] init ]; + [ order addObject: [ [ NSString alloc ] initWithString: @"Top to Bottom" ] ]; + [ order addObject: [ [ NSString alloc ] initWithString: @"Left to Right" ] ]; + [ order addObject: [ [ NSString alloc ] initWithString: @"Spiral" ] ]; + lut = [ [ NSMutableArray alloc ] init ]; [ lut addObject: [ [ NSString alloc ] initWithString: @"sRGB" ] ]; [ lut addObject: [ [ NSString alloc ] initWithString: @"Linear" ] ]; @@ -62,6 +72,9 @@ [ channels release ]; [ alpha release ]; + [ source release ]; + [ order release ]; + [ lut release ]; [ scriptEditor dealloc ]; [ super dealloc ]; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |