[Hdrflow-svn] SF.net SVN: hdrflow: [190] trunk/app/HDRFlow
Status: Pre-Alpha
Brought to you by:
glslang
From: <gl...@us...> - 2007-07-16 21:47:54
|
Revision: 190 http://hdrflow.svn.sourceforge.net/hdrflow/?rev=190&view=rev Author: glslang Date: 2007-07-16 14:47:28 -0700 (Mon, 16 Jul 2007) Log Message: ----------- + initial fullscreen code Modified Paths: -------------- trunk/app/HDRFlow/English.lproj/MainMenu.nib/classes.nib 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.m Modified: trunk/app/HDRFlow/English.lproj/MainMenu.nib/classes.nib =================================================================== --- trunk/app/HDRFlow/English.lproj/MainMenu.nib/classes.nib 2007-07-16 20:59:23 UTC (rev 189) +++ trunk/app/HDRFlow/English.lproj/MainMenu.nib/classes.nib 2007-07-16 21:47:28 UTC (rev 190) @@ -2,9 +2,10 @@ IBClasses = ( {CLASS = CustomOpenGLView; LANGUAGE = ObjC; SUPERCLASS = NSView; }, { - ACTIONS = {fileOpen = id; scriptEditor = id; }; + ACTIONS = {fileOpen = id; scriptEditor = id; viewFullscreen = id; }; CLASS = HDRFlowController; LANGUAGE = ObjC; + OUTLETS = {OpenGLView = ViewportOpenGLView; }; SUPERCLASS = NSObject; }, {CLASS = ViewportOpenGLView; LANGUAGE = ObjC; SUPERCLASS = CustomOpenGLView; } Modified: trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib =================================================================== --- trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib 2007-07-16 20:59:23 UTC (rev 189) +++ trunk/app/HDRFlow/English.lproj/MainMenu.nib/info.nib 2007-07-16 21:47:28 UTC (rev 190) @@ -3,11 +3,11 @@ <plist version="1.0"> <dict> <key>IBDocumentLocation</key> - <string>66 363 356 240 0 0 1440 878 </string> + <string>36 72 356 240 0 0 1440 878 </string> <key>IBEditorPositions</key> <dict> <key>29</key> - <string>2 829 290 44 0 0 1440 878 </string> + <string>2 829 338 44 0 0 1440 878 </string> </dict> <key>IBFramework Version</key> <string>446.1</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-07-16 20:59:23 UTC (rev 189) +++ trunk/app/HDRFlow/HDRFlowController.h 2007-07-16 21:47:28 UTC (rev 190) @@ -9,10 +9,12 @@ // forward declarations @class ScriptEditorController; +@class ViewportOpenGLView; @interface HDRFlowController : NSObject { ScriptEditorController* scriptEditor; + IBOutlet ViewportOpenGLView* OpenGLView; } - ( BOOL ) acceptsFirstResponder; @@ -21,5 +23,6 @@ - ( IBAction ) fileOpen: ( id ) sender; - ( IBAction ) scriptEditor: ( id ) sender; +- ( IBAction ) viewFullscreen: ( id ) sender; @end Modified: trunk/app/HDRFlow/HDRFlowController.m =================================================================== --- trunk/app/HDRFlow/HDRFlowController.m 2007-07-16 20:59:23 UTC (rev 189) +++ trunk/app/HDRFlow/HDRFlowController.m 2007-07-16 21:47:28 UTC (rev 190) @@ -45,6 +45,10 @@ [ scriptEditor showWindow: self ]; } +- ( IBAction ) viewFullscreen: ( id ) sender +{ +} + - ( BOOL ) acceptsFirstResponder { return YES; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |