VSTGUI  4.10
Graphical User Interface Framework not only for VST plugins
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
CFrame Class Referencefinal

The CFrame is the parent container of all views. More...

+ Inheritance diagram for CFrame:

Classes

struct  CollectInvalidRects
 
struct  Impl
 

Public Types

using EventProcessingFunction = std::function< void()>
 
- Public Types inherited from CViewContainer
using ViewList = std::list< SharedPointer< CView >>
 
using ChildViewConstIterator = ViewList::const_iterator
 
using ChildViewConstReverseIterator = ViewList::const_reverse_iterator
 
- Public Types inherited from CView
enum  MouseListenerCall { MouseDown, MouseMoved, MouseUp, MouseCancel }
 

Public Member Functions

 CFrame (const CRect &size, VSTGUIEditorInterface *pEditor)
 
bool doAfterEventProcessing (EventProcessingFunction &&func)
 Queue a function which will be executed after the current event was handled.
 
bool doAfterEventProcessing (const EventProcessingFunction &func)
 Queue a function which will be executed after the current event was handled.
 
bool inEventProcessing () const
 Returns true if an event is currently being processed.
 
void onStartLocalEventLoop ()
 
bool performDrag (const DragDescription &desc, const SharedPointer< IDragCallback > &callback)
 
void invalid () override
 mark whole view as invalid
 
void invalidRect (const CRect &rect) override
 mark rect as invalid
 
bool removeView (CView *pView, bool withForget=true) override
 remove a child view
 
bool removeAll (bool withForget=true) override
 remove all child views
 
CViewgetViewAt (const CPoint &where, const GetViewOptions &options=GetViewOptions()) const override
 get the view at point where
 
CViewContainergetContainerAt (const CPoint &where, const GetViewOptions &options=GetViewOptions().deep()) const override
 get the container at point where
 
bool getViewsAt (const CPoint &where, ViewList &views, const GetViewOptions &options=GetViewOptions().deep()) const override
 get all views at point where, top->down
 
bool hitTestSubViews (const CPoint &where, const Event &event) override
 
CPointframeToLocal (CPoint &point) const override
 conversion from frame coordinates to local view coordinates
 
CPointlocalToFrame (CPoint &point) const override
 conversion from local view coordinates to frame coordinates
 
bool attached (CView *parent) override
 view is attached to a parent view
 
void draw (CDrawContext *pContext) override
 called if the view should draw itself
 
void drawRect (CDrawContext *pContext, const CRect &updateRect) override
 called if the view should draw itself
 
void setViewSize (const CRect &rect, bool invalid=true) override
 set views size
 
void dispatchEvent (Event &event) override
 dispatch an event
 
VSTGUIEditorInterfacegetEditor () const override
 get editor
 
IPlatformFrame * getPlatformFrame () const
 
CBaseObjectnewCopy () const override
 
Focus Drawing Methods [new in 4.0]

If focus drawing is enabled, the focus view will get a focus ring around it defined with the focus width and the focus color.

Views can define their own shape with the IFocusDrawing interface.

void setFocusDrawingEnabled (bool state)
 enable focus drawing
 
bool focusDrawingEnabled () const
 is focus drawing enabled
 
void setFocusColor (const CColor &color)
 set focus draw color
 
CColor getFocusColor () const
 get focus draw color
 
void setFocusWidth (CCoord width)
 set focus draw width
 
CCoord getFocusWidth () const
 get focus draw width
 
- Public Member Functions inherited from CViewContainer
 CViewContainer (const CRect &size)
 CViewContainer constructor.
 
 CViewContainer (const CViewContainer &viewContainer)
 
virtual bool invalidateDirtyViews ()
 
virtual CRect getVisibleSize (const CRect &rect) const
 
void setTransform (const CGraphicsTransform &t)
 
const CGraphicsTransformgetTransform () const
 
void registerViewContainerListener (IViewContainerListener *listener)
 
void unregisterViewContainerListener (IViewContainerListener *listener)
 
void draw (CDrawContext *pContext) override
 
void drawRect (CDrawContext *pContext, const CRect &updateRect) override
 
void onMouseDownEvent (MouseDownEvent &event) override
 called when a mouse down event occurs
 
