From 8a2c2824a59d7644e13bc52c9a0ecbd641f21f95 Mon Sep 17 00:00:00 2001 From: Robert Jonsson Date: Wed, 13 Oct 2010 19:34:22 +0000 Subject: new branch muse2, first checkin --- muse2/muse/waveedit/editgain.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 muse2/muse/waveedit/editgain.h (limited to 'muse2/muse/waveedit/editgain.h') 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 , (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 -- cgit v1.2.3