summaryrefslogtreecommitdiff
path: root/core/settings/light-and-power/sensor.h
Side-by-side diff
Diffstat (limited to 'core/settings/light-and-power/sensor.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/light-and-power/sensor.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/settings/light-and-power/sensor.h b/core/settings/light-and-power/sensor.h
index 7a26d81..b484519 100644
--- a/core/settings/light-and-power/sensor.h
+++ b/core/settings/light-and-power/sensor.h
@@ -13,35 +13,43 @@
    .i_,=:_.      -<s. This file 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 file;
  -_. . .   )=.  = see the file COPYING. If not, write to the
    --        :-=` Free Software Foundation, Inc.,
59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#ifndef __SENSOR_H__
#define __SENSOR_H__
#include "sensorbase.h"
class Calibration;
class QStringList;
class Sensor : public SensorBase {
+ Q_OBJECT
+
public:
Sensor ( QStringList &params, QWidget *parent = 0, const char *name = 0 );
virtual void accept ( );
+
+signals:
+ void viewBacklight ( int );
+
+private slots:
+ void pointDrag ( const QPoint & );
private:
QStringList &m_params;
Calibration *m_calib;
};
#endif \ No newline at end of file