void onMouseMoveEvent (MouseMoveEvent &event) override
 called when a mouse move event occurs
 
void onMouseUpEvent (MouseUpEvent &event) override
 called when a mouse up event occurs
 
void onMouseCancelEvent (MouseCancelEvent &event) override
 called when mouse tracking should be canceled
 
void onMouseWheelEvent (MouseWheelEvent &event) override
 called when a mouse wheel event occurs
 
void onZoomGestureEvent (ZoomGestureEvent &event) override
 called when a zoom gesture event occurs
 
CMessageResult notify (CBaseObject *sender, IdStringPtr message) override
 
bool onWheel (const CPoint &where, const CMouseWheelAxis &axis, const float &distance, const CButtonState &buttons) final
 
SharedPointer< IDropTargetgetDropTarget () override
 get the drag target for drag and drop handling
 
void looseFocus () override
 called if view should loose focus
 
void takeFocus () override
 called if view should take focus
 
bool isDirty () const override
 check if view is dirty
 
void invalid () override
 mark whole view as invalid
 
void invalidRect (const CRect &rect) override
 mark rect as invalid
 
void setViewSize (const CRect &rect, bool invalid=true) override
 
void parentSizeChanged () override
 notification that one of the views parent has changed its size
 
bool sizeToFit () override
 resize view to optimal size
 
bool removed (CView *parent) override
 view is removed from parent view
 
bool attached (CView *parent) override
 view is attached to a parent view
 
CPointframeToLocal (CPoint &point) const override
 conversion from frame coordinates to local view coordinates
 
CPointlocalToFrame (CPoint &point) const override
 conversion from local view coordinates to frame coordinates
 
CBaseObjectnewCopy () const override
 
CViewContainerasViewContainer () final
 
const CViewContainerasViewContainer () const final
 
bool addView (CView *pView, const CRect &mouseableArea, bool mouseEnabled=true)
 add a child view
 
virtual bool addView (CView *pView, CView *pBefore=nullptr)
 add a child view before another view
 
bool isChild (CView *pView) const
 check if pView is a child view of this container
 
virtual bool isChild (CView *pView, bool deep) const
 check if pView is a child view of this container
 
virtual bool hasChildren () const
 check if container has child views
 
virtual uint32_t getNbViews () const
 get the number of child views
 
virtual CViewgetView (uint32_t index) const
 get the child view at index
 
virtual bool changeViewZOrder (CView *view, uint32_t newIndex)
 change view z order position
 
virtual void setAutosizingEnabled (bool state)
 enable or disable autosizing subviews.
 
bool getAutosizingEnabled () const
 
template<class ViewClass , class ContainerClass >
uint32_t getChildViewsOfType (ContainerClass &result, bool deep=false) const
 get child views of type ViewClass.
 
template<typename Proc >
void forEachChild (Proc proc) const
 execute proc for each child view
 
virtual void setBackgroundColor (const CColor &color)
 set the background color (will only be drawn if this container is not set to transparent and does not have a background bitmap)
 
virtual CColor getBackgroundColor () const
 get the background color
 
virtual void setBackgroundOffset (const CPoint &p)
 set the offset of the background bitmap
 
virtual CPoint getBackgroundOffset () const
 get the offset of the background bitmap
 
virtual void drawBackgroundRect (CDrawContext *pContext, const CRect &_updateRect)
 draw the background
 
virtual void setBackgroundColorDrawStyle (CDrawStyle style)
 
CDrawStyle getBackgroundColorDrawStyle () const
 
- Public Member Functions inherited from CView
 CView (const CRect &size)
 
 CView (const CView &view)
 
void setSubviewState (bool state)
 
bool isSubview () const
 
virtual bool wantsWindowActiveStateChangeNotification () const
 whether this view wants to be informed if the window's active state changes
 
virtual void onWindowActivate (bool state)
 called when the active state of the window changes
 
void setTooltipText (UTF8StringPtr text)
 
CMouseEventResult callMouseListener (MouseListenerCall type, CPoint pos, CButtonState buttons)
 
void callMouseListenerEnteredExited (bool mouseEntered)
 
