Lines Matching defs:ViewLayer

11 #include "ViewLayer.h"
16 ViewLayer::ViewLayer(BRect frame, const char* name,
54 ViewLayer::~ViewLayer()
57 ViewLayer* layer = fFirstChild;
59 ViewLayer* toast = layer;
67 ViewLayer::Bounds() const
77 ViewLayer::ConvertToVisibleInTopView(BRect* bounds) const
89 ViewLayer::AttachedToWindow(WindowLayer* window)
93 for (ViewLayer* child = FirstChild(); child; child = NextChild())
100 ViewLayer::DetachedFromWindow()
103 for (ViewLayer* child = FirstChild(); child; child = NextChild())
109 ViewLayer::AddChild(ViewLayer* layer)
112 printf("ViewLayer::AddChild() - ViewLayer already has a parent\n");
146 ViewLayer::RemoveChild(ViewLayer* layer)
149 printf("ViewLayer::RemoveChild(%p - %s) - ViewLayer is not child of this (%p) layer!\n", layer, layer ? layer->Name() : NULL, this);
193 ViewLayer*
194 ViewLayer::FirstChild() const
201 ViewLayer*
202 ViewLayer::PreviousChild() const
209 ViewLayer*
210 ViewLayer::NextChild() const
217 ViewLayer*
218 ViewLayer::LastChild() const
225 ViewLayer*
226 ViewLayer::TopLayer()
239 ViewLayer::CountChildren(bool deep) const
242 for (ViewLayer* child = FirstChild(); child; child = NextChild()) {
253 ViewLayer::CollectTokensForChildren(BList* tokenMap) const
255 for (ViewLayer* child = FirstChild(); child; child = NextChild()) {
262 ViewLayer*
263 ViewLayer::ViewAt(const BPoint& where, BRegion* windowContentClipping)
271 for (ViewLayer* child = FirstChild(); child; child = NextChild()) {
272 ViewLayer* layer = child->ViewAt(where, windowContentClipping);
281 ViewLayer::ConvertToParent(BPoint* point) const
290 ViewLayer::ConvertToParent(BRect* rect) const
299 ViewLayer::ConvertToParent(BRegion* region) const
308 ViewLayer::ConvertFromParent(BPoint* point) const
317 ViewLayer::ConvertFromParent(BRect* rect) const
326 ViewLayer::ConvertFromParent(BRegion* region) const
335 ViewLayer::ConvertToTop(BPoint* point) const
345 ViewLayer::ConvertToTop(BRect* rect) const
355 ViewLayer::ConvertToTop(BRegion* region) const
365 ViewLayer::ConvertFromTop(BPoint* point) const
375 ViewLayer::ConvertFromTop(BRect* rect) const
385 ViewLayer::ConvertFromTop(BRegion* region) const
395 ViewLayer::SetName(const char* string)
404 ViewLayer::MoveBy(int32 x, int32 y, BRegion* dirtyRegion)
471 ViewLayer::ResizeBy(int32 x, int32 y, BRegion* dirtyRegion)
498 for (ViewLayer* child = FirstChild(); child; child = NextChild()) {
513 for (ViewLayer* child = FirstChild(); child; child = NextChild())
525 ViewLayer::ParentResized(int32 x, int32 y, BRegion* dirtyRegion)
568 ViewLayer::ScrollBy(int32 x, int32 y, BRegion* dirtyRegion)
613 ViewLayer::Draw(DrawingEngine* drawingEngine, BRegion* effectiveClipping,
630 for (ViewLayer* child = FirstChild(); child; child = NextChild()) {
639 ViewLayer::ClientDraw(DrawingEngine* drawingEngine, BRegion* effectiveClipping)
665 ViewLayer::SetHidden(bool hidden)
695 ViewLayer::IsHidden() const
702 ViewLayer::UpdateVisibleDeep(bool parentVisible)
705 for (ViewLayer* child = FirstChild(); child; child = NextChild())
711 ViewLayer::PrintToStream() const
717 ViewLayer::RebuildClipping(bool deep)
723 for (ViewLayer* child = FirstChild(); child; child = NextChild()) {
736 ViewLayer::ScreenClipping(BRegion* windowContentClipping, bool force) const
760 ViewLayer::InvalidateScreenClipping(bool deep)
765 for (ViewLayer* child = FirstChild(); child; child = NextChild()) {
773 ViewLayer::_MoveScreenClipping(int32 x, int32 y, bool deep)
780 for (ViewLayer* child = FirstChild(); child; child = NextChild()) {