summaryrefslogtreecommitdiff
path: root/muse2/muse/waveedit/editgain.h
blob: 2094388bfa0ef3bedd57b80324e760d1248c0d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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