mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-23 22:08:02 -05:00
The translation of the instrument plugins description does not work in Instruments pluginBrowser Translation of the effect plugins description not showing in effects selector Replace tabs with spaces in the fix indentation (as Tres request) More French translations added Remove the call to tr() inside the macro makeknob (DualFilterControlDialog.cpp) and tr() the strings before calling makeknob Fix DualFilter description (was labeled as "A native amplifier plugin") (DualFilter.cpp) Add French translation for the Dual filter knobs. Move tr() out of macro's so lupdate find them for translation (extract litterals in "ts" file). Full French translation of Monstro :-) Make NES translatable (some tr() missing) Remove tr() from macros (litterals not extracted by lupdate Translate NES to French Translate Watsyn Synth as others Missing Q_OBJECT in DelayControlsDialog definition prevents its translation Translate Delay plugin to French Make EqControlsDialog translatable Fix selected-note volume bug Closes #2070 Fix a typo in French translation. Add EqControlsDialog.h to the MOCFILES list in Eq CMakeLists.txt Remove definition of slot updateVuMeters() in EqControlsDialog.h which is not implemented
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
/*
|
|
* delaycontrolsdialog.h - declaration of DelayControlsDialog class.
|
|
*
|
|
* Copyright (c) 2014 David French <dave/dot/french3/at/googlemail/dot/com>
|
|
*
|
|
* This file is part of LMMS - http://lmms.io
|
|
*
|
|
* 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 (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef DELAYCONTROLSDIALOG_H
|
|
#define DELAYCONTROLSDIALOG_H
|
|
|
|
#include "EffectControlDialog.h"
|
|
#include "AutomatableModel.h"
|
|
|
|
class DelayControls;
|
|
|
|
class DelayControlsDialog : public EffectControlDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
DelayControlsDialog( DelayControls* controls );
|
|
virtual ~DelayControlsDialog()
|
|
{
|
|
}
|
|
};
|
|
|
|
class XyPad : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
XyPad( QWidget *parent = 0, FloatModel *xModel = 0, FloatModel *yModel = 0 );
|
|
~XyPad() {}
|
|
|
|
protected:
|
|
virtual void paintEvent ( QPaintEvent * event );
|
|
virtual void mousePressEvent(QMouseEvent * event );
|
|
virtual void mouseReleaseEvent(QMouseEvent * event);
|
|
virtual void mouseMoveEvent(QMouseEvent * event);
|
|
|
|
private:
|
|
FloatModel *m_xModel;
|
|
FloatModel *m_yModel;
|
|
bool m_acceptInput;
|
|
};
|
|
|
|
#endif // DELAYCONTROLSDIALOG_H
|