Skip to content

Commit

Permalink
first commit for ofxControlPanel - events hooked up still needs cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ofTheo committed Mar 31, 2010
0 parents commit 930339b
Show file tree
Hide file tree
Showing 57 changed files with 6,492 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@
*.mode1v3
*.pbxuser
build/
obj/
*.o
*.app/
1,262 changes: 1,262 additions & 0 deletions ofxControlPanelDemo.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions openFrameworks-Info.plist
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.openFrameworks</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.0</string>
</dict>
</plist>
16 changes: 16 additions & 0 deletions src/main.cpp
@@ -0,0 +1,16 @@
#include "ofMain.h"
#include "testApp.h"


//========================================================================
int main( ){

ofSetupOpenGL(960,768, OF_WINDOW); // <-------- setup the GL context

// this kicks off the running of my app
// can be OF_WINDOW or OF_FULLSCREEN
// pass in width and height too:

ofRunApp(new testApp());

}
47 changes: 47 additions & 0 deletions src/ofAddons.h
@@ -0,0 +1,47 @@
// I just put this here because I couldn't be bothered to update all the files with
// the new way of using Addons yet. Pretty sure this isn't causing the problem.

//-------------------------------------------- openCV
#ifdef OF_ADDON_USING_OFXOPENCV
#include "ofxCvMain.h"
#endif

//-------------------------------------------- obj loader
#ifdef OF_ADDON_USING_OFXOBJLOADER
#include "ofxObjLoader.h"
#endif

//-------------------------------------------- dir list
#ifdef OF_ADDON_USING_OFXDIRLIST
#include "ofxDirList.h"
#endif

//-------------------------------------------- vector math
#ifdef OF_ADDON_USING_OFXVECTORMATH
#include "ofxVectorMath.h"
#endif

//-------------------------------------------- network
#ifdef OF_ADDON_USING_OFXNETWORK
#include "ofxNetwork.h"
#endif

//-------------------------------------------- vector graphics
#ifdef OF_ADDON_USING_OFXVECTORGRAPHICS
#include "ofxVectorGraphics.h"
#endif

//-------------------------------------------- OSC
#ifdef OF_ADDON_USING_OFXOSC
#include "ofxOsc.h"
#endif

//-------------------------------------------- ofthread
#ifdef OF_ADDON_USING_OFXTHREAD
#include "ofxThread.h"
#endif

//-------------------------------------------- ofXML
#ifdef OF_ADDON_USING_OFXXMLSETTINGS
#include "ofxXmlSettings.h"
#endif

0 comments on commit 930339b

Please sign in to comment.