2000-10-26 13:46:14 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 15:02:21 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
2005-09-08 15:02:21 +00:00
|
|
|
* $RCSfile: sbagrid.hxx,v $
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
2007-05-10 09:33:26 +00:00
|
|
|
* $Revision: 1.26 $
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
2007-05-10 09:33:26 +00:00
|
|
|
* last change: $Author: kz $ $Date: 2007-05-10 10:33:26 $
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
2005-09-08 15:02:21 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 15:02:21 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
2005-09-08 15:02:21 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
2005-09-08 15:02:21 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
2005-09-08 15:02:21 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2000-10-26 13:46:14 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _SBA_GRID_HXX
|
|
|
|
#define _SBA_GRID_HXX
|
|
|
|
|
|
|
|
// #include <sdb/tools.hxx>
|
|
|
|
|
|
|
|
#ifndef _SVX_FMGRIDCL_HXX
|
|
|
|
#include <svx/fmgridcl.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _SVX_FMGRIDIF_HXX
|
|
|
|
#include <svx/fmgridif.hxx>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COM_SUN_STAR_SDB_XSQLQUERYCOMPOSER_HPP_
|
|
|
|
#include <com/sun/star/sdb/XSQLQueryComposer.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_FRAME_XDISPATCH_HPP_
|
|
|
|
#include <com/sun/star/frame/XDispatch.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COM_SUN_STAR_UTIL_URL_HPP_
|
|
|
|
#include <com/sun/star/util/URL.hpp>
|
|
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_UNO3_HXX_
|
|
|
|
#include <comphelper/uno3.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _COMPHELPER_STLTYPES_HXX_
|
|
|
|
#include <comphelper/stl_types.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _SBA_MULTIPLEX_HXX
|
|
|
|
#include "sbamultiplex.hxx"
|
|
|
|
#endif
|
2001-10-02 06:55:27 +00:00
|
|
|
#ifndef _SVX_DATACCESSDESCRIPTOR_HXX_
|
|
|
|
#include <svx/dataaccessdescriptor.hxx>
|
|
|
|
#endif
|
2002-10-09 08:52:06 +00:00
|
|
|
#include <queue>
|
2000-10-26 13:46:14 +00:00
|
|
|
|
|
|
|
class SvNumberFormatter;
|
|
|
|
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
struct SbaURLCompare : public binary_function< ::com::sun::star::util::URL, ::com::sun::star::util::URL, bool>
|
|
|
|
{
|
2003-03-19 16:57:12 +00:00
|
|
|
bool operator() (const ::com::sun::star::util::URL& x, const ::com::sun::star::util::URL& y) const {return x.Complete == y.Complete ? true : false;}
|
2000-10-26 13:46:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct SbaURLHash
|
|
|
|
{
|
|
|
|
sal_Int32 operator() (const ::com::sun::star::util::URL& x) const {return x.Complete.hashCode();}
|
|
|
|
};
|
|
|
|
//==================================================================
|
|
|
|
// SbaXGridControl
|
|
|
|
//==================================================================
|
|
|
|
|
|
|
|
// class ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > ;
|
|
|
|
FORWARD_DECLARE_INTERFACE(lang,XMultiServiceFactory)
|
|
|
|
|
|
|
|
class SbaXStatusMultiplexer;
|
|
|
|
class SbaXGridControl
|
|
|
|
:public FmXGridControl
|
|
|
|
,public ::com::sun::star::frame::XDispatch
|
|
|
|
{
|
|
|
|
DECLARE_STL_MAP(::com::sun::star::util::URL, SbaXStatusMultiplexer*, SbaURLCompare,StatusMultiplexerArray);
|
|
|
|
StatusMultiplexerArray m_aStatusMultiplexer;
|
|
|
|
|
|
|
|
public:
|
|
|
|
SbaXGridControl(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&);
|
|
|
|
virtual ~SbaXGridControl();
|
|
|
|
|
|
|
|
// UNO
|
|
|
|
DECLARE_UNO3_DEFAULTS(SbaXGridControl, FmXGridControl);
|
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type& _rType) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
2001-06-22 15:00:28 +00:00
|
|
|
// XTypeProvider
|
|
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw (::com::sun::star::uno::RuntimeException);
|
2001-10-26 11:55:08 +00:00
|
|
|
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) throw (::com::sun::star::uno::RuntimeException);
|
2001-06-22 15:00:28 +00:00
|
|
|
|
2000-10-26 13:46:14 +00:00
|
|
|
// ::com::sun::star::lang::XServiceInfo
|
2001-10-26 11:55:08 +00:00
|
|
|
::rtl::OUString SAL_CALL getImplementationName() throw();
|
|
|
|
virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw();
|
2000-11-14 12:42:40 +00:00
|
|
|
// need by registration
|
2000-10-26 13:46:14 +00:00
|
|
|
static ::rtl::OUString getImplementationName_Static() throw( ::com::sun::star::uno::RuntimeException );
|
2000-11-14 12:42:40 +00:00
|
|
|
static ::com::sun::star::uno::Sequence< ::rtl::OUString > getSupportedServiceNames_Static(void) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
|
|
|
|
SAL_CALL Create(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&);
|
2000-10-26 13:46:14 +00:00
|
|
|
|
|
|
|
// ::com::sun::star::frame::XDispatch
|
|
|
|
virtual void SAL_CALL dispatch(const ::com::sun::star::util::URL& aURL, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArgs) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL addStatusListener(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener > & xControl, const ::com::sun::star::util::URL& aURL) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL removeStatusListener(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener > & xControl, const ::com::sun::star::util::URL& aURL) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
// ::com::sun::star::lang::XComponent
|
|
|
|
virtual void SAL_CALL dispose(void) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
virtual void SAL_CALL createPeer(const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XToolkit > & rToolkit, const ::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindowPeer > & rParentPeer) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual FmXGridPeer* imp_CreatePeer(Window* pParent);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
// SbaXGridPeer
|
|
|
|
//==================================================================
|
|
|
|
|
|
|
|
class SbaXGridPeer
|
|
|
|
:public FmXGridPeer
|
|
|
|
,public ::com::sun::star::frame::XDispatch
|
|
|
|
{
|
|
|
|
::cppu::OMultiTypeInterfaceContainerHelperVar< ::com::sun::star::util::URL,SbaURLHash , SbaURLCompare> m_aStatusListeners;
|
|
|
|
|
|
|
|
public:
|
|
|
|
SbaXGridPeer(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >&);
|
|
|
|
virtual ~SbaXGridPeer();
|
|
|
|
|
|
|
|
// UNO
|
2001-09-13 13:15:52 +00:00
|
|
|
virtual void SAL_CALL acquire() throw() { FmXGridPeer::acquire(); }
|
|
|
|
virtual void SAL_CALL release() throw() { FmXGridPeer::release(); }
|
2000-10-26 13:46:14 +00:00
|
|
|
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface(const ::com::sun::star::uno::Type& _rType) throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException);
|
|
|
|
|
|
|
|
static const ::com::sun::star::uno::Sequence< sal_Int8 >& getUnoTunnelId();
|
2001-09-13 13:15:52 +00:00
|
|
|
sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 > & rId ) throw (::com::sun::star::uno::RuntimeException);
|
2000-10-26 13:46:14 +00:00
|
|
|
static SbaXGridPeer* getImplementation(const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>& _rxIFace);
|
|
|
|
|
|
|
|
// ::com::sun::star::frame::XDispatch
|
|
|
|
virtual void SAL_CALL dispatch(const ::com::sun::star::util::URL& aURL, const ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >& aArgs) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL addStatusListener(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener > & xControl, const ::com::sun::star::util::URL& aURL) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
virtual void SAL_CALL removeStatusListener(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener > & xControl, const ::com::sun::star::util::URL& aURL) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
// ::com::sun::star::frame::XDispatchProvider
|
|
|
|
virtual ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > SAL_CALL queryDispatch(const ::com::sun::star::util::URL& aURL, const ::rtl::OUString& aTargetFrameName, sal_Int32 nSearchFlags) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
// ::com::sun::star::lang::XComponent
|
|
|
|
virtual void SAL_CALL dispose(void) throw( ::com::sun::star::uno::RuntimeException );
|
|
|
|
|
|
|
|
protected:
|
2000-11-07 17:38:11 +00:00
|
|
|
virtual FmGridControl* imp_CreateControl(Window* pParent, WinBits nStyle);
|
2003-10-07 11:08:30 +00:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1310 )
|
|
|
|
typedef ::com::sun::star::frame::XStatusListener xstlist_type;
|
|
|
|
typedef ::com::sun::star::uno::Reference< xstlist_type > xlistener_type;
|
|
|
|
void NotifyStatusChanged(const ::com::sun::star::util::URL& aUrl, const xlistener_type & xControl = xlistener_type() );
|
|
|
|
#else
|
2000-10-26 13:46:14 +00:00
|
|
|
void NotifyStatusChanged(const ::com::sun::star::util::URL& aUrl, const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener > & xControl = ::com::sun::star::uno::Reference< ::com::sun::star::frame::XStatusListener > ());
|
2003-10-10 08:11:57 +00:00
|
|
|
#endif // # _MSC_VER>=1310
|
2002-10-09 08:52:06 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// for asny execution of XDispatch::dispatch
|
|
|
|
struct DispatchArgs
|
|
|
|
{
|
|
|
|
::com::sun::star::util::URL aURL;
|
|
|
|
::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > aArgs;
|
|
|
|
};
|
|
|
|
::std::queue< DispatchArgs > m_aDispatchArgs;
|
|
|
|
DECL_LINK( OnDispatchEvent, void* );
|
|
|
|
|
|
|
|
// for dynamic states of our 4 dispatchable URLs
|
|
|
|
enum DispatchType
|
|
|
|
{
|
|
|
|
dtBrowserAttribs,
|
|
|
|
dtRowHeight,
|
|
|
|
dtColumnAttribs,
|
|
|
|
dtColumnWidth,
|
|
|
|
|
|
|
|
dtUnknown
|
|
|
|
};
|
|
|
|
DispatchType classifyDispatchURL( const ::com::sun::star::util::URL& _rURL );
|
|
|
|
|
|
|
|
DECLARE_STL_STDKEY_MAP( DispatchType, sal_Bool, MapDispatchToBool );
|
|
|
|
MapDispatchToBool m_aDispatchStates;
|
2000-10-26 13:46:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
// SbaGridHeader
|
|
|
|
//==================================================================
|
|
|
|
|
2001-03-26 14:23:02 +00:00
|
|
|
class SbaGridHeader
|
|
|
|
:public FmGridHeader
|
|
|
|
,public DragSourceHelper
|
2000-10-26 13:46:14 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
SbaGridHeader(BrowseBox* pParent, WinBits nWinBits = WB_STDHEADERBAR | WB_DRAG);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
// FmGridHeader overridables
|
|
|
|
virtual void PreExecuteColumnContextMenu(sal_uInt16 nColId, PopupMenu& rMenu);
|
|
|
|
virtual void PostExecuteColumnContextMenu(sal_uInt16 nColId, const PopupMenu& rMenu, sal_uInt16 nExecutionResult);
|
|
|
|
|
|
|
|
private:
|
2001-03-26 14:23:02 +00:00
|
|
|
// DragSourceHelper overridables
|
|
|
|
virtual void StartDrag( sal_Int8 _nAction, const Point& _rPosPixel );
|
|
|
|
|
2001-02-19 09:48:56 +00:00
|
|
|
// Window overridables
|
2001-03-26 14:23:02 +00:00
|
|
|
virtual void MouseButtonDown( const MouseEvent& rMEvt );
|
2001-02-19 09:48:56 +00:00
|
|
|
|
2001-03-28 07:16:51 +00:00
|
|
|
sal_Bool ImplStartColumnDrag(sal_Int8 _nAction, const Point& _rMousePos);
|
2006-06-20 02:18:37 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
using FmGridHeader::StartDrag;
|
2000-10-26 13:46:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// =========================================================================
|
|
|
|
// interfaces for communication between the vcl grid control and a controller
|
|
|
|
// -------------------------------------------------------------------------
|
|
|
|
class SbaGridListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void RowChanged() = 0;
|
|
|
|
virtual void ColumnChanged() = 0;
|
|
|
|
virtual void SelectionChanged() = 0;
|
|
|
|
virtual void CellActivated() = 0;
|
|
|
|
virtual void CellDeactivated() = 0;
|
2004-06-01 09:12:21 +00:00
|
|
|
virtual void BeforeDrop() = 0;
|
|
|
|
virtual void AfterDrop() = 0;
|
2000-10-26 13:46:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
// SbaGridControl
|
|
|
|
//==================================================================
|
|
|
|
//------------------------------------------------------------------
|
|
|
|
class UnoDataBrowserController;
|
|
|
|
class SbaGridControl : public FmGridControl
|
|
|
|
{
|
|
|
|
friend class SbaGridHeader;
|
|
|
|
friend class SbaXGridPeer;
|
|
|
|
|
|
|
|
// Attributes
|
|
|
|
protected:
|
2006-06-20 02:18:37 +00:00
|
|
|
::svx::ODataAccessDescriptor m_aDataDescriptor;
|
|
|
|
SbaGridListener* m_pMasterListener;
|
|
|
|
sal_Int32 m_nAsyncDropEvent;
|
|
|
|
USHORT m_nLastColId;
|
|
|
|
long m_nLastRowId;
|
2000-10-26 13:46:14 +00:00
|
|
|
|
2006-06-20 02:18:37 +00:00
|
|
|
USHORT m_nCurrentActionColId;
|
2000-10-26 13:46:14 +00:00
|
|
|
// ui actions (e.g. a context menu) may be performed on columns which aren't the current one
|
|
|
|
// and aren't selected, so we have to track this column id
|
|
|
|
|
2006-06-20 02:18:37 +00:00
|
|
|
sal_Bool m_bActivatingForDrop;
|
2000-10-26 13:46:14 +00:00
|
|
|
// Attribute Access
|
|
|
|
public:
|
|
|
|
sal_uInt16 GetCurrentActionColumn() const { return m_nCurrentActionColId; }
|
|
|
|
|
|
|
|
public:
|
|
|
|
SbaGridControl(::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >,Window* pParent, FmXGridPeer* _pPeer, WinBits nBits = WB_TABSTOP);
|
|
|
|
virtual ~SbaGridControl();
|
|
|
|
|
2002-10-31 11:49:05 +00:00
|
|
|
virtual void Command( const CommandEvent& rCEvt );
|
|
|
|
virtual void Select();
|
|
|
|
|
2000-10-26 13:46:14 +00:00
|
|
|
void SetMasterListener(SbaGridListener* pListener) { m_pMasterListener = pListener; }
|
|
|
|
|
|
|
|
virtual void ActivateCell(long nRow, sal_uInt16 nCol, sal_Bool bSetCellFocus = sal_True);
|
|
|
|
virtual void DeactivateCell(sal_Bool bUpdate = sal_True);
|
|
|
|
void ActivateCell() { FmGridControl::ActivateCell(); }
|
|
|
|
|
|
|
|
sal_Bool IsAllSelected() const { return (GetSelectRowCount() == GetRowCount()) && (GetRowCount() > 0); }
|
|
|
|
|
|
|
|
HeaderBar* GetHeaderBar() const { return FmGridControl::GetHeaderBar(); }
|
|
|
|
|
2002-04-23 06:50:46 +00:00
|
|
|
/** return the description of the specified object.
|
|
|
|
@param eObjType
|
|
|
|
The type to ask for
|
|
|
|
@param _nPosition
|
|
|
|
The position of a tablecell (index position), header bar colum/row cell
|
|
|
|
@return
|
|
|
|
The description of the specified object.
|
|
|
|
*/
|
2006-06-20 02:18:37 +00:00
|
|
|
virtual ::rtl::OUString GetAccessibleObjectDescription( ::svt::AccessibleBrowseBoxObjType eObjType,sal_Int32 _nPosition = -1) const;
|
2002-04-23 06:50:46 +00:00
|
|
|
|
2000-10-26 13:46:14 +00:00
|
|
|
protected:
|
2001-03-26 14:23:02 +00:00
|
|
|
// DragSourceHelper overridables
|
|
|
|
virtual void StartDrag( sal_Int8 _nAction, const Point& _rPosPixel );
|
|
|
|
|
2000-10-26 13:46:14 +00:00
|
|
|
// BrowseBox overridables
|
|
|
|
virtual void CursorMoved();
|
2001-04-10 07:52:12 +00:00
|
|
|
virtual sal_Int8 AcceptDrop( const BrowserAcceptDropEvent& rEvt );
|
|
|
|
virtual sal_Int8 ExecuteDrop( const BrowserExecuteDropEvent& rEvt );
|
2000-10-26 13:46:14 +00:00
|
|
|
virtual void MouseButtonDown( const BrowserMouseEvent& rMEvt);
|
|
|
|
|
2001-06-29 07:45:10 +00:00
|
|
|
// EditBrowseBox overridables
|
2000-10-26 13:46:14 +00:00
|
|
|
virtual BrowserHeader* imp_CreateHeaderBar(BrowseBox* pParent);
|
2001-06-29 07:45:10 +00:00
|
|
|
virtual ::svt::CellController* GetController(long nRow, sal_uInt16 nCol);
|
2000-10-26 13:46:14 +00:00
|
|
|
|
|
|
|
// DbGridControl overridables
|
|
|
|
virtual void PreExecuteRowContextMenu(sal_uInt16 nRow, PopupMenu& rMenu);
|
|
|
|
virtual void PostExecuteRowContextMenu(sal_uInt16 nRow, const PopupMenu& rMenu, sal_uInt16 nExecutionResult);
|
|
|
|
|
|
|
|
// my own overridables
|
|
|
|
virtual void RowChanged(); // the default implementation calls the according link (if set)
|
|
|
|
virtual void ColChanged();
|
2004-06-01 09:12:21 +00:00
|
|
|
virtual void BeforeDrop();
|
|
|
|
virtual void AfterDrop();
|
2000-10-26 13:46:14 +00:00
|
|
|
|
|
|
|
// get a fields property set from a model pos
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > getField(sal_uInt16 nModelPos);
|
|
|
|
|
|
|
|
// get my data source
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > getDataSource() const;
|
|
|
|
|
|
|
|
// drag events
|
|
|
|
virtual void DoColumnDrag(sal_uInt16 nColumnPos);
|
2001-05-03 08:23:19 +00:00
|
|
|
virtual void DoRowDrag(sal_Int16 nRowPos);
|
|
|
|
virtual void DoFieldDrag(sal_uInt16 nColumnPos, sal_Int16 nRowPos);
|
2000-10-26 13:46:14 +00:00
|
|
|
|
|
|
|
void SetBrowserAttrs();
|
|
|
|
void SetColWidth(sal_uInt16 nColId);
|
|
|
|
void SetRowHeight();
|
|
|
|
void SetColAttrs(sal_uInt16 nColId);
|
|
|
|
|
|
|
|
SvNumberFormatter* GetDatasourceFormatter();
|
|
|
|
|
2001-10-02 06:55:27 +00:00
|
|
|
DECL_LINK(AsynchDropEvent, void*);
|
|
|
|
|
2000-10-26 13:46:14 +00:00
|
|
|
private:
|
|
|
|
sal_Bool IsReadOnlyDB() const;
|
2006-06-20 02:18:37 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
using FmGridControl::AcceptDrop;
|
|
|
|
using FmGridControl::ExecuteDrop;
|
|
|
|
using FmGridControl::MouseButtonDown;
|
2000-10-26 13:46:14 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // _SBA_GRID_HXX
|
|
|
|
|