diff options
author | Robert Jonsson <spamatica@gmail.com> | 2010-10-13 19:34:22 +0000 |
---|---|---|
committer | Robert Jonsson <spamatica@gmail.com> | 2010-10-13 19:34:22 +0000 |
commit | 8a2c2824a59d7644e13bc52c9a0ecbd641f21f95 (patch) | |
tree | 064ad3f2bf8daab0ad27b128abd86a9bbdb1e496 /muse2/muse/waveedit/editgain.h | |
parent | a27706d9629e8b592cca4659f865b70adef24e6d (diff) |
new branch muse2, first checkin
Diffstat (limited to 'muse2/muse/waveedit/editgain.h')
-rw-r--r-- | muse2/muse/waveedit/editgain.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/muse2/muse/waveedit/editgain.h b/muse2/muse/waveedit/editgain.h new file mode 100644 index 00000000..2094388b --- /dev/null +++ b/muse2/muse/waveedit/editgain.h @@ -0,0 +1,37 @@ +// +// 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 "editgainbase.h" + +class EditGain : public 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 |