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:
@@ -175,11 +175,10 @@ public:
|
|||||||
|
|
||||||
void SetTextRect(BRect rect);
|
void SetTextRect(BRect rect);
|
||||||
BRect TextRect() const;
|
BRect TextRect() const;
|
||||||
void SetInsets(float _leftInset, float topInset,
|
void SetInsets(float left, float top, float right,
|
||||||
float rightInset, float bottomInset);
|
float bottom);
|
||||||
void GetInsets(float* _leftInset, float* _topInset,
|
void GetInsets(float* _left, float* _top,
|
||||||
float* _rightInset,
|
float* _right, float* _bottom) const;
|
||||||
float* _bottomInset) const;
|
|
||||||
|
|
||||||
void SetStylable(bool stylable);
|
void SetStylable(bool stylable);
|
||||||
bool IsStylable() const;
|
bool IsStylable() const;
|
||||||
@@ -249,6 +248,13 @@ private:
|
|||||||
class UndoBuffer;
|
class UndoBuffer;
|
||||||
class WidthBuffer;
|
class WidthBuffer;
|
||||||
|
|
||||||
|
// UndoBuffer deratives
|
||||||
|
class CutUndoBuffer;
|
||||||
|
class PasteUndoBuffer;
|
||||||
|
class ClearUndoBuffer;
|
||||||
|
class DropUndoBuffer;
|
||||||
|
class TypingUndoBuffer;
|
||||||
|
|
||||||
friend class TextTrackState;
|
friend class TextTrackState;
|
||||||
friend status_t _init_interface_kit_();
|
friend status_t _init_interface_kit_();
|
||||||
|
|
||||||
@@ -388,7 +394,9 @@ private:
|
|||||||
BPoint fWhere;
|
BPoint fWhere;
|
||||||
TextTrackState* fTrackingMouse;
|
TextTrackState* fTrackingMouse;
|
||||||
|
|
||||||
uint32 _reserved[9];
|
LayoutData* fLayoutData;
|
||||||
|
|
||||||
|
uint32 _reserved[8];
|
||||||
|
|
||||||
static WidthBuffer* sWidths;
|
static WidthBuffer* sWidths;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user