diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-06 16:44:40 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-06 16:44:40 +0000 |
| commit | 9314d6bdf8857bc6cd29b0596158f2d0ff787513 (patch) | |
| tree | 9b7082c3040dcaaf040701c98746cb48e8bdf0ef /src/wx/audio_gain_dialog.h | |
| parent | 85783f27f40ff6b60bf8e3348dc566e89323e8d0 (diff) | |
Missed i18n.
Diffstat (limited to 'src/wx/audio_gain_dialog.h')
| -rw-r--r-- | src/wx/audio_gain_dialog.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/wx/audio_gain_dialog.h b/src/wx/audio_gain_dialog.h new file mode 100644 index 000000000..370e9f1bc --- /dev/null +++ b/src/wx/audio_gain_dialog.h @@ -0,0 +1,33 @@ +/* + Copyright (C) 2014 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include <wx/wx.h> + +class wxSpinCtrlDouble; + +class AudioGainDialog : public wxDialog +{ +public: + AudioGainDialog (wxWindow *, int, int, float); + + float value () const; + +private: + wxSpinCtrlDouble* _gain; +}; |
