mirror of
https://github.com/LMMS/lmms.git
synced 2026-05-13 01:05:08 -04:00
Add namespace prefix to include guards
This commit is contained in:
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef ABOUT_DIALOG_H
|
||||
#define ABOUT_DIALOG_H
|
||||
#ifndef LMMS_GUI_ABOUT_DIALOG_H
|
||||
#define LMMS_GUI_ABOUT_DIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
@@ -43,4 +42,3 @@ public:
|
||||
} // namespace lmms::gui
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef ACTION_GROUP_H
|
||||
#define ACTION_GROUP_H
|
||||
#ifndef LMMS_GUI_ACTION_GROUP_H
|
||||
#define LMMS_GUI_ACTION_GROUP_H
|
||||
|
||||
#include <QActionGroup>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_ALSA_H
|
||||
#define AUDIO_ALSA_H
|
||||
#ifndef LMMS_AUDIO_ALSA_H
|
||||
#define LMMS_AUDIO_ALSA_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_ALSA_SETUP_WIDGET_H
|
||||
#define AUDIO_ALSA_SETUP_WIDGET_H
|
||||
#ifndef LMMS_GUI_AUDIO_ALSA_SETUP_WIDGET_H
|
||||
#define LMMS_GUI_AUDIO_ALSA_SETUP_WIDGET_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_DEVICE_H
|
||||
#define AUDIO_DEVICE_H
|
||||
#ifndef LMMS_AUDIO_DEVICE_H
|
||||
#define LMMS_AUDIO_DEVICE_H
|
||||
|
||||
#include <QMutex>
|
||||
#include <samplerate.h>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_DEVICE_SETUP_WIDGET_H
|
||||
#define AUDIO_DEVICE_SETUP_WIDGET_H
|
||||
#ifndef LMMS_GUI_AUDIO_DEVICE_SETUP_WIDGET_H
|
||||
#define LMMS_GUI_AUDIO_DEVICE_SETUP_WIDGET_H
|
||||
|
||||
#include "TabWidget.h"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_DUMMY_H
|
||||
#define AUDIO_DUMMY_H
|
||||
#ifndef LMMS_AUDIO_DUMMY_H
|
||||
#define LMMS_AUDIO_DUMMY_H
|
||||
|
||||
#include "AudioDevice.h"
|
||||
#include "AudioDeviceSetupWidget.h"
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_ENGINE_H
|
||||
#define AUDIO_ENGINE_H
|
||||
#ifndef LMMS_AUDIO_ENGINE_H
|
||||
#define LMMS_AUDIO_ENGINE_H
|
||||
|
||||
#include <QMutex>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_ENGINE_PROFILER_H
|
||||
#define AUDIO_ENGINE_PROFILER_H
|
||||
#ifndef LMMS_AUDIO_ENGINE_PROFILER_H
|
||||
#define LMMS_AUDIO_ENGINE_PROFILER_H
|
||||
|
||||
#include <QFile>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_ENGINE_WORKER_THREAD_H
|
||||
#define AUDIO_ENGINE_WORKER_THREAD_H
|
||||
#ifndef LMMS_AUDIO_ENGINE_WORKER_THREAD_H
|
||||
#define LMMS_AUDIO_ENGINE_WORKER_THREAD_H
|
||||
|
||||
#include <QThread>
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_FILE_DEVICE_H
|
||||
#define AUDIO_FILE_DEVICE_H
|
||||
#ifndef LMMS_AUDIO_FILE_DEVICE_H
|
||||
#define LMMS_AUDIO_FILE_DEVICE_H
|
||||
|
||||
#include <QFile>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_FILE_FLAC_H
|
||||
#define AUDIO_FILE_FLAC_H
|
||||
#ifndef LMMS_AUDIO_FILE_FLAC_H
|
||||
#define LMMS_AUDIO_FILE_FLAC_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
@@ -33,7 +33,7 @@
|
||||
namespace lmms
|
||||
{
|
||||
|
||||
class AudioFileFlac: public AudioFileDevice
|
||||
class AudioFileFlac : public AudioFileDevice
|
||||
{
|
||||
public:
|
||||
AudioFileFlac(OutputSettings const& outputSettings,
|
||||
@@ -77,4 +77,4 @@ private:
|
||||
|
||||
} // namespace lmms
|
||||
|
||||
#endif //AUDIO_FILE_FLAC_H
|
||||
#endif
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_FILE_MP3_H
|
||||
#define AUDIO_FILE_MP3_H
|
||||
#ifndef LMMS_AUDIO_FILE_MP3_H
|
||||
#define LMMS_AUDIO_FILE_MP3_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_FILE_OGG_H
|
||||
#define AUDIO_FILE_OGG_H
|
||||
#ifndef LMMS_AUDIO_FILE_OGG_H
|
||||
#define LMMS_AUDIO_FILE_OGG_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_FILE_WAVE_H
|
||||
#define AUDIO_FILE_WAVE_H
|
||||
#ifndef LMMS_AUDIO_FILE_WAVE_H
|
||||
#define LMMS_AUDIO_FILE_WAVE_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
#include "AudioFileDevice.h"
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_JACK_H
|
||||
#define AUDIO_JACK_H
|
||||
#ifndef LMMS_AUDIO_JACK_H
|
||||
#define LMMS_AUDIO_JACK_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_OSS_H
|
||||
#define AUDIO_OSS_H
|
||||
#ifndef LMMS_AUDIO_OSS_H
|
||||
#define LMMS_AUDIO_OSS_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_PORT_H
|
||||
#define AUDIO_PORT_H
|
||||
#ifndef LMMS_AUDIO_PORT_H
|
||||
#define LMMS_AUDIO_PORT_H
|
||||
|
||||
#include <memory>
|
||||
#include <QString>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_PORTAUDIO_H
|
||||
#define AUDIO_PORTAUDIO_H
|
||||
#ifndef LMMS_AUDIO_PORTAUDIO_H
|
||||
#define LMMS_AUDIO_PORTAUDIO_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_PULSEAUDIO_H
|
||||
#define AUDIO_PULSEAUDIO_H
|
||||
#ifndef LMMS_AUDIO_PULSEAUDIO_H
|
||||
#define LMMS_AUDIO_PULSEAUDIO_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_SAMPLE_RECORDER_H
|
||||
#define AUDIO_SAMPLE_RECORDER_H
|
||||
#ifndef LMMS_AUDIO_SAMPLE_RECORDER_H
|
||||
#define LMMS_AUDIO_SAMPLE_RECORDER_H
|
||||
|
||||
#include <QList>
|
||||
#include <QPair>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_SDL_H
|
||||
#define AUDIO_SDL_H
|
||||
#ifndef LMMS_AUDIO_SDL_H
|
||||
#define LMMS_AUDIO_SDL_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef _AUDIO_SNDIO_H
|
||||
#define _AUDIO_SNDIO_H
|
||||
#ifndef LMMS_AUDIO_SNDIO_H
|
||||
#define LMMS_AUDIO_SNDIO_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
@@ -87,6 +87,6 @@ private:
|
||||
|
||||
} // namespace lmms
|
||||
|
||||
#endif // LMMS_HAVE_SNDIO
|
||||
#endif // LMMS_HAVE_SNDIO
|
||||
|
||||
#endif // _AUDIO_SNDIO_H
|
||||
#endif
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUDIO_SOUNDIO_H
|
||||
#define AUDIO_SOUNDIO_H
|
||||
#ifndef LMMS_AUDIO_SOUNDIO_H
|
||||
#define LMMS_AUDIO_SOUNDIO_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef AUTOMATABLE_BUTTON_H
|
||||
#define AUTOMATABLE_BUTTON_H
|
||||
#ifndef LMMS_GUI_AUTOMATABLE_BUTTON_H
|
||||
#define LMMS_GUI_AUTOMATABLE_BUTTON_H
|
||||
|
||||
#include <QPushButton>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUTOMATABLE_MODEL_H
|
||||
#define AUTOMATABLE_MODEL_H
|
||||
#ifndef LMMS_AUTOMATABLE_MODEL_H
|
||||
#define LMMS_AUTOMATABLE_MODEL_H
|
||||
|
||||
#include <QMap>
|
||||
#include <QMutex>
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUTOMATABLE_MODEL_VIEW_H
|
||||
#define AUTOMATABLE_MODEL_VIEW_H
|
||||
#ifndef LMMS_GUI_AUTOMATABLE_MODEL_VIEW_H
|
||||
#define LMMS_GUI_AUTOMATABLE_MODEL_VIEW_H
|
||||
|
||||
#include "ModelView.h"
|
||||
#include "AutomatableModel.h"
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef AUTOMATABLE_SLIDER_H
|
||||
#define AUTOMATABLE_SLIDER_H
|
||||
#ifndef LMMS_GUI_AUTOMATABLE_SLIDER_H
|
||||
#define LMMS_GUI_AUTOMATABLE_SLIDER_H
|
||||
|
||||
#include <QSlider>
|
||||
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUTOMATION_CLIP_H
|
||||
#define AUTOMATION_CLIP_H
|
||||
#ifndef LMMS_AUTOMATION_CLIP_H
|
||||
#define LMMS_AUTOMATION_CLIP_H
|
||||
|
||||
#include <QMap>
|
||||
#include <QPointer>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUTOMATION_CLIP_VIEW_H
|
||||
#define AUTOMATION_CLIP_VIEW_H
|
||||
#ifndef LMMS_GUI_AUTOMATION_CLIP_VIEW_H
|
||||
#define LMMS_GUI_AUTOMATION_CLIP_VIEW_H
|
||||
|
||||
#include <QStaticText>
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUTOMATION_EDITOR_H
|
||||
#define AUTOMATION_EDITOR_H
|
||||
#ifndef LMMS_GUI_AUTOMATION_EDITOR_H
|
||||
#define LMMS_GUI_AUTOMATION_EDITOR_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUTOMATION_NODE_H
|
||||
#define AUTOMATION_NODE_H
|
||||
#ifndef LMMS_AUTOMATION_NODE_H
|
||||
#define LMMS_AUTOMATION_NODE_H
|
||||
|
||||
namespace lmms
|
||||
{
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUTOMATION_TRACK_H
|
||||
#define AUTOMATION_TRACK_H
|
||||
#ifndef LMMS_AUTOMATION_TRACK_H
|
||||
#define LMMS_AUTOMATION_TRACK_H
|
||||
|
||||
#include "Track.h"
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef AUTOMATION_TRACK_VIEW_H
|
||||
#define AUTOMATION_TRACK_VIEW_H
|
||||
#ifndef LMMS_GUI_AUTOMATION_TRACK_VIEW_H
|
||||
#define LMMS_GUI_AUTOMATION_TRACK_VIEW_H
|
||||
|
||||
#include "TrackView.h"
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef BANDLIMITEDWAVE_H
|
||||
#define BANDLIMITEDWAVE_H
|
||||
#ifndef LMMS_BANDLIMITEDWAVE_H
|
||||
#define LMMS_BANDLIMITEDWAVE_H
|
||||
|
||||
class QDataStream;
|
||||
class QString;
|
||||
|
||||
@@ -28,9 +28,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef BASIC_FILTERS_H
|
||||
#define BASIC_FILTERS_H
|
||||
#ifndef LMMS_BASIC_FILTERS_H
|
||||
#define LMMS_BASIC_FILTERS_H
|
||||
|
||||
#ifndef __USE_XOPEN
|
||||
#define __USE_XOPEN
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef BUFFER_MANAGER_H
|
||||
#define BUFFER_MANAGER_H
|
||||
#ifndef LMMS_BUFFER_MANAGER_H
|
||||
#define LMMS_BUFFER_MANAGER_H
|
||||
|
||||
#include "lmms_export.h"
|
||||
#include "lmms_basics.h"
|
||||
|
||||
@@ -23,9 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef CPULOAD_WIDGET_H
|
||||
#define CPULOAD_WIDGET_H
|
||||
#ifndef LMMS_GUI_CPU_LOAD_WIDGET_H
|
||||
#define LMMS_GUI_CPU_LOAD_WIDGET_H
|
||||
|
||||
#include <QTimer>
|
||||
#include <QPixmap>
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef CAPTION_MENU_H
|
||||
#define CAPTION_MENU_H
|
||||
#ifndef LMMS_GUI_CAPTION_MENU_H
|
||||
#define LMMS_GUI_CAPTION_MENU_H
|
||||
|
||||
#include <QMenu>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TRACK_CONTENT_OBJECT_H
|
||||
#define TRACK_CONTENT_OBJECT_H
|
||||
#ifndef LMMS_CLIP_H
|
||||
#define LMMS_CLIP_H
|
||||
|
||||
#include <QColor>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef TRACK_CONTENT_OBJECT_VIEW_H
|
||||
#define TRACK_CONTENT_OBJECT_VIEW_H
|
||||
#ifndef LMMS_GUI_CLIP_VIEW_H
|
||||
#define LMMS_GUI_CLIP_VIEW_H
|
||||
|
||||
|
||||
#include <QVector>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CLIPBOARD_H
|
||||
#define CLIPBOARD_H
|
||||
#ifndef LMMS_CLIPBOARD_H
|
||||
#define LMMS_CLIPBOARD_H
|
||||
|
||||
#include <QMap>
|
||||
#include <QDomElement>
|
||||
|
||||
@@ -21,8 +21,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef COLOR_CHOOSER_H
|
||||
#define COLOR_CHOOSER_H
|
||||
#ifndef LMMS_GUI_COLOR_CHOOSER_H
|
||||
#define LMMS_GUI_COLOR_CHOOSER_H
|
||||
|
||||
#include <QApplication>
|
||||
#include <QColor>
|
||||
@@ -34,7 +34,7 @@ namespace lmms::gui
|
||||
{
|
||||
|
||||
|
||||
class ColorChooser: public QColorDialog
|
||||
class ColorChooser : public QColorDialog
|
||||
{
|
||||
public:
|
||||
ColorChooser(const QColor &initial, QWidget *parent): QColorDialog(initial, parent) {};
|
||||
@@ -69,4 +69,3 @@ private:
|
||||
} // namespace lmms::gui
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef COMBOBOX_H
|
||||
#define COMBOBOX_H
|
||||
#ifndef LMMS_GUI_COMBOBOX_H
|
||||
#define LMMS_GUI_COMBOBOX_H
|
||||
|
||||
#include <QMenu>
|
||||
#include <QWidget>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef COMBOBOX_MODEL_H
|
||||
#define COMBOBOX_MODEL_H
|
||||
#ifndef LMMS_COMBOBOX_MODEL_H
|
||||
#define LMMS_COMBOBOX_MODEL_H
|
||||
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef CONFIG_MGR_H
|
||||
#define CONFIG_MGR_H
|
||||
#ifndef LMMS_CONFIG_MANAGER_H
|
||||
#define LMMS_CONFIG_MANAGER_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
@@ -70,8 +70,8 @@
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONTROLLAYOUT_H
|
||||
#define CONTROLLAYOUT_H
|
||||
#ifndef LMMS_GUI_CONTROL_LAYOUT_H
|
||||
#define LMMS_GUI_CONTROL_LAYOUT_H
|
||||
|
||||
#include <QLayout>
|
||||
#include <QMultiMap>
|
||||
@@ -141,4 +141,4 @@ private:
|
||||
|
||||
} // namespace lmms::gui
|
||||
|
||||
#endif // CONTROLLAYOUT_H
|
||||
#endif
|
||||
|
||||
@@ -23,9 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef CONTROLLER_H
|
||||
#define CONTROLLER_H
|
||||
#ifndef LMMS_CONTROLLER_H
|
||||
#define LMMS_CONTROLLER_H
|
||||
|
||||
#include "lmms_export.h"
|
||||
#include "Engine.h"
|
||||
@@ -185,4 +184,3 @@ signals:
|
||||
} // namespace lmms
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -26,9 +26,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef CONTROLLER_CONNECTION_H
|
||||
#define CONTROLLER_CONNECTION_H
|
||||
#ifndef LMMS_CONTROLLER_CONNECTION_H
|
||||
#define LMMS_CONTROLLER_CONNECTION_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QVector>
|
||||
@@ -129,4 +128,3 @@ signals:
|
||||
} // namespace lmms
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -23,9 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef CONTROLLER_CONNECTION_DIALOG_H
|
||||
#define CONTROLLER_CONNECTION_DIALOG_H
|
||||
#ifndef LMMS_GUI_CONTROLLER_CONNECTION_DIALOG_H
|
||||
#define LMMS_GUI_CONTROLLER_CONNECTION_DIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QSortFilterProxyModel>
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CONTROLLER_DIALOG_H
|
||||
#define CONTROLLER_DIALOG_H
|
||||
#ifndef LMMS_GUI_CONTROLLER_DIALOG_H
|
||||
#define LMMS_GUI_CONTROLLER_DIALOG_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CONTROLLER_RACK_VIEW_H
|
||||
#define CONTROLLER_RACK_VIEW_H
|
||||
#ifndef LMMS_GUI_CONTROLLER_RACK_VIEW_H
|
||||
#define LMMS_GUI_CONTROLLER_RACK_VIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QCloseEvent>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CONTROLLER_VIEW_H
|
||||
#define CONTROLLER_VIEW_H
|
||||
#ifndef LMMS_GUI_CONTROLLER_VIEW_H
|
||||
#define LMMS_GUI_CONTROLLER_VIEW_H
|
||||
|
||||
#include <QFrame>
|
||||
|
||||
|
||||
@@ -22,10 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef CONTROLS_H
|
||||
#define CONTROLS_H
|
||||
|
||||
|
||||
#ifndef LMMS_GUI_CONTROLS_H
|
||||
#define LMMS_GUI_CONTROLS_H
|
||||
|
||||
// headers only required for covariance
|
||||
#include "AutomatableModel.h"
|
||||
@@ -146,4 +144,4 @@ public:
|
||||
|
||||
} // namespace lmms
|
||||
|
||||
#endif // CONTROLS_H
|
||||
#endif
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/* Text customizable knob */
|
||||
#ifndef CUSTOM_TEXT_KNOB_H
|
||||
#define CUSTOM_TEXT_KNOB_H
|
||||
#ifndef LMMS_GUI_CUSTOM_TEXT_KNOB_H
|
||||
#define LMMS_GUI_CUSTOM_TEXT_KNOB_H
|
||||
|
||||
#include "Knob.h"
|
||||
|
||||
|
||||
@@ -23,9 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef DATA_FILE_H
|
||||
#define DATA_FILE_H
|
||||
#ifndef LMMS_DATA_FILE_H
|
||||
#define LMMS_DATA_FILE_H
|
||||
|
||||
#include <map>
|
||||
#include <QDomDocument>
|
||||
|
||||
@@ -22,10 +22,9 @@
|
||||
* Boston, MA 02110-1301 USA.
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef DELAY_H
|
||||
#define DELAY_H
|
||||
|
||||
#ifndef LMMS_DELAY_H
|
||||
#define LMMS_DELAY_H
|
||||
|
||||
#include "lmms_basics.h"
|
||||
#include "lmms_math.h"
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef DEPRECATIONHELPER_H
|
||||
#define DEPRECATIONHELPER_H
|
||||
#ifndef LMMS_DEPRECATIONHELPER_H
|
||||
#define LMMS_DEPRECATIONHELPER_H
|
||||
|
||||
#include <QFontMetrics>
|
||||
#include <QWheelEvent>
|
||||
@@ -66,4 +66,4 @@ inline QPoint position(QWheelEvent *wheelEvent)
|
||||
|
||||
} // namespace lmms
|
||||
|
||||
#endif // DEPRECATIONHELPER_H
|
||||
#endif
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef DETUNING_HELPER_H
|
||||
#define DETUNING_HELPER_H
|
||||
#ifndef LMMS_DETUNING_HELPER_H
|
||||
#define LMMS_DETUNING_HELPER_H
|
||||
|
||||
#include "InlineAutomation.h"
|
||||
#include "MemoryManager.h"
|
||||
|
||||
@@ -23,9 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef DRUMSYNTH_H
|
||||
#define DRUMSYNTH_H
|
||||
#ifndef LMMS_DRUM_SYNTH_H
|
||||
#define LMMS_DRUM_SYNTH_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "lmms_basics.h"
|
||||
@@ -57,4 +56,4 @@ class DrumSynth {
|
||||
|
||||
} // namespace lmms
|
||||
|
||||
#endif // DRUMSYNTH_H
|
||||
#endif
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef DSP_EFFECT_LIBRARY_H
|
||||
#define DSP_EFFECT_LIBRARY_H
|
||||
#ifndef LMMS_DSPEFFECTLIBRARY_H
|
||||
#define LMMS_DSPEFFECTLIBRARY_H
|
||||
|
||||
#include "lmms_math.h"
|
||||
#include "lmms_constants.h"
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef DUMMY_EFFECT_H
|
||||
#define DUMMY_EFFECT_H
|
||||
#ifndef LMMS_DUMMY_EFFECT_H
|
||||
#define LMMS_DUMMY_EFFECT_H
|
||||
|
||||
#include <QDomElement>
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef DUMMY_INSTRUMENT_H
|
||||
#define DUMMY_INSTRUMENT_H
|
||||
#ifndef LMMS_DUMMY_INSTRUMENT_H
|
||||
#define LMMS_DUMMY_INSTRUMENT_H
|
||||
|
||||
#include "Instrument.h"
|
||||
#include "InstrumentView.h"
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef DUMMY_PLUGIN_H
|
||||
#define DUMMY_PLUGIN_H
|
||||
#ifndef LMMS_DUMMY_PLUGIN_H
|
||||
#define LMMS_DUMMY_PLUGIN_H
|
||||
|
||||
#include "Plugin.h"
|
||||
#include "PluginView.h"
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EDITOR_COMMON_H
|
||||
#define EDITOR_COMMON_H
|
||||
#ifndef LMMS_EDITOR_H
|
||||
#define LMMS_EDITOR_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QToolBar>
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EFFECT_H
|
||||
#define EFFECT_H
|
||||
#ifndef LMMS_EFFECT_H
|
||||
#define LMMS_EFFECT_H
|
||||
|
||||
#include "Plugin.h"
|
||||
#include "Engine.h"
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EFFECT_CHAIN_H
|
||||
#define EFFECT_CHAIN_H
|
||||
#ifndef LMMS_EFFECT_CHAIN_H
|
||||
#define LMMS_EFFECT_CHAIN_H
|
||||
|
||||
#include "Model.h"
|
||||
#include "SerializingObject.h"
|
||||
@@ -86,4 +86,3 @@ signals:
|
||||
} // namespace lmms
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EFFECT_CONTROL_DIALOG_H
|
||||
#define EFFECT_CONTROL_DIALOG_H
|
||||
#ifndef LMMS_GUI_EFFECT_CONTROL_DIALOG_H
|
||||
#define LMMS_GUI_EFFECT_CONTROL_DIALOG_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EFFECT_CONTROLS_H
|
||||
#define EFFECT_CONTROLS_H
|
||||
#ifndef LMMS_EFFECT_CONTROLS_H
|
||||
#define LMMS_EFFECT_CONTROLS_H
|
||||
|
||||
#include "Model.h"
|
||||
#include "JournallingObject.h"
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EFFECT_RACK_VIEW_H
|
||||
#define EFFECT_RACK_VIEW_H
|
||||
#ifndef LMMS_GUI_EFFECT_RACK_VIEW_H
|
||||
#define LMMS_GUI_EFFECT_RACK_VIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EFFECT_SELECT_DIALOG_H
|
||||
#define EFFECT_SELECT_DIALOG_H
|
||||
#ifndef LMMS_GUI_EFFECT_SELECT_DIALOG_H
|
||||
#define LMMS_GUI_EFFECT_SELECT_DIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QSortFilterProxyModel>
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EFFECT_VIEW_H
|
||||
#define EFFECT_VIEW_H
|
||||
#ifndef LMMS_GUI_EFFECT_VIEW_H
|
||||
#define LMMS_GUI_EFFECT_VIEW_H
|
||||
|
||||
#include "AutomatableModel.h"
|
||||
#include "PluginView.h"
|
||||
|
||||
@@ -22,14 +22,12 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef ENGINE_H
|
||||
#define ENGINE_H
|
||||
#ifndef LMMS_ENGINE_H
|
||||
#define LMMS_ENGINE_H
|
||||
|
||||
#include <QString>
|
||||
#include <QObject>
|
||||
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
#include "lmms_export.h"
|
||||
#include "lmms_basics.h"
|
||||
@@ -158,4 +156,3 @@ private:
|
||||
} // namespace lmms
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef ENVELOPE_AND_LFO_PARAMETERS_H
|
||||
#define ENVELOPE_AND_LFO_PARAMETERS_H
|
||||
#ifndef LMMS_ENVELOPE_AND_LFO_PARAMETERS_H
|
||||
#define LMMS_ENVELOPE_AND_LFO_PARAMETERS_H
|
||||
|
||||
#include <QVector>
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef ENVELOPE_AND_LFO_VIEW_H
|
||||
#define ENVELOPE_AND_LFO_VIEW_H
|
||||
#ifndef LMMS_GUI_ENVELOPE_AND_LFO_VIEW_H
|
||||
#define LMMS_GUI_ENVELOPE_AND_LFO_VIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef EXPORT_FILTER_H
|
||||
#define EXPORT_FILTER_H
|
||||
#ifndef LMMS_EXPORT_FILTER_H
|
||||
#define LMMS_EXPORT_FILTER_H
|
||||
|
||||
#include <QFile>
|
||||
|
||||
|
||||
@@ -23,9 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef EXPORT_PROJECT_DIALOG_H
|
||||
#define EXPORT_PROJECT_DIALOG_H
|
||||
#ifndef LMMS_GUI_EXPORT_PROJECT_DIALOG_H
|
||||
#define LMMS_GUI_EXPORT_PROJECT_DIALOG_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <memory>
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef FADE_BUTTON_H
|
||||
#define FADE_BUTTON_H
|
||||
#ifndef LMMS_GUI_FADE_BUTTON_H
|
||||
#define LMMS_GUI_FADE_BUTTON_H
|
||||
|
||||
#include <QAbstractButton>
|
||||
#include <QColor>
|
||||
|
||||
@@ -44,9 +44,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef FADER_H
|
||||
#define FADER_H
|
||||
#ifndef LMMS_GUI_FADER_H
|
||||
#define LMMS_GUI_FADER_H
|
||||
|
||||
#include <QElapsedTimer>
|
||||
#include <QPixmap>
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef FIFO_BUFFER_H
|
||||
#define FIFO_BUFFER_H
|
||||
#ifndef LMMS_FIFO_BUFFER_H
|
||||
#define LMMS_FIFO_BUFFER_H
|
||||
|
||||
#include <QSemaphore>
|
||||
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef FILE_BROWSER_H
|
||||
#define FILE_BROWSER_H
|
||||
#ifndef LMMS_GUI_FILE_BROWSER_H
|
||||
#define LMMS_GUI_FILE_BROWSER_H
|
||||
|
||||
#include <QCheckBox>
|
||||
#include <QDir>
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef FILEDIALOG_H
|
||||
#define FILEDIALOG_H
|
||||
#ifndef LMMS_GUI_FILE_DIALOG_H
|
||||
#define LMMS_GUI_FILE_DIALOG_H
|
||||
|
||||
#include <QFileDialog>
|
||||
|
||||
@@ -57,4 +56,4 @@ public:
|
||||
|
||||
} // namespace lmms::gui
|
||||
|
||||
#endif // FILEDIALOG_H
|
||||
#endif
|
||||
|
||||
@@ -23,9 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef GRAPH_H
|
||||
#define GRAPH_H
|
||||
#ifndef LMMS_GUI_GRAPH_H
|
||||
#define LMMS_GUI_GRAPH_H
|
||||
|
||||
#include <QWidget>
|
||||
#include <QPixmap>
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef GROUP_BOX_H
|
||||
#define GROUP_BOX_H
|
||||
#ifndef LMMS_GUI_GROUP_BOX_H
|
||||
#define LMMS_GUI_GROUP_BOX_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef GUIAPPLICATION_H
|
||||
#define GUIAPPLICATION_H
|
||||
#ifndef LMMS_GUI_GUI_APPLICATION_H
|
||||
#define LMMS_GUI_GUI_APPLICATION_H
|
||||
|
||||
#include <QObject>
|
||||
|
||||
@@ -93,4 +93,4 @@ LMMS_EXPORT GuiApplication* getGUI();
|
||||
|
||||
} // namespace lmms::gui
|
||||
|
||||
#endif // GUIAPPLICATION_H
|
||||
#endif
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef IMPORT_FILTER_H
|
||||
#define IMPORT_FILTER_H
|
||||
#ifndef LMMS_IMPORT_FILTER_H
|
||||
#define LMMS_IMPORT_FILTER_H
|
||||
|
||||
#include <QFile>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INLINE_AUTOMATION_H
|
||||
#define INLINE_AUTOMATION_H
|
||||
#ifndef LMMS_INLINE_AUTOMATION_H
|
||||
#define LMMS_INLINE_AUTOMATION_H
|
||||
|
||||
#include "AutomationNode.h"
|
||||
#include "AutomationClip.h"
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_H
|
||||
#define INSTRUMENT_H
|
||||
#ifndef LMMS_INSTRUMENT_H
|
||||
#define LMMS_INSTRUMENT_H
|
||||
|
||||
#include <QString>
|
||||
#include "lmms_export.h"
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_FUNCTION_VIEWS_H
|
||||
#define INSTRUMENT_FUNCTION_VIEWS_H
|
||||
#ifndef LMMS_INSTRUMENT_FUNCTION_VIEWS_H
|
||||
#define LMMS_INSTRUMENT_FUNCTION_VIEWS_H
|
||||
|
||||
#include "ModelView.h"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_FUNCTIONS_H
|
||||
#define INSTRUMENT_FUNCTIONS_H
|
||||
#ifndef LMMS_INSTRUMENT_FUNCTIONS_H
|
||||
#define LMMS_INSTRUMENT_FUNCTIONS_H
|
||||
|
||||
#include "JournallingObject.h"
|
||||
#include "lmms_basics.h"
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_MIDI_IO_VIEW_H
|
||||
#define INSTRUMENT_MIDI_IO_VIEW_H
|
||||
#ifndef LMMS_GUI_INSTRUMENT_MIDI_IO_VIEW_H
|
||||
#define LMMS_GUI_INSTRUMENT_MIDI_IO_VIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -24,8 +24,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_MISC_VIEW_H
|
||||
#define INSTRUMENT_MISC_VIEW_H
|
||||
#ifndef LMMS_GUI_INSTRUMENT_MISC_VIEW_H
|
||||
#define LMMS_GUI_INSTRUMENT_MISC_VIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_PLAY_HANDLE_H
|
||||
#define INSTRUMENT_PLAY_HANDLE_H
|
||||
#ifndef LMMS_INSTRUMENT_PLAY_HANDLE_H
|
||||
#define LMMS_INSTRUMENT_PLAY_HANDLE_H
|
||||
|
||||
#include "PlayHandle.h"
|
||||
#include "Instrument.h"
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_SOUND_SHAPING_H
|
||||
#define INSTRUMENT_SOUND_SHAPING_H
|
||||
#ifndef LMMS_INSTRUMENT_SOUND_SHAPING_H
|
||||
#define LMMS_INSTRUMENT_SOUND_SHAPING_H
|
||||
|
||||
#include "ComboBoxModel.h"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_SOUND_SHAPING_VIEW_H
|
||||
#define INSTRUMENT_SOUND_SHAPING_VIEW_H
|
||||
#ifndef LMMS_GUI_INSTRUMENT_SOUND_SHAPING_VIEW_H
|
||||
#define LMMS_GUI_INSTRUMENT_SOUND_SHAPING_VIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -23,8 +23,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_TRACK_H
|
||||
#define INSTRUMENT_TRACK_H
|
||||
#ifndef LMMS_INSTRUMENT_TRACK_H
|
||||
#define LMMS_INSTRUMENT_TRACK_H
|
||||
|
||||
#include "AudioPort.h"
|
||||
#include "InstrumentFunctions.h"
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_TRACK_VIEW_H
|
||||
#define INSTRUMENT_TRACK_VIEW_H
|
||||
#ifndef LMMS_GUI_INSTRUMENT_TRACK_VIEW_H
|
||||
#define LMMS_GUI_INSTRUMENT_TRACK_VIEW_H
|
||||
|
||||
#include "TrackView.h"
|
||||
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef INSTRUMENT_TRACK_WINDOW_H
|
||||
#define INSTRUMENT_TRACK_WINDOW_H
|
||||
#ifndef LMMS_GUI_INSTRUMENT_TRACK_WINDOW_H
|
||||
#define LMMS_GUI_INSTRUMENT_TRACK_WINDOW_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
|
||||
@@ -22,9 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
|
||||
#ifndef INSTRUMENT_VIEW_H
|
||||
#define INSTRUMENT_VIEW_H
|
||||
#ifndef LMMS_GUI_INSTRUMENT_VIEW_H
|
||||
#define LMMS_GUI_INSTRUMENT_VIEW_H
|
||||
|
||||
#include "Instrument.h"
|
||||
#include "PluginView.h"
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef IO_HELPER_H
|
||||
#define IO_HELPER_H
|
||||
#ifndef LMMS_IO_HELPER_H
|
||||
#define LMMS_IO_HELPER_H
|
||||
|
||||
#include "lmmsconfig.h"
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user