From 227d06128b74ef78b8268e18dabe454469b65cc8 Mon Sep 17 00:00:00 2001 From: mickeyl Date: Wed, 02 Feb 2005 15:23:01 +0000 Subject: first work on input system abstractions --- (limited to 'examples') diff --git a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp index 89209a7..5450966 100644 --- a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp +++ b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp @@ -1,3 +1,70 @@ +/* +                 This file is part of the Opie Project + =. (C) 2005 Michael 'Mickey' Lauer + .=l. +           .>+-= + _;:,     .>    :=|. This program is free software; you can +.> <`_,   >  .   <= redistribute it and/or modify it under +:`=1 )Y*s>-.--   : the terms of the GNU Library General Public +.="- .-=="i,     .._ License as published by the Free Software + - .   .-<_>     .<> Foundation; either version 2 of the License, +     ._= =}       : or (at your option) any later version. +    .%`+i>       _;_. +    .i_,=:_.      -`: PARTICULAR PURPOSE. See the GNU +..}^=.=       =       ; Library General Public License for more +++=   -.     .`     .: details. + :     =  ...= . :.=- + -.   .:....=;==+<; You should have received a copy of the GNU +  -_. . .   )=.  = Library General Public License along with +    --        :-=` this library; see the file COPYING.LIB. + If not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. +*/ + +#include +#include + +using namespace Opie::Core; + +#include +#include +#include +#include +#include + +#if 1 + +int main( int argc, char** argv ) +{ + OInputSystem* sys = OInputSystem::instance(); + OInputSystem::DeviceIterator it = sys->iterator(); + + OInputDevice* dev = 0; + + while ( it.current() ) + { + odebug << "DEMO: OInputSystem contains Device '" << it.current()->name() << "'" << oendl; + + dev = it.current(); + + odebug << "========================================" + << "\nDevice: " << dev->name() + << "\nName: " << dev->identity() + << "\nPath: " << dev->path() + << "\nUniq: " << dev->uniq() + << oendl; + + ++it; + } +} + +#else + #include #include #include @@ -248,3 +315,4 @@ hell: exit( EXIT_FAILURE ); } +#endif \ No newline at end of file -- cgit v0.9.0.2