summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-05-10 12:20:45 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-05-10 12:20:45 +0000
commit46ec6186aee2d0be1776378b9b80a2021e986096 (patch)
tree720dd64acef8a61883c1f244831271f54409e37e /svtools
parentcdcbe5ef7b898304c4641a376c426e76aed2c5cf (diff)
INTEGRATION: CWS dba09 (1.7.522); FILE MERGED
2004/03/22 09:47:20 fs 1.7.522.1: #i14649# allow changing the row height interactively
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/brwbox/datwin.hxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/svtools/source/brwbox/datwin.hxx b/svtools/source/brwbox/datwin.hxx
index 3b7f0b6abbf7..48b11979f26d 100644
--- a/svtools/source/brwbox/datwin.hxx
+++ b/svtools/source/brwbox/datwin.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: datwin.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: fs $ $Date: 2001-07-25 14:19:34 $
+ * last change: $Author: hr $ $Date: 2004-05-10 13:20:45 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -194,6 +194,8 @@ friend class BrowseBox;
USHORT nUpdateLock; // lock count, dont call Control::Update()!
short nCursorHidden; // new conuter for DoHide/ShowCursor
+ long m_nDragRowDividerLimit;
+ long m_nDragRowDividerOffset;
public:
BrowserDataWin( BrowseBox* pParent );
@@ -209,6 +211,7 @@ public:
virtual void MouseButtonUp( const MouseEvent& rEvt );
virtual void KeyInput( const KeyEvent& rEvt );
+ virtual void Tracking( const TrackingEvent& rTEvt );
// DropTargetHelper overridables
virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt );
@@ -232,6 +235,10 @@ public:
void DoOutstandingInvalidations();
void Invalidate();
void Invalidate( const Rectangle& rRect );
+
+protected:
+ void StartRowDividerDrag( const Point& _rStartPos );
+ BOOL ImplRowDividerHitTest( const BrowserMouseEvent& _rEvent );
};
//-------------------------------------------------------------------