CMessageResult notify (CBaseObject *sender, IdStringPtr message) override
 
CBaseObjectnewCopy () const override
 
virtual void onMouseEnterEvent (MouseEnterEvent &event)
 called when the mouse enters this view
 
virtual void onMouseExitEvent (MouseExitEvent &event)
 called when the mouse leaves this view
 
virtual void setMouseEnabled (bool bEnable=true)
 turn on/off mouse usage for this view
 
bool getMouseEnabled () const
 get the state of wheather this view uses the mouse or not
 
virtual void setMouseableArea (const CRect &rect)
 set the area in which the view reacts to the mouse
 
CRect getMouseableArea () const
 get the area in which the view reacts to the mouse
 
virtual CMouseEventResult onMouseDown (CPoint &where, const CButtonState &buttons)
 do not use any longer.
 
virtual CMouseEventResult onMouseUp (CPoint &where, const CButtonState &buttons)
 do not use any longer.
 
virtual CMouseEventResult onMouseMoved (CPoint &where, const CButtonState &buttons)
 do not use any longer.
 
virtual CMouseEventResult onMouseCancel ()
 do not use any longer.
 
virtual CMouseEventResult onMouseEntered (CPoint &where, const CButtonState &buttons)
 do not use any longer.
 
virtual CMouseEventResult onMouseExited (CPoint &where, const CButtonState &buttons)
 do not use any longer.
 
virtual bool onWheel (const CPoint &where, const float &distance, const CButtonState &buttons) final
 
CRectgetMouseableArea (CRect &rect) const
 get the area in which the view reacts to the mouse
 
void setHitTestPath (CGraphicsPath *path)
 
virtual bool hitTest (const CPoint &where, const Event &event=noEvent())
 check if where hits this view
 
bool doDrag (const DragDescription &dragDescription, const SharedPointer< IDragCallback > &callback={})
 A drag can only be started from within onMouseDown or onMouseMove.
 
void setDropTarget (const SharedPointer< IDropTarget > &dt)
 set a custom drop target
 
DragResult doDrag (IDataPackage *source, const CPoint &offset=CPoint(0, 0), CBitmap *dragBitmap=nullptr)
 a drag can only be started from within onMouseDown
 
virtual void onKeyboardEvent (KeyboardEvent &event)
 called when a keyboard event is dispatched to this view
 
virtual int32_t onKeyDown (VstKeyCode &keyCode)
 called if a key down event occurs and this view has focus
 
virtual int32_t onKeyUp (VstKeyCode &keyCode)
 called if a key up event occurs and this view has focus
 
CCoord getHeight () const
 get the height of the view
 
CCoord getWidth () const
 get the width of the view
 
const CRectgetViewSize () const
 read only access to view size
 
virtual CRect getVisibleViewSize () const
 returns the visible size of the view
 
virtual void setAutosizeFlags (int32_t flags)
 set autosize flags
 
int32_t getAutosizeFlags () const
 get autosize flags
 
virtual bool wantsFocus () const
 check if view supports focus
 
virtual void setWantsFocus (bool state)
 set focus support on/off
 
bool getAttributeSize (const CViewAttributeID id, uint32_t &outSize) const
 get the size of an attribute
 
bool getAttribute (const CViewAttributeID id, const uint32_t inSize, void *outData, uint32_t &outSize) const
 get an attribute
 
bool setAttribute (const CViewAttributeID id, const uint32_t inSize, const void *inData)
 set an attribute
 
bool removeAttribute (const CViewAttributeID id)
 remove an attribute
 
template<typename T >
bool setAttribute (const CViewAttributeID id, const T &data)
 set an attribute
 
template<typename T >
bool getAttribute (const CViewAttributeID id, T &data) const
 get an attribute
 
virtual void setBackground (CBitmap *background)
 set the background image of this view
 
CBitmapgetBackground () const
 get the background image of this view
 
virtual void setDisabledBackground (CBitmap *background)
 set background image used when the mouse is not enabled
 
CBitmapgetDisabledBackground () const
 get background image used when the mouse is not enabled
 
CBitmapgetDrawBackground () const
 get the bitmap which is drawn depending on the enabled state.
 
