MuseScore  3.4
Music composition and notation
Namespaces | Macros | Functions
mixer.cpp File Reference
#include "musescore.h"
#include "parteditbase.h"
#include "libmscore/excerpt.h"
#include "libmscore/score.h"
#include "libmscore/part.h"
#include "mixer.h"
#include "seq.h"
#include "libmscore/undo.h"
#include "synthcontrol.h"
#include "synthesizer/msynthesizer.h"
#include "preferences.h"
#include <QtGlobal>
#include <qmessagebox.h>
#include <accessibletoolbutton.h>
#include "mixerdetails.h"
#include "mixertrack.h"
#include "mixertrackchannel.h"
#include "mixertrackpart.h"
#include "mixertrackitem.h"
Include dependency graph for mixer.cpp:

Namespaces

 Ms
 
 

Macros

#define _setValue(__x, __y)
 
#define _setChecked(__x, __y)
 

Functions

double Ms::volumeToUserRange (char v)
 
double Ms::panToUserRange (char v)
 
double Ms::chorusToUserRange (char v)
 
double Ms::reverbToUserRange (char v)
 
char Ms::userRangeToVolume (double v)
 
char Ms::userRangeToPan (double v)
 
char Ms::userRangeToChorus (double v)
 
char Ms::userRangeToReverb (double v)
 

Macro Definition Documentation

◆ _setChecked

#define _setChecked (   __x,
  __y 
)
Value:
__x->blockSignals(true); \
__x->setChecked(__y); \
__x->blockSignals(false);

◆ _setValue

#define _setValue (   __x,
  __y 
)
Value:
__x->blockSignals(true); \
__x->setValue(__y); \
__x->blockSignals(false);