/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #ifndef INCLUDED_SVX_FMGRIDCL_HXX #define INCLUDED_SVX_FMGRIDCL_HXX #include #include #include #include #include // FmGridHeader struct FmGridHeaderData; class SVX_DLLPUBLIC FmGridHeader :public ::svt::EditBrowserHeader ,public DropTargetHelper { protected: FmGridHeaderData* m_pImpl; // trigger context menu execution void triggerColumnContextMenu( const ::Point& _rPreferredPos ); public: FmGridHeader( BrowseBox* pParent, WinBits nWinBits = WB_STDHEADERBAR | WB_DRAG ); virtual ~FmGridHeader(); public: struct AccessControl { friend class FmGridControl; private: AccessControl() { } }; inline void triggerColumnContextMenu( const ::Point& _rPreferredPos, const AccessControl& ) { triggerColumnContextMenu( _rPreferredPos ); } protected: virtual void Command( const CommandEvent& rCEvt ) SAL_OVERRIDE; virtual void RequestHelp( const HelpEvent& rHEvt ) SAL_OVERRIDE; virtual void Select() SAL_OVERRIDE; /** the value returned by GetItemPos is meaningless for the grid model if there are hidden columns, so use GetModelColumnPos instead */ sal_uInt16 GetModelColumnPos(sal_uInt16 nId) const; /** This is called before executing a context menu for a column. rMenu contains the initial entries handled by this base class' method (which always has to be called). Derived classes may alter the menu in any way and handle any additional entries in PostExecuteColumnContextMenu. All disabled entries will be removed before executing the menu, so be careful with separators near entries you probably wish to disable ... */ virtual void PreExecuteColumnContextMenu(sal_uInt16 nColId, PopupMenu& rMenu); /** After executing the context menu for a column this method is called. */ virtual void PostExecuteColumnContextMenu(sal_uInt16 nColId, const PopupMenu& rMenu, sal_uInt16 nExecutionResult); // DropTargetHelper virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) SAL_OVERRIDE; virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) SAL_OVERRIDE; /** selects the column at the selection supplier. @param nColumnId The column id. */ void notifyColumnSelect(sal_uInt16 nColumnId); private: DECL_LINK( OnAsyncExecuteDrop, void* ); }; // FmGridControl class FmXGridPeer; class SVX_DLLPUBLIC FmGridControl : public DbGridControl { friend class FmGridHeader; friend class FmXGridPeer; FmXGridPeer* m_pPeer; sal_Int32 m_nCurrentSelectedColumn; // this is the column model (not the view) posisition ... sal_uInt16 m_nMarkedColumnId; bool m_bSelecting; bool m_bInColumnMove : 1; public: FmGridControl( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >&, vcl::Window* pParent, FmXGridPeer* _pPeer, WinBits nBits); // Window virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE; // ::com::sun::star::beans::XPropertyChangeListener void SAL_CALL propertyChange(const ::com::sun::star::beans::PropertyChangeEvent& evt); // ::com::sun::star::form::XPositioningListener void positioned(const ::com::sun::star::lang::EventObject& rEvent); // XBound bool commit(); // ::com::sun::star::form::XInsertListener void inserted(const ::com::sun::star::lang::EventObject& rEvent); void markColumn(sal_uInt16 nId); bool isColumnMarked(sal_uInt16 nId) const; sal_Int32 GetSelectedColumn() const { return m_nCurrentSelectedColumn;} /** return the name of the specified object. @param eObjType The type to ask for @param _nPosition The position of a tablecell (index position), header bar column/row cell @return The name of the specified object. */ virtual OUString GetAccessibleObjectName( ::svt::AccessibleBrowseBoxObjType eObjType,sal_Int32 _nPosition = -1) const SAL_OVERRIDE; /** 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 column/row cell @return The description of the specified object. */ virtual OUString GetAccessibleObjectDescription( ::svt::AccessibleBrowseBoxObjType eObjType,sal_Int32 _nPosition = -1) const SAL_OVERRIDE; protected: virtual void Command(const CommandEvent& rEvt) SAL_OVERRIDE; virtual BrowserHeader* imp_CreateHeaderBar(BrowseBox* pParent) SAL_OVERRIDE; virtual long QueryMinimumRowHeight() SAL_OVERRIDE; virtual void RowHeightChanged() SAL_OVERRIDE; virtual void ColumnResized(sal_uInt16 nId) SAL_OVERRIDE; virtual void ColumnMoved(sal_uInt16 nId) SAL_OVERRIDE; virtual void DeleteSelectedRows() SAL_OVERRIDE; virtual void SetDesignMode(bool bMode) SAL_OVERRIDE; virtual void CellModified() SAL_OVERRIDE; virtual void HideColumn(sal_uInt16 nId) SAL_OVERRIDE; virtual void ShowColumn(sal_uInt16 nId) SAL_OVERRIDE; bool IsInColumnMove() const {return m_bInColumnMove;} virtual void BeginCursorAction() SAL_OVERRIDE; virtual void EndCursorAction() SAL_OVERRIDE; virtual void Select() SAL_OVERRIDE; // Initialize columns // a.) only by column description virtual void InitColumnsByModels(const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexContainer >& xColumns); // b.) during alivemode by database fields virtual void InitColumnsByFields(const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess >& xFields) SAL_OVERRIDE; // some kind of impl version (for one single column) of our version of InitColumnsByFields void InitColumnByField( DbGridColumn* _pColumn, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet >& _rxColumnModel, const ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess >& _rxFieldsByNames, const ::com::sun::star::uno::Reference< ::com::sun::star::container::XIndexAccess >& _rxFieldsByIndex ); FmXGridPeer* GetPeer() const {return m_pPeer;} ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any> getSelectionBookmarks(); bool selectBookmarks(const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any>& _rBookmarks); /** returns if a column is selected @param nColumnId The column id. @param _pColumn The column to compare with. @return if the column is selected, otherwise */ bool isColumnSelected(sal_uInt16 nColumnId,DbGridColumn* _pColumn); }; #endif // INCLUDED_SVX_FMGRIDCL_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */