ASPiK SDK
nsviewoptionmenu.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 #ifndef __nsviewoptionmenu__
6 #define __nsviewoptionmenu__
7 
8 #include "../../iplatformoptionmenu.h"
9 
10 #if MAC_COCOA
11 
12 namespace VSTGUI {
13 
14 //-----------------------------------------------------------------------------
15 class NSViewOptionMenu : public IPlatformOptionMenu
16 {
17 public:
18 
19  PlatformOptionMenuResult popup (COptionMenu* optionMenu) override;
20 
21 //-----------------------------------------------------------------------------
22 protected:
23  static bool initClass ();
24 };
25 
26 } // namespace
27 
28 #endif // MAC_COCOA
29 
30 #endif // __nsviewoptionmenu__
Definition: customcontrols.cpp:8