summaryrefslogtreecommitdiff
path: root/examples/opiecore
Side-by-side diff
Diffstat (limited to 'examples/opiecore') (more/less context) (show whitespace changes)
-rw-r--r--examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp
index 6c95048..b49df99 100644
--- a/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp
+++ b/examples/opiecore/oinputsystemdemo/oinputsystemdemo.cpp
@@ -65,2 +65,4 @@ int main( int argc, char** argv )
if ( dev->hasFeature( OInputDevice::Miscellaneous ) ) features += "[ x ]"; else features += "[ ]";
+ features += QString( "\nSwitches: " );
+ if ( dev->hasFeature( OInputDevice::Switches ) ) features += "[ x ]"; else features += "[ ]";
features += QString( "\nLeds: " );
@@ -95,2 +97,4 @@ int main( int argc, char** argv )
odebug << "Global key mask: " << dev->globalKeyMask() << oendl;
+ odebug << "Global switch mask: " << dev->globalSwitchMask() << oendl;
+