~ubuntu-branches/ubuntu/trusty/lmms/trusty

« back to all changes in this revision

Viewing changes to plugins/vst_effect/VstEffectControlDialog.h

  • Committer: Charlie Smotherman
  • Date: 2012-12-05 22:08:38 UTC
  • mfrom: (33.1.7 lmms_0.4.13)
  • Revision ID: cjsmo@cableone.net-20121205220838-09pjfzew9m5023hr
* New  Upstream release.
  - Minor tweaking to ZynAddSubFX, CALF, SWH plugins  and Stefan Fendt's RC
    filters.
  - Added UI fixes: Magnentic effect of knobs and Piano-roll fixes
  - Updated German localization and copyright year
* debian/lmms-common.install:
  - added /usr/share/applications so the lmms.desktop file will correctly
    install (LP: #863366)
  - This should also fix the Software Center not displaying lmms in sound
    and video (LP: #824231)

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include "EffectControlDialog.h"
29
29
 
 
30
#include <QObject>
 
31
#include <QPainter>
 
32
 
30
33
 
31
34
class VstEffectControls;
 
35
class pixmapButton;
 
36
class QPixmap;
 
37
class QPushButton;
 
38
class pixmapButton;
32
39
 
33
40
 
34
41
class VstEffectControlDialog : public EffectControlDialog
37
44
        VstEffectControlDialog( VstEffectControls * _controls );
38
45
        virtual ~VstEffectControlDialog();
39
46
 
 
47
protected:
 
48
        virtual void paintEvent( QPaintEvent * _pe );
 
49
 
40
50
private:
41
51
        QWidget * m_pluginWidget;
42
52
 
 
53
        pixmapButton * m_openPresetButton;
 
54
        pixmapButton * m_rolLPresetButton;
 
55
        pixmapButton * m_rolRPresetButton;
 
56
        pixmapButton * m_selPresetButton;
 
57
        pixmapButton * m_managePluginButton;
 
58
        pixmapButton * m_savePresetButton;
 
59
 
43
60
} ;
44
61
 
45
62
#endif