Mixxx

/home/maxime/Projets/Mixxx/1.10/mixxx/src/ladspaview.h

Go to the documentation of this file.
00001 /***************************************************************************
00002  *                                                                         *
00003  *   This program is free software; you can redistribute it and/or modify  *
00004  *   it under the terms of the GNU General Public License as published by  *
00005  *   the Free Software Foundation; either version 2 of the License, or     *
00006  *   (at your option) any later version.                                   *
00007  *                                                                         *
00008  ***************************************************************************/
00009 
00010 #ifndef LADSPAVIEW_H
00011 #define LADSPAVIEW_H
00012 
00013 #include <QtCore>
00014 #include <QtGui>
00015 
00016 #include "configobject.h"
00017 
00018 class QListWidget;
00019 class QScrollArea;
00020 class QGridLayout;
00021 class WKnob;
00022 
00023 class LADSPAPresetManager;
00024 class LADSPAPreset;
00025 class LADSPAPresetInstance;
00026 
00027 class LADSPAView : public QWidget
00028 {
00029     Q_OBJECT
00030 
00031 public:
00032     LADSPAView(QWidget *parent);
00033     ~LADSPAView();
00034 
00035 private:
00036     QListWidget * m_pPresetList;
00037     LADSPAPresetManager * m_pPresetManager;
00038     QWidget * m_pSlotTable;
00039     QGridLayout* m_pGridLayout;
00040 };
00041 
00042 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Defines