forked from x29a/qTUIO
Implementation of an interface connecting TUIO messages and QT events
License
wathek/qTUIO
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
master
Could not load branches
Nothing to show
Could not load tags
Nothing to show
{{ refName }}
default
Code
This branch is 1 commit ahead, 4 commits behind x29a:master.
Contribute
-
This branch is 1 commit ahead of x29a:master.
Open a pull request to contribute your changes upstream.
1. Introduction 2. Usage 3. Building the library 4. Contact 1. Introduction qTUIO is a library which implements a TUIO listener on a local UDP socket and forwards the events into the internal eventsystem of Qt. 2. Usage - build the library (see steps after this chapter) - put library and header into convinient places (since there is no make install yet you have to manually make the files visible to the system). This could be your application directory, or the systemdirectory for libraries and includes. - Modify you main.cpp to start a qTUIO thread (see examples) which sends the events to a specific target. - build your program while linking against the library. If you use qmake you can also check the examples - run your programm and provide it with TUIO packets 3. Building the library Linux: - check out the latest version of qTUIO $> git clone git://github.com/x29a/qTUIO.git - change into the src/ directory and generate a Makefile with qmake $> cd qTUIO/src && qmake - make the library $> make - copy the library to a path of your choice and include it in LD_LIBRARY_PATH $> mkdir -p /usr/local/lib/qTUIO $> cp -r ../lib/* /usr/local/lib/qTUIO$> export LD_LIBRARY_PATH="/usr/local/lib/qTUIO:$ {LD_LIBRARY_PATH}" 4. Contact Please feel free to contact us with any feedback, ideas or problems! - Irc: Channel #qt-tuio on Server irc.freenode.org - Email: -x29a: 0.x29a.0@googlemail.com
About
Implementation of an interface connecting TUIO messages and QT events
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- C++ 58.7%
- C 41.2%
- Shell 0.1%