LMMS
Loading...
Searching...
No Matches
pluginview.cpp
Go to the documentation of this file.
1//-----------------------------------------------------------------------------
2// Project : SDK Core
3//
4// Category : Common Base Classes
5// Filename : public.sdk/source/common/pluginview.cpp
6// Created by : Steinberg, 01/2004
7// Description : Plug-In View Implementation
8//
9//-----------------------------------------------------------------------------
10// LICENSE
11// (c) 2021, Steinberg Media Technologies GmbH, All Rights Reserved
12//-----------------------------------------------------------------------------
13// Redistribution and use in source and binary forms, with or without modification,
14// are permitted provided that the following conditions are met:
15//
16// * Redistributions of source code must retain the above copyright notice,
17// this list of conditions and the following disclaimer.
18// * Redistributions in binary form must reproduce the above copyright notice,
19// this list of conditions and the following disclaimer in the documentation
20// and/or other materials provided with the distribution.
21// * Neither the name of the Steinberg Media Technologies nor the names of its
22// contributors may be used to endorse or promote products derived from this
23// software without specific prior written permission.
24//
25// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
26// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
27// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28// IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
29// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
30// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
32// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
33// OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34// OF THE POSSIBILITY OF SUCH DAMAGE.
35//-----------------------------------------------------------------------------
36
37#include "pluginview.h"
38
39namespace Steinberg {
40
41//------------------------------------------------------------------------
42// CPluginView implementation
43//------------------------------------------------------------------------
45: rect (0, 0, 0, 0)
46{
47 if (_rect)
48 rect = *_rect;
49}
50
51//------------------------------------------------------------------------
55
56//------------------------------------------------------------------------
61
62//------------------------------------------------------------------------
63tresult PLUGIN_API CPluginView::attached (void* parent, FIDString /*type*/)
64{
66
68 return kResultOk;
69}
70
71//------------------------------------------------------------------------
73{
74 systemWindow = nullptr;
75
77 return kResultOk;
78}
79
80//------------------------------------------------------------------------
82{
83 if (newSize)
84 rect = *newSize;
85 return kResultTrue;
86}
87
88//------------------------------------------------------------------------
90{
91 if (size)
92 {
93 *size = rect;
94 return kResultTrue;
95 }
96 return kInvalidArgument;
97}
98
99} // end of namespace
virtual void removedFromParent()
Definition pluginview.h:69
tresult PLUGIN_API attached(void *parent, FIDString type) SMTG_OVERRIDE
Definition pluginview.cpp:63
tresult PLUGIN_API getSize(ViewRect *size) SMTG_OVERRIDE
Definition pluginview.cpp:89
void * systemWindow
Definition pluginview.h:111
virtual void attachedToParent()
Definition pluginview.h:66
CPluginView(const ViewRect *rect=nullptr)
Definition pluginview.cpp:44
ViewRect rect
Definition pluginview.h:110
tresult PLUGIN_API onSize(ViewRect *newSize) SMTG_OVERRIDE
Definition pluginview.cpp:81
virtual ~CPluginView()
Definition pluginview.cpp:52
tresult PLUGIN_API removed() SMTG_OVERRIDE
Definition pluginview.cpp:72
tresult PLUGIN_API isPlatformTypeSupported(FIDString type) SMTG_OVERRIDE
Definition pluginview.cpp:57
static uintptr_t parent
Definition pugl.h:1644
Definition baseiids.cpp:43
const char8 * FIDString
Definition ftypes.h:117
@ kResultOk
Definition funknown.h:193
@ kInvalidArgument
Definition funknown.h:196
@ kNotImplemented
Definition funknown.h:197
@ kResultTrue
Definition funknown.h:194
int32 tresult
Definition ftypes.h:76
Definition iplugview.h:35
ulg size
Definition extract.c:2350