summaryrefslogtreecommitdiff
path: root/attic/muse2-oom/muse2/muse/waveedit/editgain.h
diff options
context:
space:
mode:
Diffstat (limited to 'attic/muse2-oom/muse2/muse/waveedit/editgain.h')
-rw-r--r--attic/muse2-oom/muse2/muse/waveedit/editgain.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/attic/muse2-oom/muse2/muse/waveedit/editgain.h b/attic/muse2-oom/muse2/muse/waveedit/editgain.h
new file mode 100644
index 00000000..9cbc1d79
--- /dev/null
+++ b/attic/muse2-oom/muse2/muse/waveedit/editgain.h
@@ -0,0 +1,39 @@
+//
+// C++ Interface: editgain
+//
+// Description:
+//
+//
+// Author: Mathias Lundgren <lunar_shuttle@users.sf.net>, (C) 2005
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+
+#ifndef EDITGAIN_H
+#define EDITGAIN_H
+
+#include "ui_editgainbase.h"
+
+class QDialog;
+
+class EditGain : public QDialog, public Ui::EditGainBase
+{
+ Q_OBJECT
+public:
+ EditGain(QWidget* parent = 0, int initGainValue=100);
+
+ ~EditGain();
+ int getGain();
+
+private:
+ int gain;
+
+private slots:
+ void resetPressed();
+ void applyPressed();
+ void cancelPressed();
+ void gainChanged(int value);
+};
+
+#endif