virtual void setTransparency (bool val)
 set views transparent state
 
bool getTransparency () const
 get views transparent state
 
virtual void setAlphaValue (float alpha)
 set alpha value which will be applied when drawing this view
 
float getAlphaValue () const
 get alpha value
 
bool isAttached () const
 is view attached to a parentView
 
CViewgetParentView () const
 get parent view
 
CFramegetFrame () const
 get frame
 
void addAnimation (IdStringPtr name, Animation::IAnimationTarget *target, Animation::ITimingFunction *timingFunction, CBaseObject *notificationObject)
 
void addAnimation (IdStringPtr name, Animation::IAnimationTarget *target, Animation::ITimingFunction *timingFunction, const Animation::DoneFunction &doneFunc=nullptr, bool callDoneOnCancel=false)
 
void removeAnimation (IdStringPtr name)
 
void removeAllAnimations ()
 
void registerViewListener (IViewListener *listener)
 
void unregisterViewListener (IViewListener *listener)
 
void registerViewEventListener (IViewEventListener *listener)
 
void unregisterViewEventListener (IViewEventListener *listener)
 
void registerViewMouseListener (IViewMouseListener *listener)
 
void unregisterViewMouseListener (IViewMouseListener *listener)
 
CGraphicsTransform getGlobalTransform (bool ignoreFrame=false) const
 get the active global transform for this view
 
template<typename T >
T & translateToGlobal (T &t, bool ignoreFrame=false) const
 translates a local coordinate to a global one using parent transforms
 
template<typename T >
translateToGlobal (const T &t, bool ignoreFrame=false) const
 translates a local coordinate to a global one using parent transforms
 
template<typename T >
T & translateToLocal (T &t, bool ignoreFrame=false) const
 translates a global coordinate to a local one using parent transforms
 
template<typename T >
translateToLocal (const T &t, bool ignoreFrame=false) const
 translates a local coordinate to a global one using parent transforms
 
virtual bool checkUpdate (const CRect &updateRect) const
 
virtual void setDirty (bool val=true)
 set the view to dirty so that it is redrawn in the next idle.
 
virtual void setVisible (bool state)
 set visibility state
 
bool isVisible () const
 get visibility state
 
virtual void onIdle ()
 called on idle when view wants idle
 
void setWantsIdle (bool state)
 enable/disable onIdle() callback
 
bool wantsIdle () const
 returns if the view wants idle callback or not
 
- Public Member Functions inherited from CBaseObject
 CBaseObject ()=default
 
 ~CBaseObject () noexceptoverride=default
 
 CBaseObject (const CBaseObject &)
 
CBaseObjectoperator= (const CBaseObject &)
 
virtual CMessageResult notify ([[maybe_unused]] CBaseObject *sender,[[maybe_unused]] IdStringPtr message)
 
- Public Member Functions inherited from ReferenceCounted< T >
 ReferenceCounted ()=default
 
virtual ~ReferenceCounted () noexcept=default
 
 ReferenceCounted (const ReferenceCounted &)
 
ReferenceCountedoperator= (const ReferenceCounted &)
 
void forget () override
 decrease refcount and delete object if refcount == 0
 
void remember () override
 increase refcount
 
virtual int32_t getNbReference () const
 get refcount
 

Protected Member Functions

 CFrame (const CFrame &)=delete
 
 ~CFrame () noexceptoverride=default
 
void beforeDelete () override
 
void checkMouseViews (const MouseEvent &event)
 
void clearMouseViews (const CPoint &where, Modifiers modifiers, bool callMouseExit=true)
 
void removeFromMouseViews (CView *view)
 
void setCollectInvalidRects (CollectInvalidRects *collectInvalidRects)
 
void dispatchKeyboardEventToHooks (KeyboardEvent &event)
 
void callMouseObserverMouseEntered (CView *view)
 
void callMouseObserverMouseExited (CView *view)
 
void callMouseObserverOtherMouseEvent (MouseEvent &event)
 
void dispatchNewScaleFactor (double newScaleFactor)
 
void platformDrawRects (const PlatformGraphicsDeviceContextPtr &context, double scaleFactor, const std::vector< CRect > &rects) override
 
