1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
/***************************************************************************
* *
* Powersave Daemon *
* *
* Copyright (C) 2004,2005 SUSE Linux Products GmbH *
* *
* Author(s): Timo Hoenig <thoenig@suse.de> *
* *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at you *
* option) any later version. *
* *
* 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 *
* General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License along *
* with this program; if not, write to the Free Software Foundation, Inc., *
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
* *
***************************************************************************/
#ifndef POWERSAVE_BRIGHTNESS_H
#define POWERSAVE_BRIGHTNESS_H
#define PANASONIC_BRIGHTNESS_INTERFACE_IS_DOG_SLOW
#define ACPI_ASUS "/proc/acpi/asus/brn"
#define ACPI_IBM "/proc/acpi/ibm/brightness"
#define ACPI_SONY "/proc/acpi/sony/brightness"
#define ACPI_TOSHIBA "/proc/acpi/toshiba/lcd"
#define ACPI_PANASONIC "/proc/acpi/panasonic/"
#define LCD_OMNIBOOK "/proc/omnibook/lcd"
#include "config.h"
#ifdef ARCH_PPC
#define DEV_PMU "/dev/pmu"
#endif
/* merge #include "powersaved.h" */
class Brightness {
protected:
const char *iface;
int fd;
int last_percent;
int PercentToLevel(int);
public:
virtual ~ Brightness();
static Brightness *Probe();
virtual void Init();
virtual int Get();
virtual void Set(int);
int GetPercent();
void SetPercent(int);
/* those are driver-dependent, since e.g. setting the brightness
to zero actually might switch the display off which might not
be exactly what you want */
virtual void Min();
virtual void Med();
/* those are generic */
void Max();
void Up();
void Down();
virtual int GetLevels();
};
class BrightnessASUS:public Brightness {
public:
void Init();
int Get();
void Set(int);
void Min();
void Med();
int GetLevels();
};
class BrightnessIBM:public Brightness {
public:
void Init();
int Get();
void Set(int);
void Min();
void Med();
int GetLevels();
};
class BrightnessSony:public Brightness {
public:
void Init();
int Get();
void Set(int);
void Min();
void Med();
int GetLevels();
};
class BrightnessToshiba:public Brightness {
public:
void Init();
int Get();
void Set(int);
void Min();
void Med();
int GetLevels();
};
class BrightnessPanasonic:public Brightness {
protected:
#ifndef PANASONIC_BRIGHTNESS_INTERFACE_IS_DOG_SLOW
char *iface_dc;
#endif
int brt_max, brt_min, brt_scale;
public:
void Init();
int Get();
void Set(int);
void Min();
void Med();
int GetLevels();
};
class BrightnessOmnibook:public Brightness {
public:
void Init();
int Get();
void Set(int);
void Min();
void Med();
int GetLevels();
};
#ifdef ARCH_PPC
class BrightnessPMU:public Brightness {
public:
void Init();
int Get();
void Set(int);
void Min();
void Med();
int GetLevels();
};
#endif /* ARCH_PPC */
#endif /* POWERSAVE_BRIGHTNESS_H */
|