ASPiK SDK
macwindow.h
1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #pragma once
6 
7 #import "../iplatformwindow.h"
8 
9 @class NSWindow;
10 
11 //------------------------------------------------------------------------
12 namespace VSTGUI {
13 namespace Standalone {
14 namespace Platform {
15 namespace Mac {
16 
17 //------------------------------------------------------------------------
18 class IMacWindow : public IWindow
19 {
20 public:
21  virtual NSWindow* getNSWindow () const = 0;
22  virtual bool isPopup () const = 0;
23 };
24 
25 //------------------------------------------------------------------------
26 } // Mac
27 } // Platform
28 } // Standalone
29 } // VSTGUI
Definition: iplatformwindow.h:32
Definition: customcontrols.cpp:8