Skip to content

Commit

Permalink
Updated licenses -- replaced old / outdated. Significant departure fr…
Browse files Browse the repository at this point in the history
…om previous related work.
  • Loading branch information
bakercp committed Sep 10, 2012
1 parent 7f7704b commit 028e2e8
Show file tree
Hide file tree
Showing 52 changed files with 1,299 additions and 417 deletions.
6 changes: 6 additions & 0 deletions example-basic/BasicExample.xcodeproj/project.pbxproj
Expand Up @@ -51,6 +51,7 @@
FDC27AEA14BB9A3C00BB6C99 /* ofxMuiNumberData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDC27AE814BB9A3A00BB6C99 /* ofxMuiNumberData.cpp */; };
FDC5067C152A3F0B00FE8B45 /* ofxMuiFont.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDC5067A152A3F0B00FE8B45 /* ofxMuiFont.cpp */; };
FDD17E1D15FDB569000144C1 /* ofxRectangleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDD17E1115FDB569000144C1 /* ofxRectangleUtils.cpp */; };
FDFC9DF415FE9C7B00EDD797 /* ofxMuiQuad.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FDFC9DF315FE9C7B00EDD797 /* ofxMuiQuad.cpp */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand Down Expand Up @@ -162,6 +163,8 @@
FDC5067B152A3F0B00FE8B45 /* ofxMuiFont.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxMuiFont.h; sourceTree = "<group>"; };
FDD17E1115FDB569000144C1 /* ofxRectangleUtils.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxRectangleUtils.cpp; sourceTree = "<group>"; };
FDD17E1215FDB569000144C1 /* ofxRectangleUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ofxRectangleUtils.h; sourceTree = "<group>"; };
FDFC9DF215FE9C6A00EDD797 /* ofxMuiQuad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ofxMuiQuad.h; sourceTree = "<group>"; };
FDFC9DF315FE9C7B00EDD797 /* ofxMuiQuad.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxMuiQuad.cpp; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -359,6 +362,8 @@
FD1D68CF13DDDD4D0096FAB8 /* ofxMuiNumberBox.h */,
FDB57E7D13F9BF9B002EF33E /* ofxMuiWindow.cpp */,
FDB57E7F13F9BFC3002EF33E /* ofxMuiWindow.h */,
FDFC9DF215FE9C6A00EDD797 /* ofxMuiQuad.h */,
FDFC9DF315FE9C7B00EDD797 /* ofxMuiQuad.cpp */,
);
path = impl;
sourceTree = "<group>";
Expand Down Expand Up @@ -552,6 +557,7 @@
FD217A7514E0E50C00E48401 /* ofxMuiTrueTypeFont.cpp in Sources */,
FDC5067C152A3F0B00FE8B45 /* ofxMuiFont.cpp in Sources */,
FDD17E1D15FDB569000144C1 /* ofxRectangleUtils.cpp in Sources */,
FDFC9DF415FE9C7B00EDD797 /* ofxMuiQuad.cpp in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
31 changes: 23 additions & 8 deletions src/defaults/ofxMuiConstants.h
@@ -1,11 +1,26 @@
//
// ofxMuiConstants.h
// BasicExample
//
// Created by Christopher Baker on 7/21/11.
// Copyright 2011 School of the Art Institute of Chicago. All rights reserved.
//

/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#pragma once

Expand Down
23 changes: 23 additions & 0 deletions src/defaults/ofxMuiDefaults.cpp
@@ -1,3 +1,26 @@
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#include "ofxMuiDefaults.h"

Expand Down
30 changes: 23 additions & 7 deletions src/defaults/ofxMuiDefaults.h
@@ -1,10 +1,26 @@
//
// ofxMuiObjectDefaults.h
// BasicExample
//
// Created by Christopher Baker on 7/24/11.
// Copyright 2011 School of the Art Institute of Chicago. All rights reserved.
//
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#pragma once

Expand Down
24 changes: 24 additions & 0 deletions src/helpers/ofxMuiBox.cpp
@@ -1,3 +1,27 @@
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#include "ofxMuiBox.h"

//--------------------------------------------------------------
Expand Down
30 changes: 23 additions & 7 deletions src/helpers/ofxMuiBox.h
@@ -1,10 +1,26 @@
//
// ofxMuiBox.h
// emptyExample
//
// Created by Christopher P. Baker on 7/11/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#pragma once

Expand Down
24 changes: 24 additions & 0 deletions src/helpers/ofxMuiEnabler.cpp
@@ -1,3 +1,27 @@
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#include "ofxMuiEnabler.h"

//--------------------------------------------------------------
Expand Down
30 changes: 23 additions & 7 deletions src/helpers/ofxMuiEnabler.h
@@ -1,10 +1,26 @@
//
// ofxMuiEnabler.h
// emptyExample
//
// Created by Christopher Baker on 7/10/11.
// Copyright 2011 Kitchen Budapest. All rights reserved.
//
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#pragma once

Expand Down
25 changes: 24 additions & 1 deletion src/helpers/ofxMuiFont.cpp
@@ -1,5 +1,28 @@
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#include "ofxMuiFont.h"
//--------------------------

#include "ft2build.h"
#include "freetype2/freetype/freetype.h"
Expand Down
25 changes: 24 additions & 1 deletion src/helpers/ofxMuiFont.h
@@ -1,5 +1,28 @@
#pragma once
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#pragma once

#include <vector>
#include "ofPoint.h"
Expand Down
30 changes: 23 additions & 7 deletions src/helpers/ofxMuiKeyMapper.cpp
@@ -1,10 +1,26 @@
//
// ofxMuiKeyMapper.cpp
// emptyExample
//
// Created by Christopher Baker on 7/15/11.
// Copyright 2011 Kitchen Budapest. All rights reserved.
//
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#include "ofxMuiKeyMapper.h"

Expand Down
30 changes: 23 additions & 7 deletions src/helpers/ofxMuiKeyMapper.h
@@ -1,10 +1,26 @@
//
// ofxMuiKeyMapper.h
// emptyExample
//
// Created by Christopher Baker on 7/15/11.
// Copyright 2011 Kitchen Budapest. All rights reserved.
//
/*==============================================================================
Copyright (c) 2009-2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
==============================================================================*/

#pragma once

Expand Down

0 comments on commit 028e2e8

Please sign in to comment.