summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/device/odevice_beagle.h
authorzecke <zecke>2004-09-17 21:51:47 (UTC)
committer zecke <zecke>2004-09-17 21:51:47 (UTC)
commit5a0986abc76a695a4262b75219a29ea983cf19c8 (patch) (side-by-side diff)
tree3e5a98bce5f07fc6c7edf9dc8b26aee5ec2098cc /libopie2/opiecore/device/odevice_beagle.h
parenta7d6af0d9a4f06dc5e27844f74212806387ce218 (diff)
downloadopie-5a0986abc76a695a4262b75219a29ea983cf19c8.zip
opie-5a0986abc76a695a4262b75219a29ea983cf19c8.tar.gz
opie-5a0986abc76a695a4262b75219a29ea983cf19c8.tar.bz2
First untested support for the beagle from MasterIA
Diffstat (limited to 'libopie2/opiecore/device/odevice_beagle.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_beagle.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/libopie2/opiecore/device/odevice_beagle.h b/libopie2/opiecore/device/odevice_beagle.h
new file mode 100644
index 0000000..1626330
--- a/dev/null
+++ b/libopie2/opiecore/device/odevice_beagle.h
@@ -0,0 +1,62 @@
+/*
+                 This file is part of the Opie Project
+              Copyright (C) 2004 The Opie Team <opie-devel@handhelds.org>
+ =.
+ .=l.
+           .>+-=
+ _;:,     .>    :=|. This program is free software; you can
+.> <`_,   >  .   <= redistribute it and/or modify it under
+:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
+.="- .-=="i,     .._ License as published by the Free Software
+ - .   .-<_>     .<> Foundation; either version 2 of the License,
+     ._= =}       : or (at your option) any later version.
+    .%`+i>       _;_.
+    .i_,=:_.      -<s. This program is distributed in the hope that
+     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
+    : ..    .:,     . . . without even the implied warranty of
+    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
+  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
+..}^=.=       =       ; Library General Public License for more
+++=   -.     .`     .: details.
+ :     =  ...= . :.=-
+ -.   .:....=;==+<; You should have received a copy of the GNU
+  -_. . .   )=.  = Library General Public License along with
+    --        :-=` this library; see the file COPYING.LIB.
+ If not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+*/
+
+#ifndef OPIE_CORE_DEVICE_BEAGLE_H
+#define OPIE_CORE_DEVICE_BEAGLE_H
+
+#include "odevice.h"
+
+namespace Opie {
+namespace Core {
+namespace Internal {
+class Beagle : public ODevice {
+ Q_OBJECT
+public:
+ Beagle();
+ ~Beagle();
+
+//@{
+ void init( const QString& init );
+ void initButtons();
+//@}
+
+
+//@{
+ bool setDisplayStatus( bool on );
+ int displayBrightnessResolution()const;
+ bool setDisplayBrightness( int brightness );
+//@}
+
+};
+}
+}
+}
+
+
+#endif