author | mickeyl <mickeyl> | 2005-02-04 16:51:11 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-02-04 16:51:11 (UTC) |
commit | 276022cd2a84f531bbf727c34d76420d8195512d (patch) (unidiff) | |
tree | 31c15ddb1cbed5e5a0db43e32af9066b424bab8c /examples | |
parent | 5398d63dbd79eb166ab1c36517f60c6e850a2ca7 (diff) | |
download | opie-276022cd2a84f531bbf727c34d76420d8195512d.zip opie-276022cd2a84f531bbf727c34d76420d8195512d.tar.gz opie-276022cd2a84f531bbf727c34d76420d8195512d.tar.bz2 |
show global key state
-rw-r--r-- | examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp index a9c0fd2..6c95048 100644 --- a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp +++ b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp | |||
@@ -83,6 +83,16 @@ int main( int argc, char** argv ) | |||
83 | << "\nUniq: " << dev->uniq() | 83 | << "\nUniq: " << dev->uniq() |
84 | << features << "\n" | 84 | << features << "\n" |
85 | << oendl; | 85 | << oendl; |
86 | |||
87 | if ( dev->isHeld( OInputDevice::Key_LEFTSHIFT ) ) | ||
88 | odebug << "Left Shift is being held." << oendl; | ||
89 | else odebug << "Left Shift is _not_ being held." << oendl; | ||
90 | |||
91 | if ( dev->isHeld( OInputDevice::Button_LEFT ) ) | ||
92 | odebug << "Left Mouse Button is being held." << oendl; | ||
93 | else odebug << "Left Mouse Button is _not_ being held." << oendl; | ||
94 | |||
95 | odebug << "Global key mask: " << dev->globalKeyMask() << oendl; | ||
86 | 96 | ||
87 | ++it; | 97 | ++it; |
88 | } | 98 | } |