├── .gitignore ├── README.md ├── addon_config.mk ├── docs └── Doxyfile ├── example_font_manager ├── Makefile ├── addons.make ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── libs └── ofxText │ ├── include │ └── ofx │ │ └── Text │ │ └── FontManager.h │ └── src │ ├── FontManager_LINUX.cpp │ ├── FontManager_OSX.mm │ └── FontManager_WIN32.cc └── src └── ofxFont.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/addon_config.mk -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /example_font_manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/example_font_manager/Makefile -------------------------------------------------------------------------------- /example_font_manager/addons.make: -------------------------------------------------------------------------------- 1 | ofxFont 2 | -------------------------------------------------------------------------------- /example_font_manager/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/example_font_manager/config.make -------------------------------------------------------------------------------- /example_font_manager/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/example_font_manager/src/main.cpp -------------------------------------------------------------------------------- /example_font_manager/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/example_font_manager/src/ofApp.cpp -------------------------------------------------------------------------------- /example_font_manager/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/example_font_manager/src/ofApp.h -------------------------------------------------------------------------------- /libs/ofxText/include/ofx/Text/FontManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/libs/ofxText/include/ofx/Text/FontManager.h -------------------------------------------------------------------------------- /libs/ofxText/src/FontManager_LINUX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/libs/ofxText/src/FontManager_LINUX.cpp -------------------------------------------------------------------------------- /libs/ofxText/src/FontManager_OSX.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/libs/ofxText/src/FontManager_OSX.mm -------------------------------------------------------------------------------- /libs/ofxText/src/FontManager_WIN32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/libs/ofxText/src/FontManager_WIN32.cc -------------------------------------------------------------------------------- /src/ofxFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bakercp/ofxFont/HEAD/src/ofxFont.h --------------------------------------------------------------------------------