summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2005-01-23 20:52:18 (UTC)
committer mickeyl <mickeyl>2005-01-23 20:52:18 (UTC)
commitbe26adf324ea0b723cabcd735b0833e16410ceea (patch) (unidiff)
treed196481a0e503fb61ec8fad05d0835b877c186cc
parentab0242ff1bbc40ec8bc38c3cb748a44797ffe3db (diff)
downloadopie-be26adf324ea0b723cabcd735b0833e16410ceea.zip
opie-be26adf324ea0b723cabcd735b0833e16410ceea.tar.gz
opie-be26adf324ea0b723cabcd735b0833e16410ceea.tar.bz2
- consolidate reading hinge sensor into one place
- return proper rotation and direction if hinge sensor not present (like in 2.6 atm.)
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_zaurus.cpp33
-rw-r--r--libopie2/opiecore/device/odevice_zaurus.h2
2 files changed, 10 insertions, 25 deletions
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp
index d3ab63a..b22ee70 100644
--- a/libopie2/opiecore/device/odevice_zaurus.cpp
+++ b/libopie2/opiecore/device/odevice_zaurus.cpp
@@ -421,222 +421,207 @@ int Zaurus::displayBrightnessResolution() const
421{ 421{
422 int res = 1; 422 int res = 1;
423 if (m_embedix) 423 if (m_embedix)
424 { 424 {
425 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_RDWR|O_NONBLOCK ); 425 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_RDWR|O_NONBLOCK );
426 if ( fd ) 426 if ( fd )
427 { 427 {
428 int value = ::ioctl( fd, SHARP_FL_IOCTL_GET_STEP, 0 ); 428 int value = ::ioctl( fd, SHARP_FL_IOCTL_GET_STEP, 0 );
429 ::close( fd ); 429 ::close( fd );
430 return value ? value : res; 430 return value ? value : res;
431 } 431 }
432 } 432 }
433 else 433 else
434 { 434 {
435 int fd = ::open( "/sys/class/backlight/corgi-bl/max_brightness", O_RDONLY|O_NONBLOCK ); 435 int fd = ::open( "/sys/class/backlight/corgi-bl/max_brightness", O_RDONLY|O_NONBLOCK );
436 if ( fd ) 436 if ( fd )
437 { 437 {
438 char buf[100]; 438 char buf[100];
439 if ( ::read( fd, &buf[0], sizeof buf ) ) ::sscanf( &buf[0], "%d", &res ); 439 if ( ::read( fd, &buf[0], sizeof buf ) ) ::sscanf( &buf[0], "%d", &res );
440 ::close( fd ); 440 ::close( fd );
441 } 441 }
442 } 442 }
443 return res; 443 return res;
444} 444}
445 445
446bool Zaurus::setDisplayBrightness( int bright ) 446bool Zaurus::setDisplayBrightness( int bright )
447{ 447{
448 //qDebug( "Zaurus::setDisplayBrightness( %d )", bright ); 448 //qDebug( "Zaurus::setDisplayBrightness( %d )", bright );
449 bool res = false; 449 bool res = false;
450 450
451 if ( bright > 255 ) bright = 255; 451 if ( bright > 255 ) bright = 255;
452 if ( bright < 0 ) bright = 0; 452 if ( bright < 0 ) bright = 0;
453 453
454 int numberOfSteps = displayBrightnessResolution(); 454 int numberOfSteps = displayBrightnessResolution();
455 int val = ( bright == 1 ) ? 1 : ( bright * numberOfSteps ) / 255; 455 int val = ( bright == 1 ) ? 1 : ( bright * numberOfSteps ) / 255;
456 456
457 if ( m_embedix ) 457 if ( m_embedix )
458 { 458 {
459 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK ); 459 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK );
460 if ( fd ) 460 if ( fd )
461 { 461 {
462 res = ( ::ioctl( fd, SHARP_FL_IOCTL_STEP_CONTRAST, val ) == 0 ); 462 res = ( ::ioctl( fd, SHARP_FL_IOCTL_STEP_CONTRAST, val ) == 0 );
463 ::close( fd ); 463 ::close( fd );
464 } 464 }
465 } 465 }
466 else 466 else
467 { 467 {
468 int fd = ::open( "/sys/class/backlight/corgi-bl/brightness", O_WRONLY|O_NONBLOCK ); 468 int fd = ::open( "/sys/class/backlight/corgi-bl/brightness", O_WRONLY|O_NONBLOCK );
469 if ( fd ) 469 if ( fd )
470 { 470 {
471 char buf[100]; 471 char buf[100];
472 int len = ::snprintf( &buf[0], sizeof buf, "%d", val ); 472 int len = ::snprintf( &buf[0], sizeof buf, "%d", val );
473 res = ( ::write( fd, &buf[0], len ) == 0 ); 473 res = ( ::write( fd, &buf[0], len ) == 0 );
474 ::close( fd ); 474 ::close( fd );
475 } 475 }
476 } 476 }
477 return res; 477 return res;
478} 478}
479 479
480bool Zaurus::setDisplayStatus( bool on ) 480bool Zaurus::setDisplayStatus( bool on )
481{ 481{
482 bool res = false; 482 bool res = false;
483 if ( m_embedix ) 483 if ( m_embedix )
484 { 484 {
485 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK ); 485 int fd = ::open( SHARP_FL_IOCTL_DEVICE, O_WRONLY|O_NONBLOCK );
486 if ( fd ) 486 if ( fd )
487 { 487 {
488 int ioctlnum = on ? SHARP_FL_IOCTL_ON : SHARP_FL_IOCTL_OFF; 488 int ioctlnum = on ? SHARP_FL_IOCTL_ON : SHARP_FL_IOCTL_OFF;
489 res = ( ::ioctl ( fd, ioctlnum, 0 ) == 0 ); 489 res = ( ::ioctl ( fd, ioctlnum, 0 ) == 0 );
490 ::close ( fd ); 490 ::close ( fd );
491 } 491 }
492 } 492 }
493 else 493 else
494 { 494 {
495 int fd = ::open( "/sys/class/backlight/corgi-bl/power", O_WRONLY|O_NONBLOCK ); 495 int fd = ::open( "/sys/class/backlight/corgi-bl/power", O_WRONLY|O_NONBLOCK );
496 if ( fd ) 496 if ( fd )
497 { 497 {
498 char buf[10]; 498 char buf[10];
499 buf[0] = on ? '1' : '0'; 499 buf[0] = on ? '1' : '0';
500 buf[1] = '\0'; 500 buf[1] = '\0';
501 res = ( ::write( fd, &buf[0], 2 ) == 0 ); 501 res = ( ::write( fd, &buf[0], 2 ) == 0 );
502 ::close( fd ); 502 ::close( fd );
503 } 503 }
504 } 504 }
505 return res; 505 return res;
506} 506}
507 507
508bool Zaurus::suspend() 508bool Zaurus::suspend()
509{ 509{
510 qDebug("ODevice::suspend"); 510 qDebug("ODevice::suspend");
511 if ( !isQWS( ) ) // only qwsserver is allowed to suspend 511 if ( !isQWS( ) ) // only qwsserver is allowed to suspend
512 return false; 512 return false;
513 513
514 if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices 514 if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices
515 return false; 515 return false;
516 516
517 bool res = false; 517 bool res = false;
518 ODevice::sendSuspendmsg(); 518 ODevice::sendSuspendmsg();
519 519
520 struct timeval tvs, tvn; 520 struct timeval tvs, tvn;
521 ::gettimeofday ( &tvs, 0 ); 521 ::gettimeofday ( &tvs, 0 );
522 522
523 ::sync(); // flush fs caches 523 ::sync(); // flush fs caches
524 res = ( ::system ( "apm --suspend" ) == 0 ); 524 res = ( ::system ( "apm --suspend" ) == 0 );
525 525
526 // This is needed because the apm implementation is asynchronous and we 526 // This is needed because the apm implementation is asynchronous and we
527 // can not be sure when exactly the device is really suspended 527 // can not be sure when exactly the device is really suspended
528 if ( res ) { 528 if ( res ) {
529 do { // Yes, wait 15 seconds. This APM sucks big time. 529 do { // Yes, wait 15 seconds. This APM sucks big time.
530 ::usleep ( 200 * 1000 ); 530 ::usleep ( 200 * 1000 );
531 ::gettimeofday ( &tvn, 0 ); 531 ::gettimeofday ( &tvn, 0 );
532 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 15000 ); 532 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 15000 );
533 } 533 }
534 534
535 QCopEnvelope ( "QPE/Rotation", "rotateDefault()" ); 535 QCopEnvelope ( "QPE/Rotation", "rotateDefault()" );
536 return res; 536 return res;
537} 537}
538 538
539 539
540Transformation Zaurus::rotation() const 540Transformation Zaurus::rotation() const
541{ 541{
542 Transformation rot; 542 Transformation rot;
543 int handle = 0; 543 int handle = 0;
544 int retval = 0; 544 int retval = 0;
545 545
546 switch ( d->m_model ) { 546 switch ( d->m_model ) {
547 case Model_Zaurus_SLC3000: // fallthrough 547 case Model_Zaurus_SLC3000: // fallthrough
548 case Model_Zaurus_SLC7x0: 548 case Model_Zaurus_SLC7x0:
549 handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK); 549 OHingeStatus hs = readHingeSensor();
550 if (handle == -1) { 550 if ( hs == CASE_PORTRAIT ) rot = Rot0;
551 return Rot270; 551 else if ( hs == CASE_UNKNOWN ) rot = Rot0;
552 } else { 552 else rot = Rot270;
553 retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION);
554 ::close (handle);
555
556 if (retval == 2 )
557 rot = Rot0;
558 else
559 rot = Rot270;
560 }
561 break; 553 break;
562 case Model_Zaurus_SL6000: 554 case Model_Zaurus_SL6000:
563 case Model_Zaurus_SLB600: 555 case Model_Zaurus_SLB600:
564 case Model_Zaurus_SLA300: 556 case Model_Zaurus_SLA300:
565 case Model_Zaurus_SL5500: 557 case Model_Zaurus_SL5500:
566 case Model_Zaurus_SL5000: 558 case Model_Zaurus_SL5000:
567 default: 559 default:
568 rot = d->m_rotation; 560 rot = d->m_rotation;
569 break; 561 break;
570 } 562 }
571 563
572 return rot; 564 return rot;
573} 565}
574ODirection Zaurus::direction() const 566ODirection Zaurus::direction() const
575{ 567{
576 ODirection dir; 568 ODirection dir;
577 int handle = 0; 569 int handle = 0;
578 int retval = 0; 570 int retval = 0;
579 switch ( d->m_model ) { 571 switch ( d->m_model ) {
580 case Model_Zaurus_SLC3000: // fallthrough 572 case Model_Zaurus_SLC3000: // fallthrough
581 case Model_Zaurus_SLC7x0: 573 case Model_Zaurus_SLC7x0:
582 handle = ::open( "/dev/apm_bios", O_RDWR|O_NONBLOCK ); 574 OHingeStatus hs = readHingeSensor();
583 if (handle == -1) { 575 if ( hs == CASE_PORTRAIT ) dir = CCW;
584 dir = CW; 576 else if ( hs == CASE_UNKNOWN ) dir = CCW;
585 } else { 577 else dir = CW;
586 retval = ::ioctl( handle, SHARP_IOCTL_GET_ROTATION );
587 ::close (handle);
588 if (retval == 2 )
589 dir = CCW;
590 else
591 dir = CW;
592 }
593 break; 578 break;
594 case Model_Zaurus_SL6000: 579 case Model_Zaurus_SL6000:
595 case Model_Zaurus_SLA300: 580 case Model_Zaurus_SLA300:
596 case Model_Zaurus_SLB600: 581 case Model_Zaurus_SLB600:
597 case Model_Zaurus_SL5500: 582 case Model_Zaurus_SL5500:
598 case Model_Zaurus_SL5000: 583 case Model_Zaurus_SL5000:
599 default: dir = d->m_direction; 584 default: dir = d->m_direction;
600 break; 585 break;
601 } 586 }
602 return dir; 587 return dir;
603 588
604} 589}
605 590
606bool Zaurus::hasHingeSensor() const 591bool Zaurus::hasHingeSensor() const
607{ 592{
608 return d->m_model == Model_Zaurus_SLC7x0 || d->m_model == Model_Zaurus_SLC3000; 593 return d->m_model == Model_Zaurus_SLC7x0 || d->m_model == Model_Zaurus_SLC3000;
609} 594}
610 595
611OHingeStatus Zaurus::readHingeSensor() 596OHingeStatus Zaurus::readHingeSensor() const
612{ 597{
613 if (m_embedix) 598 if (m_embedix)
614 { 599 {
615 int handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK); 600 int handle = ::open("/dev/apm_bios", O_RDWR|O_NONBLOCK);
616 if (handle == -1) 601 if (handle == -1)
617 { 602 {
618 qWarning("Zaurus::readHingeSensor() - failed (%s)", "unknown reason" ); //FIXME: use strerror 603 qWarning("Zaurus::readHingeSensor() - failed (%s)", "unknown reason" ); //FIXME: use strerror
619 return CASE_UNKNOWN; 604 return CASE_UNKNOWN;
620 } 605 }
621 else 606 else
622 { 607 {
623 int retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION); 608 int retval = ::ioctl(handle, SHARP_IOCTL_GET_ROTATION);
624 ::close (handle); 609 ::close (handle);
625 if ( retval == CASE_CLOSED || retval == CASE_PORTRAIT || retval == CASE_LANDSCAPE ) 610 if ( retval == CASE_CLOSED || retval == CASE_PORTRAIT || retval == CASE_LANDSCAPE )
626 { 611 {
627 qDebug( "Zaurus::readHingeSensor() - result = %d", retval ); 612 qDebug( "Zaurus::readHingeSensor() - result = %d", retval );
628 return static_cast<OHingeStatus>( retval ); 613 return static_cast<OHingeStatus>( retval );
629 } 614 }
630 else 615 else
631 { 616 {
632 qWarning("Zaurus::readHingeSensor() - couldn't compute hinge status!" ); 617 qWarning("Zaurus::readHingeSensor() - couldn't compute hinge status!" );
633 return CASE_UNKNOWN; 618 return CASE_UNKNOWN;
634 } 619 }
635 } 620 }
636 } 621 }
637 else 622 else
638 { 623 {
639 qDebug( "Zaurus::readHingeSensor: ODevice handling for non-embedix kernels not yet implemented" ); 624 qDebug( "Zaurus::readHingeSensor: ODevice handling for non-embedix kernels not yet implemented" );
640 return CASE_UNKNOWN; 625 return CASE_UNKNOWN;
641 } 626 }
642} 627}
diff --git a/libopie2/opiecore/device/odevice_zaurus.h b/libopie2/opiecore/device/odevice_zaurus.h
index ed9cf67..c763798 100644
--- a/libopie2/opiecore/device/odevice_zaurus.h
+++ b/libopie2/opiecore/device/odevice_zaurus.h
@@ -1,138 +1,138 @@
1/* 1/*
2                 This file is part of the Opie Project 2                 This file is part of the Opie Project
3              Copyright (C) The Opie Team <opie-devel@handhelds.org> 3              Copyright (C) The Opie Team <opie-devel@handhelds.org>
4 =. Copyright (C) 2003-2005 Michael 'Mickey' Lauer <mickey@Vanille.de> 4 =. Copyright (C) 2003-2005 Michael 'Mickey' Lauer <mickey@Vanille.de>
5 .=l. 5 .=l.
6           .>+-= 6           .>+-=
7 _;:,     .>    :=|. This program is free software; you can 7 _;:,     .>    :=|. This program is free software; you can
8.> <`_,   >  .   <= redistribute it and/or modify it under 8.> <`_,   >  .   <= redistribute it and/or modify it under
9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public 9:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
10.="- .-=="i,     .._ License as published by the Free Software 10.="- .-=="i,     .._ License as published by the Free Software
11 - .   .-<_>     .<> Foundation; either version 2 of the License, 11 - .   .-<_>     .<> Foundation; either version 2 of the License,
12     ._= =}       : or (at your option) any later version. 12     ._= =}       : or (at your option) any later version.
13    .%`+i>       _;_. 13    .%`+i>       _;_.
14    .i_,=:_.      -<s. This program is distributed in the hope that 14    .i_,=:_.      -<s. This program is distributed in the hope that
15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY; 15     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
16    : ..    .:,     . . . without even the implied warranty of 16    : ..    .:,     . . . without even the implied warranty of
17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A 17    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU 18  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
19..}^=.=       =       ; Library General Public License for more 19..}^=.=       =       ; Library General Public License for more
20++=   -.     .`     .: details. 20++=   -.     .`     .: details.
21 :     =  ...= . :.=- 21 :     =  ...= . :.=-
22 -.   .:....=;==+<; You should have received a copy of the GNU 22 -.   .:....=;==+<; You should have received a copy of the GNU
23  -_. . .   )=.  = Library General Public License along with 23  -_. . .   )=.  = Library General Public License along with
24    --        :-=` this library; see the file COPYING.LIB. 24    --        :-=` this library; see the file COPYING.LIB.
25 If not, write to the Free Software Foundation, 25 If not, write to the Free Software Foundation,
26 Inc., 59 Temple Place - Suite 330, 26 Inc., 59 Temple Place - Suite 330,
27 Boston, MA 02111-1307, USA. 27 Boston, MA 02111-1307, USA.
28*/ 28*/
29 29
30#ifndef ODEVICE_ZAURUS 30#ifndef ODEVICE_ZAURUS
31#define ODEVICE_ZAURUS 31#define ODEVICE_ZAURUS
32 32
33#include <opie2/odevice.h> 33#include <opie2/odevice.h>
34 34
35#ifndef ARRAY_SIZE 35#ifndef ARRAY_SIZE
36#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) 36#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
37#endif 37#endif
38 38
39// _IO and friends are only defined in kernel headers ... 39// _IO and friends are only defined in kernel headers ...
40#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) 40#define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 ))
41#define OD_IO(type,number) OD_IOC(0,type,number,0) 41#define OD_IO(type,number) OD_IOC(0,type,number,0)
42#define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size)) 42#define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size))
43#define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size)) 43#define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size))
44#define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size)) 44#define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size))
45 45
46// Audio 46// Audio
47#define SHARP_DEV_IOCTL_COMMAND_START 0x5680 47#define SHARP_DEV_IOCTL_COMMAND_START 0x5680
48 48
49#define SHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 49#define SHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
50#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 50#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
51 51
52#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 52#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
53#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 53#define SHARP_BUZ_KEYSOUND 2 /* key sound */
54#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 54#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
55 55
56#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) 56#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1)
57#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) 57#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2)
58#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) 58#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3)
59#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) 59#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4)
60#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) 60#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5)
61 61
62// LED 62// LED
63#define SHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 63#define SHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
64#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) 64#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1)
65#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ 65#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */
66 66
67#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ 67#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */
68#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ 68#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */
69#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ 69#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */
70 70
71// Rotation and Power Management 71// Rotation and Power Management
72#define SHARP_IOCTL_GET_ROTATION 0x413c 72#define SHARP_IOCTL_GET_ROTATION 0x413c
73 73
74#define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) 74#define APM_IOCGEVTSRC OD_IOR( 'A', 203, int )
75#define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) 75#define APM_IOCSEVTSRC OD_IORW( 'A', 204, int )
76#define APM_EVT_POWER_BUTTON (1 << 0) 76#define APM_EVT_POWER_BUTTON (1 << 0)
77 77
78// Brightness 78// Brightness
79#define SHARP_FL_IOCTL_DEVICE "/dev/sharp_fl" 79#define SHARP_FL_IOCTL_DEVICE "/dev/sharp_fl"
80#define SHARP_FL_IOCTL_ON 1 80#define SHARP_FL_IOCTL_ON 1
81#define SHARP_FL_IOCTL_OFF 2 81#define SHARP_FL_IOCTL_OFF 2
82#define SHARP_FL_IOCTL_STEP_CONTRAST 100 82#define SHARP_FL_IOCTL_STEP_CONTRAST 100
83#define SHARP_FL_IOCTL_GET_STEP_CONTRAST 101 83#define SHARP_FL_IOCTL_GET_STEP_CONTRAST 101
84#define SHARP_FL_IOCTL_GET_STEP 102 84#define SHARP_FL_IOCTL_GET_STEP 102
85 85
86namespace Opie { 86namespace Opie {
87namespace Core { 87namespace Core {
88namespace Internal { 88namespace Internal {
89 89
90class Zaurus : public ODevice 90class Zaurus : public ODevice
91{ 91{
92 protected: 92 protected:
93 virtual void init(const QString&); 93 virtual void init(const QString&);
94 virtual void initButtons(); 94 virtual void initButtons();
95 95
96 public: 96 public:
97 virtual bool setSoftSuspend( bool soft ); 97 virtual bool setSoftSuspend( bool soft );
98 98
99 virtual bool setDisplayBrightness( int b ); 99 virtual bool setDisplayBrightness( int b );
100 virtual bool setDisplayStatus( bool on ); 100 virtual bool setDisplayStatus( bool on );
101 virtual int displayBrightnessResolution() const; 101 virtual int displayBrightnessResolution() const;
102 102
103 virtual void playAlarmSound(); 103 virtual void playAlarmSound();
104 virtual void playKeySound(); 104 virtual void playKeySound();
105 virtual void playTouchSound(); 105 virtual void playTouchSound();
106 106
107 virtual QValueList <OLed> ledList() const; 107 virtual QValueList <OLed> ledList() const;
108 virtual QValueList <OLedState> ledStateList ( OLed led ) const; 108 virtual QValueList <OLedState> ledStateList ( OLed led ) const;
109 virtual OLedState ledState( OLed led ) const; 109 virtual OLedState ledState( OLed led ) const;
110 virtual bool setLedState( OLed led, OLedState st ); 110 virtual bool setLedState( OLed led, OLedState st );
111 111
112 virtual bool hasHingeSensor() const; 112 virtual bool hasHingeSensor() const;
113 virtual OHingeStatus readHingeSensor(); 113 virtual OHingeStatus readHingeSensor() const;
114 114
115 virtual bool suspend(); 115 virtual bool suspend();
116 virtual Transformation rotation() const; 116 virtual Transformation rotation() const;
117 virtual ODirection direction() const; 117 virtual ODirection direction() const;
118 118
119 protected: 119 protected:
120 virtual void buzzer( int snd ); 120 virtual void buzzer( int snd );
121 121
122 OLedState m_leds[1]; 122 OLedState m_leds[1];
123 bool m_embedix; 123 bool m_embedix;
124}; 124};
125 125
126struct z_button { 126struct z_button {
127 Qt::Key code; 127 Qt::Key code;
128 char *utext; 128 char *utext;
129 char *pix; 129 char *pix;
130 char *fpressedservice; 130 char *fpressedservice;
131 char *fpressedaction; 131 char *fpressedaction;
132 char *fheldservice; 132 char *fheldservice;
133 char *fheldaction; 133 char *fheldaction;
134}; 134};
135} 135}
136} 136}
137} 137}
138#endif 138#endif