void platformOnEvent (Event &event) override
 
DragOperation platformOnDragEnter (DragEventData data) override
 
DragOperation platformOnDragMove (DragEventData data) override
 
void platformOnDragLeave (DragEventData data) override
 
bool platformOnDrop (DragEventData data) override
 
void platformOnActivate (bool state) override
 
void platformOnWindowActivate (bool state) override
 
void platformScaleFactorChanged (double newScaleFactor) override
 
- Protected Member Functions inherited from CViewContainer
 ~CViewContainer () noexceptoverride
 
void beforeDelete () override
 
virtual bool checkUpdateRect (CView *view, const CRect &rect)
 check if view needs to be updated for rect
 
void setMouseDownView (CView *view)
 
CViewgetMouseDownView () const
 
const ViewListgetChildren () const
 
- Protected Member Functions inherited from CView
 ~CView () noexceptoverride
 
CGraphicsPathgetHitTestPath () const
 
bool hasViewFlag (int32_t bit) const
 
void setViewFlag (int32_t bit, bool state)
 
void setAlphaValueNoInvalidate (float value)
 
void setParentFrame (CFrame *frame)
 
void setParentView (CView *parent)
 

CFrame Methods

static int32_t kDefaultKnobMode = kCircularMode
 default knob mode if host does not provide one
 
bool open (void *pSystemWindow, PlatformType systemWindowType=PlatformType::kDefaultNative, IPlatformFrameConfig *=nullptr)
 
void close ()
 closes the frame and calls forget
 
bool setZoom (double zoomFactor)
 set zoom factor
 
double getZoom () const
 get zoom factor
 
void setBitmapInterpolationQuality (BitmapInterpolationQuality quality)
 set interpolation quality for bitmaps
 
BitmapInterpolationQuality getBitmapInterpolationQuality () const
 get interpolation quality for bitmaps
 
double getScaleFactor () const
 
void idle ()
 
uint64_t getTicks () const
 get the current time (in ms)
 
int32_t getKnobMode () const
 get hosts knob mode
 
bool setPosition (CCoord x, CCoord y)
 repositions the frame
 
bool getPosition (CCoord &x, CCoord &y) const
 get global position of frame
 
bool setSize (CCoord width, CCoord height)
 set size of frame (and the platform representation)
 
bool getSize (CRect *pSize) const
 get size relative to parent
 
bool getSize (CRect &pSize) const
 
bool setModalView (CView *pView)
 set a modal view.
 
CViewgetModalView () const
 get the currently active modal view or nullptr if there is none
 
Optional< ModalViewSessionIDbeginModalViewSession (CView *view)
 begin a new modal view session
 
bool endModalViewSession (ModalViewSessionID session)
 end a modal view session
 
void beginEdit (int32_t index)
 
void endEdit (int32_t index)
 
bool getCurrentMouseLocation (CPoint &where) const
 get current mouse location
 
CButtonState getCurrentMouseButtons () const
 get current mouse buttons and key modifiers
 
void setCursor (CCursorType type)
 set mouse cursor
 
void setFocusView (CView *pView)
 
CViewgetFocusView () const
 
bool advanceNextFocusView (CView *oldFocus, bool reverse=false) override
 
void onViewAdded (CView *pView)
 
void onViewRemoved (CView *pView)
 
void onActivate (bool state)
 called when the platform view/window is activated/deactivated
 
void invalidate (const CRect &rect)
 
void scrollRect (const CRect &src, const CPoint &distance)
 scroll src rect by distance
 
void enableTooltips (bool state, uint32_t delayTimeInMs=1000)
 enable or disable tooltips
 
Animation::AnimatorgetAnimator ()
 get animator for this frame
 
SharedPointer< IDataPackagegetClipboard ()
 get the clipboard data.
 
void setClipboard (const SharedPointer< IDataPackage > &data)
 set the clipboard data.
 
IViewAddedRemovedObservergetViewAddedRemovedObserver () const
 
void setViewAddedRemovedObserver (IViewAddedRemovedObserver *observer)
 
void registerKeyboardHook (IKeyboardHook *hook)
 register a keyboard hook
 
