ASPiK SDK
iscalefactorchangedlistener.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 __iscalefactorchangedlistener__
6 #define __iscalefactorchangedlistener__
7 
8 #include "vstguifwd.h"
9 
10 namespace VSTGUI {
11 
12 //-----------------------------------------------------------------------------
14 {
15 public:
16  virtual ~IScaleFactorChangedListener () noexcept = default;
17 
18  virtual void onScaleFactorChanged (CFrame* frame, double newScaleFactor) = 0;
19 };
20 
21 } // namespace
22 
23 #endif // __iscalefactorchangedlistener__
Definition: customcontrols.cpp:8
Definition: iscalefactorchangedlistener.h:13
The CFrame is the parent container of all views.
Definition: cframe.h:32