├── .gitignore ├── README.md ├── example-basic ├── .cproject ├── .project ├── Makefile ├── addons.make ├── config.make ├── example-basic.qbs ├── qtcreator.qbs ├── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── template.xml └── src ├── ofxInputField.cpp └── ofxInputField.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/README.md -------------------------------------------------------------------------------- /example-basic/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/.cproject -------------------------------------------------------------------------------- /example-basic/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/.project -------------------------------------------------------------------------------- /example-basic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/Makefile -------------------------------------------------------------------------------- /example-basic/addons.make: -------------------------------------------------------------------------------- 1 | ofxInputField 2 | ofxGui 3 | -------------------------------------------------------------------------------- /example-basic/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/config.make -------------------------------------------------------------------------------- /example-basic/example-basic.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/example-basic.qbs -------------------------------------------------------------------------------- /example-basic/qtcreator.qbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/qtcreator.qbs -------------------------------------------------------------------------------- /example-basic/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/src/main.cpp -------------------------------------------------------------------------------- /example-basic/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/src/ofApp.cpp -------------------------------------------------------------------------------- /example-basic/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/src/ofApp.h -------------------------------------------------------------------------------- /example-basic/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/example-basic/template.xml -------------------------------------------------------------------------------- /src/ofxInputField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/src/ofxInputField.cpp -------------------------------------------------------------------------------- /src/ofxInputField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxInputField/HEAD/src/ofxInputField.h --------------------------------------------------------------------------------