void unregisterKeyboardHook (IKeyboardHook *hook)
 unregister a keyboard hook
 
void registerMouseObserver (IMouseObserver *observer)
 register a mouse observer
 
void unregisterMouseObserver (IMouseObserver *observer)
 unregister a mouse observer
 
void registerScaleFactorChangedListeneer (IScaleFactorChangedListener *listener)
 
void unregisterScaleFactorChangedListeneer (IScaleFactorChangedListener *listener)
 
void registerScaleFactorChangedListener (IScaleFactorChangedListener *listener)
 
void unregisterScaleFactorChangedListener (IScaleFactorChangedListener *listener)
 
void registerFocusViewObserver (IFocusViewObserver *observer)
 
void unregisterFocusViewObserver (IFocusViewObserver *observer)
 

Additional Inherited Members

- Static Public Attributes inherited from CView
static bool kDirtyCallAlwaysOnMainThread = false
 if this is true, setting a view dirty will call invalid() instead of checking it in idle.
 
static uint32_t idleRate = 30
 global idle rate in Hz, defaults to 30 Hz
 
- Protected Types inherited from CViewContainer
enum  { kAutosizeSubviews = 1 << (CView::kLastCViewFlag + 1) }
 

Detailed Description

The CFrame is the parent container of all views.

It creates a platform dependend view object.

On Mac OS X it is a HIView or NSView.
On Windows it's a WS_CHILD Window.

Member Typedef Documentation

using EventProcessingFunction = std::function<void ()>

Constructor & Destructor Documentation

CFrame ( const CRect size,
VSTGUIEditorInterface pEditor 
)
CFrame ( const CFrame )
protecteddelete
~CFrame ( )
overrideprotecteddefaultnoexcept

Member Function Documentation

bool advanceNextFocusView ( CView oldFocus,
bool  reverse = false 
)
overridevirtual
Parameters
oldFocusold focus view
reversesearch order
Returns
true on success

Reimplemented from CViewContainer.

bool attached ( CView parent)
overridevirtual

view is attached to a parent view

Parameters
parentparent view
Returns
true if view successfully attached to parent

Reimplemented from CView.

void beforeDelete ( )
overrideprotectedvirtual

Reimplemented from ReferenceCounted< T >.

void beginEdit ( int32_t  index)
Optional< ModalViewSessionID > beginModalViewSession ( CView view)

begin a new modal view session

A modal view session is active until endModalViewSession is called and in that time all UI events are only dispatched to the modal view or its child views. Modal view sessions can be stacked but must be ended in the same order.

Parameters
viewnew modal view (ownership is transfered to frame, the same as addView)
Returns
a unique session identifier
void callMouseObserverMouseEntered ( CView view)
protected
void callMouseObserverMouseExited ( CView view)
protected
void callMouseObserverOtherMouseEvent ( MouseEvent event)
protected
void checkMouseViews ( const MouseEvent event)
protected
void clearMouseViews ( const CPoint where,
Modifiers  modifiers,
bool  callMouseExit = true 
)
protected
void close ( )

closes the frame and calls forget

void dispatchEvent ( Event event)
overridevirtual

dispatch an event

the event is then dispatched to the event listeners and then to one of the event methods.

Reimplemented from CView.

void dispatchKeyboardEventToHooks ( KeyboardEvent event)
protected
void dispatchNewScaleFactor ( double  newScaleFactor)
protected
bool doAfterEventProcessing ( EventProcessingFunction &&  func)

Queue a function which will be executed after the current event was handled.

Only allowed when inEventProcessing () is true

Parameters
funcFunction to execute
Returns
true if the function was added to the execution queue
bool doAfterEventProcessing ( const EventProcessingFunction func)

Queue a function which will be executed after the current event was handled.

Only allowed when inEventProcessing () is true

Parameters
funcFunction to execute
Returns
true if the function was added to the execution queue
void draw ( CDrawContext pContext)
overridevirtual

called if the view should draw itself

Parameters
pContextdraw context in which to draw

Reimplemented from CView.

void drawRect ( CDrawContext pContext,
const CRect updateRect 
)
overridevirtual

called if the view should draw itself

Reimplemented from CView.

