Sorry, should have been part of r27660. Moved BTextView::UndoBuffer derivatives
into BTextView class as well, hopefully fixing the GCC4 build. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27661 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
8ab8c63d26
commit
6168332c35
@ -175,11 +175,10 @@ public:
|
||||
|
||||
void SetTextRect(BRect rect);
|
||||
BRect TextRect() const;
|
||||
void SetInsets(float _leftInset, float topInset,
|
||||
float rightInset, float bottomInset);
|
||||
void GetInsets(float* _leftInset, float* _topInset,
|
||||
float* _rightInset,
|
||||
float* _bottomInset) const;
|
||||
void SetInsets(float left, float top, float right,
|
||||
float bottom);
|
||||
void GetInsets(float* _left, float* _top,
|
||||
float* _right, float* _bottom) const;
|
||||
|
||||
void SetStylable(bool stylable);
|
||||
bool IsStylable() const;
|
||||
@ -249,6 +248,13 @@ private:
|
||||
class UndoBuffer;
|
||||
class WidthBuffer;
|
||||
|
||||
// UndoBuffer deratives
|
||||
class CutUndoBuffer;
|
||||
class PasteUndoBuffer;
|
||||
class ClearUndoBuffer;
|
||||
class DropUndoBuffer;
|
||||
class TypingUndoBuffer;
|
||||
|
||||
friend class TextTrackState;
|
||||
friend status_t _init_interface_kit_();
|
||||
|
||||
@ -388,7 +394,9 @@ private:
|
||||
BPoint fWhere;
|
||||
TextTrackState* fTrackingMouse;
|
||||
|
||||
uint32 _reserved[9];
|
||||
LayoutData* fLayoutData;
|
||||
|
||||
uint32 _reserved[8];
|
||||
|
||||
static WidthBuffer* sWidths;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user