Changeset 55:fa05d8dd30a2 in xplra for src/client/c/hu
- Timestamp:
- 02/16/13 18:14:55 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/client/c/hu/varadiistvan/xplra
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/client/c/hu/varadiistvan/xplra/xplra.cc
r40 r55 1309 1309 //------------------------------------------------------------------------------ 1310 1310 1311 extern "C" int xplra_register_hotkeys(int connectionID, 1312 const uint16_t* codes, size_t length) 1313 { 1314 Connection* connection = ConnectionSlot::getValue(connectionID); 1315 if (connection==0) return -1; 1316 1317 try { 1318 connection->registerHotkeys(codes, length); 1319 return 0; 1320 } catch(...) { 1321 connection->handleException(); 1322 return -1; 1323 } 1324 } 1325 1326 /*----------------------------------------------------------------------------*/ 1327 1328 extern "C" int xplra_query_hotkeys(int connectionID, 1329 uint8_t* states, size_t length) 1330 { 1331 Connection* connection = ConnectionSlot::getValue(connectionID); 1332 if (connection==0) return -1; 1333 1334 try { 1335 connection->queryHotkeys(states, length); 1336 return 0; 1337 } catch(...) { 1338 connection->handleException(); 1339 return -1; 1340 } 1341 } 1342 1343 /*----------------------------------------------------------------------------*/ 1344 1345 extern "C" int xplra_unregister_hotkeys(int connectionID) 1346 { 1347 Connection* connection = ConnectionSlot::getValue(connectionID); 1348 if (connection==0) return -1; 1349 1350 try { 1351 connection->unregisterHotkeys(); 1352 return 0; 1353 } catch(...) { 1354 connection->handleException(); 1355 return -1; 1356 } 1357 } 1358 1359 //------------------------------------------------------------------------------ 1360 //------------------------------------------------------------------------------ 1361 1311 1362 extern "C" int xplra_disconnect(int connectionID) 1312 1363 { -
src/client/c/hu/varadiistvan/xplra/xplra.h
r40 r55 99 99 /*----------------------------------------------------------------------------*/ 100 100 101 /** Hotkey modifier: Shift */ 102 #define HOTKEY_MODIFIER_SHIFT 0x01 103 104 /** Hotkey modifier: Control */ 105 #define HOTKEY_MODIFIER_CONTROL 0x02 106 107 /*----------------------------------------------------------------------------*/ 108 101 109 #define INVALID_DATAREF_ID ((size_t)-1) 102 110 … … 751 759 752 760 /** 761 * Register the given hotkey codes for listening. If there is an 762 * existing set of hotkeys registered, those will be overwritten. 763 */ 764 int xplra_register_hotkeys(int connectionID, 765 const uint16_t* codes, size_t length); 766 767 /*----------------------------------------------------------------------------*/ 768 769 /** 770 * Query the registered hotkeys whether they were pressed. 771 */ 772 int xplra_query_hotkeys(int connectionID, uint8_t* states, size_t length); 773 774 /*----------------------------------------------------------------------------*/ 775 776 /** 777 * Unregister the hotkeys. 778 */ 779 int xplra_unregister_hotkeys(int connectionID); 780 781 /*----------------------------------------------------------------------------*/ 782 /*----------------------------------------------------------------------------*/ 783 784 /** 753 785 * Destroy the connection with the given ID. 754 786 *
Note:
See TracChangeset
for help on using the changeset viewer.