~ubuntu-branches/ubuntu/utopic/muse/utopic

« back to all changes in this revision

Viewing changes to muse/widgets/vst_native_editor.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2013-01-07 10:27:14 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20130107102714-fajkwjbz02aqupbh
Tags: 2.1-1
* New upstream release.
* Refresh 1001-buildsystem.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef __VST_NATIVE_EDITOR_H__
25
25
#define __VST_NATIVE_EDITOR_H__
26
26
 
27
 
//#include "vst_native.h"
28
 
//#include <QtGlobal>
29
27
#include <QWidget>
30
28
 
 
29
#include "config.h"
 
30
 
 
31
#ifdef VST_NATIVE_SUPPORT
 
32
 
31
33
#if defined(Q_WS_X11)
32
34
#include <QX11Info>
33
35
#include <X11/Xlib.h>
50
52
class VstNativeSynthIF;
51
53
}
52
54
 
 
55
#endif  // VST_NATIVE_SUPPORT
 
56
 
53
57
namespace MusEGui {
54
58
 
55
59
class VstNativeEditor : public QWidget
56
60
{
57
61
    Q_OBJECT
58
62
 
 
63
#ifdef VST_NATIVE_SUPPORT
 
64
 
59
65
#if defined(Q_WS_X11)
60
66
    Display*   _display;
61
67
    Window     _vstEditor;
84
90
#endif
85
91
 
86
92
    //MusECore::VstNativeSynthIF* sif() const { return _sif; }
 
93
    
 
94
#endif  // VST_NATIVE_SUPPORT
87
95
};
88
96
 
89
97
} // namespace MusEGui