void enableTooltips ( bool  state,
uint32_t  delayTimeInMs = 1000 
)

enable or disable tooltips

void endEdit ( int32_t  index)
bool endModalViewSession ( ModalViewSessionID  session)

end a modal view session

Parameters
sessiona session identifer
Returns
true on success
bool focusDrawingEnabled ( ) const

is focus drawing enabled

CPoint& frameToLocal ( CPoint point) const
inlineoverridevirtual

conversion from frame coordinates to local view coordinates

Parameters
pointlocation
Returns
converted point

Reimplemented from CView.

Animation::Animator * getAnimator ( )

get animator for this frame

BitmapInterpolationQuality getBitmapInterpolationQuality ( ) const

get interpolation quality for bitmaps

SharedPointer< IDataPackage > getClipboard ( )

get the clipboard data.

data is owned by the caller

CViewContainer * getContainerAt ( const CPoint p,
const GetViewOptions options = GetViewOptions ().deep () 
) const
overridevirtual

get the container at point where

Parameters
plocation
optionssearch search options
Returns
view container at position p or null

Reimplemented from CViewContainer.

CButtonState getCurrentMouseButtons ( ) const

get current mouse buttons and key modifiers

Returns
mouse and modifier state
bool getCurrentMouseLocation ( CPoint where) const

get current mouse location

Parameters
wherelocation of mouse
Returns
true on success
VSTGUIEditorInterface * getEditor ( ) const
overridevirtual

get editor

Reimplemented from CView.

CColor getFocusColor ( ) const

get focus draw color

CView * getFocusView ( ) const
CCoord getFocusWidth ( ) const

get focus draw width

int32_t getKnobMode ( ) const

get hosts knob mode

CView * getModalView ( ) const

get the currently active modal view or nullptr if there is none

IPlatformFrame * getPlatformFrame ( ) const
bool getPosition ( CCoord x,
CCoord y 
) const

get global position of frame

Parameters
xx coordinate
yy coordinate
Returns
true on success
double getScaleFactor ( ) const
bool getSize ( CRect pRect) const

get size relative to parent

Parameters
pRectsize
Returns
true on success
bool getSize ( CRect pSize) const
uint64_t getTicks ( ) const

get the current time (in ms)

Returns
tick count in milliseconds
IViewAddedRemovedObserver * getViewAddedRemovedObserver ( ) const
CView * getViewAt ( const CPoint p,
const GetViewOptions options = GetViewOptions () 
) const
overridevirtual

get the view at point where

Parameters
plocation
optionssearch options
Returns
view at position p or null

Reimplemented from CViewContainer.

bool getViewsAt ( const CPoint p,
ViewList views,
const GetViewOptions options = GetViewOptions ().deep () 
) const
overridevirtual

get all views at point where, top->down

Parameters
plocation
viewsresult list
optionssearch options
Returns
success

Reimplemented from CViewContainer.

double getZoom ( ) const

get zoom factor

bool hitTestSubViews ( const CPoint where,
const Event event 
)
overridevirtual
Parameters
wherepoint
eventcurrent event
Returns
true if any sub view accepts the hit

Reimplemented from CViewContainer.

void idle ( )
bool inEventProcessing ( ) const

Returns true if an event is currently being processed.

void invalid ( )
inlineoverridevirtual

mark whole view as invalid

Reimplemented from CView.

void invalidate ( const CRect rect)
void invalidRect ( const CRect rect)
overridevirtual

mark rect as invalid

Parameters
rectrect to invalidate

Reimplemented from CView.

CPoint& localToFrame ( CPoint point) const
inlineoverridevirtual

conversion from local view coordinates to frame coordinates

Parameters
pointlocation
Returns
converted point

Reimplemented from CView.

CBaseObject* newCopy ( ) const
inlineoverride
void onActivate ( bool  state)

called when the platform view/window is activated/deactivated

