1 //------------------------------------------------------------------------------ 2 // Copyright (c) 2001-2002, Haiku, Inc. 3 // 4 // Permission is hereby granted, free of charge, to any person obtaining a 5 // copy of this software and associated documentation files (the "Software"), 6 // to deal in the Software without restriction, including without limitation 7 // the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 // and/or sell copies of the Software, and to permit persons to whom the 9 // Software is furnished to do so, subject to the following conditions: 10 // 11 // The above copyright notice and this permission notice shall be included in 12 // all copies or substantial portions of the Software. 13 // 14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 19 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20 // DEALINGS IN THE SOFTWARE. 21 // 22 // File Name: Layer.h 23 // Author: DarkWyrm <bpmagic@columbus.rr.com> 24 // Adi Oanca <adioanca@cotty.iren.com> 25 // Stephan Aßmus <superstippi@gmx.de> 26 // Description: Class used for rendering to the frame buffer. One layer per 27 // view on screen and also for window decorators 28 // 29 //------------------------------------------------------------------------------ 30 #ifndef _LAYER_H_ 31 #define _LAYER_H_ 32 33 #include <GraphicsDefs.h> 34 #include <List.h> 35 #include <Locker.h> 36 #include <OS.h> 37 #include <String.h> 38 #include <Rect.h> 39 #include <Region.h> 40 41 #include "RGBColor.h" 42 #include "ServerWindow.h" 43 44 //#define NEW_CLIPPING 1 45 46 enum { 47 B_LAYER_NONE = 1, 48 B_LAYER_MOVE = 2, 49 B_LAYER_SIMPLE_MOVE = 3, 50 B_LAYER_RESIZE = 4, 51 B_LAYER_MASK_RESIZE = 5, 52 }; 53 54 enum { 55 B_LAYER_ACTION_NONE = 0, 56 B_LAYER_ACTION_MOVE, 57 B_LAYER_ACTION_RESIZE 58 }; 59 60 enum { 61 B_LAYER_CHILDREN_DEPENDANT = 0x1000U, 62 }; 63 64 class ServerApp; 65 class RootLayer; 66 class DisplayDriver; 67 class LayerData; 68 class ServerBitmap; 69 70 class PointerEvent { 71 public: 72 int32 code; // B_MOUSE_UP, B_MOUSE_DOWN, B_MOUSE_MOVED, 73 // B_MOUSE_WHEEL_CHANGED 74 bigtime_t when; 75 BPoint where; 76 float wheel_delta_x; 77 float wheel_delta_y; 78 int32 modifiers; 79 int32 buttons; // B_PRIMARY_MOUSE_BUTTON, B_SECONDARY_MOUSE_BUTTON 80 // B_TERTIARY_MOUSE_BUTTON 81 int32 clicks; 82 }; 83 84 class Layer { 85 public: 86 Layer(BRect frame, const char* name, 87 int32 token, uint32 resize, 88 uint32 flags, DisplayDriver* driver); 89 virtual ~Layer(); 90 91 void AddChild(Layer* child, ServerWindow* serverWin); 92 void RemoveChild(Layer* child); 93 void RemoveSelf(); 94 bool HasChild(Layer* layer); 95 96 void SetRootLayer(RootLayer* rl) 97 { fRootLayer = rl; } 98 RootLayer* GetRootLayer() const 99 { return fRootLayer; } 100 101 uint32 CountChildren() const; 102 Layer* FindLayer(const int32 token); 103 Layer* LayerAt(const BPoint &pt, bool recursive = true); 104 105 virtual Layer* FirstChild() const; 106 virtual Layer* NextChild() const; 107 virtual Layer* PreviousChild() const; 108 virtual Layer* LastChild() const; 109 110 virtual void SetName(const char* name); 111 inline const char* Name() const 112 { return fName.String(); } 113 114 inline uint32 ResizeMode() const 115 { return fResizeMode; } 116 117 virtual void SetFlags(uint32 flags); 118 inline uint32 Flags() const 119 { return fFlags; } 120 121 #ifndef NEW_CLIPPING 122 virtual void RebuildFullRegion(); 123 void StartRebuildRegions(const BRegion& reg, 124 Layer* target, 125 uint32 action, 126 BPoint& pt); 127 128 void RebuildRegions(const BRegion& reg, 129 uint32 action, 130 BPoint pt, 131 BPoint ptOffset); 132 133 uint32 ResizeOthers(float x, float y, 134 BPoint coords[], 135 BPoint* ptOffset); 136 137 void EmptyGlobals(); 138 139 #endif 140 void Redraw(const BRegion& reg, 141 Layer* startFrom = NULL); 142 143 virtual void Draw(const BRect& r); 144 145 void Show(bool invalidate = true); 146 void Hide(bool invalidate = true); 147 bool IsHidden() const; 148 149 // graphic state 150 void PushState(); 151 void PopState(); 152 153 // coordinate system 154 BRect Bounds() const; 155 BRect Frame() const; 156 157 virtual void MoveBy(float x, float y); 158 virtual void ResizeBy(float x, float y); 159 virtual void ScrollBy(float x, float y); 160 161 virtual void MouseDown(const PointerEvent& evt); 162 virtual void MouseUp(const PointerEvent& evt); 163 virtual void MouseMoved(const PointerEvent& evt, uint32 transit); 164 virtual void MouseWheelChanged(const PointerEvent& evt); 165 virtual void WorkspaceActivated(int32 index, bool active); 166 virtual void WorkspacesChanged(uint32 oldWorkspaces, uint32 newWorkspaces); 167 168 BPoint BoundsOrigin() const; // BoundsFrameDiff()? 169 float Scale() const; 170 171 BPoint ConvertToParent(BPoint pt); 172 BRect ConvertToParent(BRect rect); 173 BRegion ConvertToParent(BRegion* reg); 174 175 BPoint ConvertFromParent(BPoint pt); 176 BRect ConvertFromParent(BRect rect); 177 BRegion ConvertFromParent(BRegion* reg); 178 179 BPoint ConvertToTop(BPoint pt); 180 BRect ConvertToTop(BRect rect); 181 BRegion ConvertToTop(BRegion* reg); 182 183 BPoint ConvertFromTop(BPoint pt); 184 BRect ConvertFromTop(BRect rect); 185 BRegion ConvertFromTop(BRegion *reg); 186 187 188 DisplayDriver* GetDisplayDriver() const 189 { return fDriver; } 190 191 ServerWindow* Window() const 192 { return fServerWin; } 193 194 ServerApp* App() const 195 { return fServerWin? fServerWin->App(): NULL; } 196 197 inline WinBorder* Owner() const 198 { return fOwner; } 199 200 virtual bool HasClient() 201 { return true; } 202 203 uint32 EventMask() const 204 { return fEventMask; } 205 206 uint32 EventOptions() const 207 { return fEventOptions; } 208 209 inline void QuietlySetEventMask(uint32 em) 210 { fEventMask = em; } 211 212 inline void QuietlySetEventOptions(uint32 eo) 213 { fEventOptions = eo; } 214 215 void PruneTree(); 216 217 // debugging 218 void PrintToStream(); 219 void PrintNode(); 220 void PrintTree(); 221 222 // server "private" - should not be used 223 void SetAsTopLayer(bool option) 224 { fIsTopLayer = option; } 225 226 inline bool IsTopLayer() const 227 { return fIsTopLayer; } 228 229 BRegion* ClippingRegion() const 230 { return fClipReg; } 231 232 // automatic background blanking by app_server 233 void SetViewColor(const RGBColor& color); 234 inline const RGBColor& ViewColor() const 235 { return fViewColor; } 236 237 void SetBackgroundBitmap(const ServerBitmap* bitmap); 238 inline const ServerBitmap* BackgroundBitmap() const 239 { return fBackgroundBitmap; } 240 241 // overlay support 242 // TODO: This can't be all, what about color key? 243 void SetOverlayBitmap(const ServerBitmap* bitmap); 244 inline const ServerBitmap* OverlayBitmap() const 245 { return fOverlayBitmap; } 246 247 void CopyBits(BRect& src, BRect& dst, 248 int32 xOffset, int32 yOffset); 249 #ifndef NEW_CLIPPING 250 inline const BRegion& VisibleRegion() const { return fVisible; } 251 inline const BRegion& FullVisible() const { return fFullVisible; } 252 253 #else 254 inline const BRegion& VisibleRegion() const { return fVisible2; } 255 inline const BRegion& FullVisible() const { return fFullVisible2; } 256 257 virtual void GetWantedRegion(BRegion& reg) const; 258 259 virtual void MovedByHook(float dx, float dy); 260 virtual void ResizedByHook(float dx, float dy, bool automatic); 261 virtual void ScrolledByHook(float dx, float dy); 262 263 void ConvertToParent2(BPoint* pt) const; 264 void ConvertToParent2(BRect* rect) const; 265 void ConvertToParent2(BRegion* reg) const; 266 void ConvertFromParent2(BPoint* pt) const; 267 void ConvertFromParent2(BRect* rect) const; 268 void ConvertFromParent2(BRegion* reg) const; 269 270 void ConvertToScreen2(BPoint* pt) const; 271 void ConvertToScreen2(BRect* rect) const; 272 void ConvertToScreen2(BRegion* reg) const; 273 void ConvertFromScreen2(BPoint* pt) const; 274 void ConvertFromScreen2(BRect* rect) const; 275 void ConvertFromScreen2(BRegion* reg) const; 276 bool IsVisuallyHidden() const; 277 private: 278 void do_Hide(); 279 void do_Show(); 280 void do_RebuildVisibleRegions(const BRegion &invalid, 281 const Layer *startFrom); 282 void do_MoveBy(float dx, float dy); 283 void do_ResizeBy(float dx, float dy); 284 void do_ScrollBy(float dx, float dy); 285 286 void do_Invalidate( const BRegion &invalid, 287 const Layer *startFrom = NULL); 288 289 void do_Redraw( const BRegion &invalid, 290 const Layer *startFrom = NULL); 291 292 void rebuild_visible_regions(const BRegion &invalid, 293 const BRegion &parentLocalVisible, 294 const Layer *startFrom); 295 296 virtual void _ReserveRegions(BRegion ®); 297 virtual void _GetWantedRegion(BRegion ®); 298 299 void clear_visible_regions(); 300 void resize_layer_frame_by(float x, float y); 301 void rezize_layer_redraw_more(BRegion ®, float dx, float dy); 302 void resize_layer_full_update_on_resize(BRegion ®, float dx, float dy); 303 304 #endif 305 private: 306 void do_CopyBits(BRect& src, BRect& dst, 307 int32 xOffset, int32 yOffset); 308 309 protected: 310 friend class RootLayer; 311 friend class WinBorder; 312 friend class ServerWindow; 313 // TODO: remove, is here for debugging purposes only 314 friend class OffscreenWinBorder; 315 316 #ifndef NEW_CLIPPING 317 void move_layer(float x, float y); 318 void resize_layer(float x, float y); 319 320 void FullInvalidate(const BRect& rect); 321 void FullInvalidate(const BRegion& region); 322 void Invalidate(const BRegion& region); 323 #endif 324 325 BRect fFrame; 326 // TODO: should be removed or reused in a similar fashion 327 // to hold the accumulated origins from the graphics state stack. 328 // The same needs to be done for "scale". (Keeping an accumulated 329 // value.) 330 // BPoint fBoundsLeftTop; 331 WinBorder* fOwner; 332 333 Layer* fParent; 334 Layer* fPreviousSibling; 335 Layer* fNextSibling; 336 Layer* fFirstChild; 337 Layer* fLastChild; 338 339 mutable Layer* fCurrent; 340 341 #ifndef NEW_CLIPPING 342 BRegion fVisible; 343 BRegion fFullVisible; 344 BRegion fFull; 345 int8 fFrameAction; 346 #else 347 private: 348 BRegion fVisible2; 349 BRegion fFullVisible2; 350 protected: 351 #endif 352 BRegion* fClipReg; 353 354 ServerWindow* fServerWin; 355 BString fName; 356 int32 fViewToken; 357 uint32 fFlags; 358 uint32 fResizeMode; 359 uint32 fEventMask; 360 uint32 fEventOptions; 361 bool fHidden; 362 bool fIsTopLayer; 363 uint16 fAdFlags; 364 365 DisplayDriver* fDriver; 366 LayerData* fLayerData; 367 368 RootLayer* fRootLayer; 369 370 private: 371 void RequestDraw(const BRegion& reg, 372 Layer* startFrom); 373 ServerWindow* SearchForServerWindow(); 374 375 void SendUpdateMsg(BRegion& reg); 376 void AddToViewsWithInvalidCoords() const; 377 void SendViewCoordUpdateMsg() const; 378 379 RGBColor fViewColor; 380 381 const ServerBitmap* fBackgroundBitmap; 382 const ServerBitmap* fOverlayBitmap; 383 384 }; 385 386 #endif // _LAYER_H_ 387