gecko-dev/layout/generic/nsSpaceManager.h

163 lines
5.8 KiB
C
Raw Normal View History

1998-04-13 20:24:54 +00:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
#ifndef nsSpaceManager_h___
#define nsSpaceManager_h___
#include "nsISpaceManager.h"
1998-05-19 03:00:56 +00:00
#include "prclist.h"
#include "plhash.h"
1998-04-13 20:24:54 +00:00
/**
* Implementation of nsISpaceManager that maintains a region data structure of
* unavailable space
*/
class SpaceManager : public nsISpaceManager {
public:
SpaceManager(nsIFrame* aFrame);
1998-05-19 03:00:56 +00:00
~SpaceManager();
1998-04-13 20:24:54 +00:00
// nsISupports
NS_DECL_ISUPPORTS
1998-05-19 03:00:56 +00:00
// nsISpaceManager
1998-04-13 20:24:54 +00:00
virtual nsIFrame* GetFrame() const;
1998-05-12 23:02:02 +00:00
virtual void Translate(nscoord aDx, nscoord aDy);
virtual void GetTranslation(nscoord& aX, nscoord& aY) const;
1998-04-13 20:24:54 +00:00
virtual nscoord YMost() const;
1998-05-12 23:02:02 +00:00
1998-04-13 20:24:54 +00:00
virtual PRInt32 GetBandData(nscoord aYOffset,
const nsSize& aMaxSize,
nsBandData& aBandData) const;
1998-05-12 23:02:02 +00:00
virtual PRBool AddRectRegion(nsIFrame* aFrame, const nsRect& aUnavailableSpace);
virtual PRBool ResizeRectRegion(nsIFrame* aFrame,
nscoord aDeltaWidth,
nscoord aDeltaHeight,
AffectedEdge aEdge);
1998-05-19 22:55:40 +00:00
virtual PRBool OffsetRegion(nsIFrame* aFrame, nscoord aDx, nscoord aDy);
1998-05-12 23:02:02 +00:00
virtual PRBool RemoveRegion(nsIFrame* aFrame);
virtual void ClearRegions();
1998-04-13 20:24:54 +00:00
protected:
1998-05-19 03:00:56 +00:00
// Structure that maintains information about the region associated
// with a particular frame
struct FrameInfo {
nsIFrame* const frame;
nsRect rect; // rectangular region
1998-05-19 03:00:56 +00:00
FrameInfo(nsIFrame* aFrame, const nsRect& aRect);
};
// Doubly linked list of band rects
struct BandRect : PRCListStr {
nscoord left, top;
nscoord right, bottom;
PRIntn numFrames; // number of frames occupying this rect
union {
nsIFrame* frame; // single frame occupying the space
nsVoidArray* frames; // list of frames occupying the space
};
1998-05-19 03:00:56 +00:00
BandRect(nscoord aLeft, nscoord aTop,
nscoord aRight, nscoord aBottom,
nsIFrame*);
BandRect(nscoord aLeft, nscoord aTop,
nscoord aRight, nscoord aBottom,
nsVoidArray*);
~BandRect();
1998-05-19 22:55:40 +00:00
// List operations
BandRect* Next() const {return (BandRect*)PR_NEXT_LINK(this);}
BandRect* Prev() const {return (BandRect*)PR_PREV_LINK(this);}
void InsertBefore(BandRect* aBandRect) {PR_INSERT_BEFORE(aBandRect, this);}
void InsertAfter(BandRect* aBandRect) {PR_INSERT_AFTER(aBandRect, this);}
void Remove() {PR_REMOVE_LINK(this);}
1998-05-19 03:00:56 +00:00
// Split the band rect into two vertically, with this band rect becoming
// the top part, and a new band rect being allocated and returned for the
// bottom part
1998-05-19 22:55:40 +00:00
//
// Does not insert the new band rect into the linked list
1998-05-19 03:00:56 +00:00
BandRect* SplitVertically(nscoord aBottom);
// Split the band rect into two horizontally, with this band rect becoming
// the left part, and a new band rect being allocated and returned for the
// right part
1998-05-19 22:55:40 +00:00
//
// Does not insert the new band rect into the linked list
1998-05-19 03:00:56 +00:00
BandRect* SplitHorizontally(nscoord aRight);
// Accessor functions
1998-05-19 15:30:10 +00:00
PRBool IsOccupiedBy(const nsIFrame*) const;
void AddFrame(const nsIFrame*);
void RemoveFrame(const nsIFrame*);
PRBool HasSameFrameList(const BandRect* aBandRect) const;
};
1998-05-19 22:55:40 +00:00
// Circular linked list of band rects
struct BandList : BandRect {
BandList();
// Accessors
PRBool IsEmpty() const {return PR_CLIST_IS_EMPTY((PRCListStr*)this);}
BandRect* Head() const {return (BandRect*)PR_LIST_HEAD(this);}
BandRect* Tail() const {return (BandRect*)PR_LIST_TAIL(this);}
// Operations
void Append(BandRect* aBandRect) {PR_APPEND_LINK(aBandRect, this);}
// Remove and delete all the band rects in the list
void Clear();
};
1998-05-19 03:00:56 +00:00
nsIFrame* const mFrame; // frame associated with the space manager
nscoord mX, mY; // translation from local to global coordinate space
1998-05-19 22:55:40 +00:00
BandList mBandList; // header for circular linked list of band rects
1998-05-19 03:00:56 +00:00
PLHashTable* mFrameInfoMap;
1998-04-13 20:24:54 +00:00
1998-05-19 03:00:56 +00:00
protected:
FrameInfo* GetFrameInfoFor(nsIFrame* aFrame);
FrameInfo* CreateFrameInfo(nsIFrame* aFrame, const nsRect& aRect);
void DestroyFrameInfo(FrameInfo*);
1998-04-13 20:24:54 +00:00
1998-05-19 03:00:56 +00:00
void ClearFrameInfo();
void ClearBandRects();
1998-04-13 20:24:54 +00:00
1998-05-19 03:00:56 +00:00
BandRect* GetNextBand(const BandRect* aBandRect) const;
void DivideBand(BandRect* aBand, nscoord aBottom);
1998-05-19 22:55:40 +00:00
PRBool CanJoinBands(BandRect* aBand, BandRect* aPrevBand);
1998-05-19 15:30:10 +00:00
PRBool JoinBands(BandRect* aBand, BandRect* aPrevBand);
1998-05-19 03:00:56 +00:00
void AddRectToBand(BandRect* aBand, BandRect* aBandRect);
void InsertBandRect(BandRect* aBandRect);
1998-04-13 20:24:54 +00:00
1998-05-19 03:00:56 +00:00
PRInt32 GetBandAvailableSpace(const BandRect* aBand,
nscoord aY,
const nsSize& aMaxSize,
nsBandData& aAvailableSpace) const;
1998-04-13 20:24:54 +00:00
private:
SpaceManager(const SpaceManager&); // no implementation
void operator=(const SpaceManager&); // no implementation
1998-05-19 03:00:56 +00:00
friend PR_CALLBACK PRIntn NS_RemoveFrameInfoEntries(PLHashEntry*, PRIntn, void*);
1998-04-13 20:24:54 +00:00
};
#endif /* nsSpaceManager_h___ */