void onStartLocalEventLoop ( )
void onViewAdded ( CView pView)
Parameters
pViewview which was added
void onViewRemoved ( CView pView)
Parameters
pViewview which was removed
bool open ( void *  pSystemWindow,
PlatformType  systemWindowType = PlatformType::kDefaultNative,
IPlatformFrameConfig *  config = nullptr 
)
bool performDrag ( const DragDescription desc,
const SharedPointer< IDragCallback > &  callback 
)
void platformDrawRects ( const PlatformGraphicsDeviceContextPtr context,
double  scaleFactor,
const std::vector< CRect > &  rects 
)
overrideprotected
void platformOnActivate ( bool  state)
overrideprotected
DragOperation platformOnDragEnter ( DragEventData  data)
overrideprotected
void platformOnDragLeave ( DragEventData  data)
overrideprotected
DragOperation platformOnDragMove ( DragEventData  data)
overrideprotected
bool platformOnDrop ( DragEventData  data)
overrideprotected
void platformOnEvent ( Event event)
overrideprotected
void platformOnWindowActivate ( bool  state)
overrideprotected
void platformScaleFactorChanged ( double  newScaleFactor)
overrideprotected
void registerFocusViewObserver ( IFocusViewObserver observer)
void registerKeyboardHook ( IKeyboardHook hook)

register a keyboard hook

void registerMouseObserver ( IMouseObserver observer)

register a mouse observer

void registerScaleFactorChangedListeneer ( IScaleFactorChangedListener listener)
inline
void registerScaleFactorChangedListener ( IScaleFactorChangedListener listener)
bool removeAll ( bool  withForget = true)
overridevirtual

remove all child views

Parameters
withForgetbool to indicate if the view's reference counter should be decreased after removed from the container
Returns
true on success

Reimplemented from CViewContainer.

void removeFromMouseViews ( CView view)
protected
bool removeView ( CView pView,
bool  withForget = true 
)
overridevirtual

remove a child view

Parameters
pViewthe view which should be removed from the container
withForgetbool to indicate if the view's reference counter should be decreased after removed from the container
Returns
true on success

Reimplemented from CViewContainer.

void scrollRect ( const CRect src,
const CPoint distance 
)

scroll src rect by distance

Parameters
srcrect which to scroll
distancepoint of distance
void setBitmapInterpolationQuality ( BitmapInterpolationQuality  quality)

set interpolation quality for bitmaps

void setClipboard ( const SharedPointer< IDataPackage > &  data)

set the clipboard data.

void setCollectInvalidRects ( CollectInvalidRects collectInvalidRects)
protected
void setCursor ( CCursorType  type)

set mouse cursor

Parameters
typecursor type see CCursorType
void setFocusColor ( const CColor color)

set focus draw color

void setFocusDrawingEnabled ( bool  state)

enable focus drawing

void setFocusView ( CView pView)
Parameters
pViewnew focus view
void setFocusWidth ( CCoord  width)

set focus draw width

bool setModalView ( CView pView)

set a modal view.

deprecated use beginModalViewSession instead

Parameters
pViewthe view which should be set to modal.
Returns
true if view could be set as the modal view. false if there is a already a modal view or the view to be set as modal is already attached.
bool setPosition ( CCoord  x,
CCoord  y 
)

repositions the frame

Parameters
xx coordinate
yy coordinate
Returns
true on success
bool setSize ( CCoord  width,
CCoord  height 
)

set size of frame (and the platform representation)

Parameters
widthnew width
heightnew height
Returns
true on success
void setViewAddedRemovedObserver ( IViewAddedRemovedObserver observer)
void setViewSize ( const CRect newSize,
bool  doInvalid = true 
)
overridevirtual

set views size

Parameters
newSizerect of new size of view
doInvalidif true set view dirty

Reimplemented from CView.

bool setZoom ( double  zoomFactor)

set zoom factor

void unregisterFocusViewObserver ( IFocusViewObserver observer)
void unregisterKeyboardHook ( IKeyboardHook hook)

unregister a keyboard hook

void unregisterMouseObserver ( IMouseObserver observer)

unregister a mouse observer

void unregisterScaleFactorChangedListeneer ( IScaleFactorChangedListener listener)
inline
void unregisterScaleFactorChangedListener ( IScaleFactorChangedListener listener)

Member Data Documentation

int32_t kDefaultKnobMode = kCircularMode
static

default knob mode if host does not provide one


The documentation for this class was generated from the following files: