author | sandman <sandman> | 2002-10-21 11:52:48 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-21 11:52:48 (UTC) |
commit | 2c163c9f70dabb90c189a93c1f34dbc2f54849f6 (patch) (side-by-side diff) | |
tree | eb7942c6f23282f0038b7feec27b7148d3895d7d | |
parent | 10a7608882119da90d5c294f75cbbc09bba3ca4a (diff) | |
download | opie-2c163c9f70dabb90c189a93c1f34dbc2f54849f6.zip opie-2c163c9f70dabb90c189a93c1f34dbc2f54849f6.tar.gz opie-2c163c9f70dabb90c189a93c1f34dbc2f54849f6.tar.bz2 |
Speed (and sanity ;) optimization:
Until now the launcher parsed qpe.conf, open the ts device, set the
backlight with an ioctl and closed the device again on *every* keypress or
stylus tap.
This is only done now, when it is really necessary (~1% of all cases).
Additionally this allows easier integration of the iPAQ light-sensor.
-rw-r--r-- | core/launcher/desktop.cpp | 40 |
1 files changed, 22 insertions, 18 deletions
diff --git a/core/launcher/desktop.cpp b/core/launcher/desktop.cpp index 387650b..d2bd8ae 100644 --- a/core/launcher/desktop.cpp +++ b/core/launcher/desktop.cpp @@ -169,3 +169,4 @@ public: - m_backlight_bright = -1; + m_backlight_normal = -1; + m_backlight_current = -1; m_backlight_forcedoff = false; @@ -174,2 +175,3 @@ public: ODevice::inst ( ) -> setDisplayStatus ( true ); + setBacklight ( -1 ); } @@ -182,3 +184,3 @@ public: - setBacklight ( -1 ); + setBacklightInternal ( -1 ); } @@ -189,4 +191,4 @@ public: if ( m_disable_suspend > 0 && m_enable_dim ) { - if ( backlight() > 1 ) - setBacklight( 1 ); // lowest non-off + if ( m_backlight_current > 1 ) + setBacklightInternal ( 1 ); // lowest non-off } @@ -196,3 +198,3 @@ public: if ( m_disable_suspend > 1 && m_enable_lightoff ) { - setBacklight( 0 ); // off + setBacklightInternal ( 0 ); // off } @@ -272,5 +274,4 @@ public: - int backlight ( ) + void setBacklight ( int bright ) { - if ( m_backlight_bright == -1 ) { // Read from config @@ -278,8 +279,9 @@ public: config. setGroup ( "Screensaver" ); - m_backlight_bright = config. readNumEntry ( "Brightness", 255 ); - } - return m_backlight_bright; + m_backlight_normal = config. readNumEntry ( "Brightness", 255 ); + + setBacklightInternal ( bright ); } - void setBacklight ( int bright ) +private: + void setBacklightInternal ( int bright ) { @@ -294,14 +296,15 @@ public: // Toggle between off and on - bright = m_backlight_bright ? 0 : -1; + bright = m_backlight_current ? 0 : -1; m_backlight_forcedoff = !bright; } + if ( bright == -1 ) + bright = m_backlight_normal; - m_backlight_bright = bright; - - bright = backlight ( ); + if ( bright != m_backlight_current ) { ODevice::inst ( ) -> setDisplayBrightness ( bright ); - - m_backlight_bright = bright; + m_backlight_current = bright; + } } +public: void setDisplayState ( bool on ) @@ -322,3 +325,4 @@ private: - int m_backlight_bright; + int m_backlight_normal; + int m_backlight_current; bool m_backlight_forcedoff; |