summaryrefslogtreecommitdiff
authorocheong <ocheong>2003-10-09 10:39:30 (UTC)
committer ocheong <ocheong>2003-10-09 10:39:30 (UTC)
commitc37ffc2854d1c968eb28d4ae185b5c64877c6e9d (patch) (unidiff)
treea8754364ee281b1decff519bf723723b5057ee2f
parent67f75e91f3fa7f21df2e19749a6ad53e9d237f8b (diff)
downloadopie-c37ffc2854d1c968eb28d4ae185b5c64877c6e9d.zip
opie-c37ffc2854d1c968eb28d4ae185b5c64877c6e9d.tar.gz
opie-c37ffc2854d1c968eb28d4ae185b5c64877c6e9d.tar.bz2
Added definitions for Yopy model, vendor, and hardkeys.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/libopie/odevice.h b/libopie/odevice.h
index d8ad135..2a5e494 100644
--- a/libopie/odevice.h
+++ b/libopie/odevice.h
@@ -71,6 +71,14 @@ enum OModel {
71 71
72 Model_Ramses_All = ( Model_Ramses | 0xffffff ), 72 Model_Ramses_All = ( Model_Ramses | 0xffffff ),
73 Model_Ramses_MNCI = ( Model_Ramses | 0x000001 ), 73 Model_Ramses_MNCI = ( Model_Ramses | 0x000001 ),
74
75 Model_Yopy = ( 5 << 24 ),
76
77 Model_Yopy_All = ( Model_Yopy | 0xffffff ),
78 Model_Yopy_3000 = ( Model_Yopy | 0x000001 ),
79 Model_Yopy_3500 = ( Model_Yopy | 0x000002 ),
80 Model_Yopy_3700 = ( Model_Yopy | 0x000003 ),
81
74}; 82};
75 83
76/** 84/**
@@ -83,6 +91,7 @@ enum OVendor {
83 Vendor_Sharp, 91 Vendor_Sharp,
84 Vendor_SIEMENS, 92 Vendor_SIEMENS,
85 Vendor_MundN, 93 Vendor_MundN,
94 Vendor_GMate,
86}; 95};
87 96
88/** 97/**
@@ -93,7 +102,8 @@ enum OSystem {
93 102
94 System_Familiar, 103 System_Familiar,
95 System_Zaurus, 104 System_Zaurus,
96 System_OpenZaurus 105 System_OpenZaurus,
106 System_Linupy,
97}; 107};
98 108
99enum OLedState { 109enum OLedState {
@@ -118,6 +128,9 @@ enum OHardKey {
118 HardKey_Record = Qt::Key_F24, 128 HardKey_Record = Qt::Key_F24,
119 HardKey_Suspend = Qt::Key_F34, 129 HardKey_Suspend = Qt::Key_F34,
120 HardKey_Backlight = Qt::Key_F35, 130 HardKey_Backlight = Qt::Key_F35,
131 HardKey_Action = Qt::Key_F10,
132 HardKey_OK = Qt::Key_F11,
133 HardKey_End = Qt::Key_F12,
121}; 134};
122 135
123enum ODirection { 136enum ODirection {