summaryrefslogtreecommitdiff
path: root/core/applets/volumeapplet/volume.h
Side-by-side diff
Diffstat (limited to 'core/applets/volumeapplet/volume.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/volumeapplet/volume.h47
1 files changed, 31 insertions, 16 deletions
diff --git a/core/applets/volumeapplet/volume.h b/core/applets/volumeapplet/volume.h
index a982f53..9fc12d8 100644
--- a/core/applets/volumeapplet/volume.h
+++ b/core/applets/volumeapplet/volume.h
@@ -1,6 +1,6 @@
/**********************************************************************
-** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
+** Copyright (C) 2000 Trolltech AS. All rights reserved.
**
-** This file is part of the Qtopia Environment.
+** This file is part of Qtopia Environment.
**
** This file may be distributed and/or modified under the terms of the
@@ -18,4 +18,5 @@
**
**********************************************************************/
+
#ifndef __VOLUME_APPLET_H__
#define __VOLUME_APPLET_H__
@@ -26,9 +27,8 @@
#include <qpixmap.h>
#include <qguardedptr.h>
+#include <qtimer.h>
class QSlider;
class QCheckBox;
-class QPushButton;
-class QTimer;
class VolumeControl : public QFrame
@@ -36,21 +36,22 @@ class VolumeControl : public QFrame
Q_OBJECT
public:
- VolumeControl( QWidget *parent=0, const char *name=0 );
+ VolumeControl( bool showMic=FALSE, QWidget *parent=0, const char *name=0 );
public:
QSlider *slider;
+ QSlider *mic;
QCheckBox *muteBox;
private:
+ QPushButton *upButton;
+ QPushButton *downButton;
+ QTimer *rateTimer;
+
void keyPressEvent( QKeyEvent * );
-
+ void createView(bool showMic = FALSE);
private slots:
void ButtonChanged();
void rateTimerDone();
-
-private:
- QPushButton *upButton;
- QPushButton *downButton;
- QTimer *rateTimer;
+
};
@@ -66,9 +67,21 @@ public:
public slots:
void volumeChanged( bool muted );
- void setVolume( int percent );
+ void micChanged( bool muted );
void sliderMoved( int percent );
void mute( bool );
+ void micMoved( int percent );
+ void setVolume( int percent );
+ void setMic( int percent );
+
+ void showVolControl(bool showMic = FALSE);
+ void advVolControl();
+
private:
+ int volumePercent, micPercent;
+ bool muted, micMuted;
+ QPixmap volumePixmap;
+ QTimer *advancedTimer;
+
void readSystemVolume();
void writeSystemVolume();
@@ -76,10 +89,12 @@ private:
void paintEvent( QPaintEvent* );
-private:
- int volumePercent;
- bool muted;
- QPixmap volumePixmap;
+ void readSystemMic();
+ void keyPressEvent ( QKeyEvent * e );
+ void mouseReleaseEvent( QMouseEvent *);
+ void writeSystemMic();
+
};
#endif // __VOLUME_APPLET_H__
+