Files
libreoffice/sc/source/ui/inc/content.hxx

165 lines
5.7 KiB
C++
Raw Normal View History

2010-10-27 12:43:08 +01:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2000-09-18 16:07:07 +00:00
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2000-09-18 16:07:07 +00:00
*
* This file is part of OpenOffice.org.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2000-09-18 16:07:07 +00:00
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2000-09-18 16:07:07 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2000-09-18 16:07:07 +00:00
*
************************************************************************/
#ifndef SC_CONTENT_HXX
#define SC_CONTENT_HXX
#include <svtools/treelistbox.hxx>
2000-09-18 16:07:07 +00:00
#include "global.hxx"
#include "address.hxx"
#include <tools/solar.h>
2000-09-18 16:07:07 +00:00
class ScNavigatorDlg;
class ScDocument;
class ScDocShell;
class ScAreaLink;
#define SC_CONTENT_ROOT 0
#define SC_CONTENT_TABLE 1
#define SC_CONTENT_RANGENAME 2
#define SC_CONTENT_DBAREA 3
#define SC_CONTENT_GRAPHIC 4
#define SC_CONTENT_OLEOBJECT 5
#define SC_CONTENT_NOTE 6
#define SC_CONTENT_AREALINK 7
2002-05-16 12:05:14 +00:00
#define SC_CONTENT_DRAWING 8
#define SC_CONTENT_COUNT 9
2000-09-18 16:07:07 +00:00
const sal_uLong SC_CONTENT_NOCHILD = ~0UL;
2002-10-16 11:13:04 +00:00
2000-09-18 16:07:07 +00:00
class ScContentTree : public SvTreeListBox
{
ScNavigatorDlg* pParentWindow;
ImageList aEntryImages;
SvTreeListEntry* pRootNodes[SC_CONTENT_COUNT];
sal_uInt16 nRootType; // set as Root
String aManualDoc; // Switched in Navigator (Title)
sal_Bool bHiddenDoc; // Hidden active?
String aHiddenName; // URL to load
String aHiddenTitle; // for display
ScDocument* pHiddenDocument; // temporary
2000-09-18 16:07:07 +00:00
sal_uInt16 pPosList[SC_CONTENT_COUNT]; // for the sequence
2000-09-18 16:07:07 +00:00
static sal_Bool bIsInDrag; // static, if the Navigator is deleted in ExecuteDrag
2000-09-18 16:07:07 +00:00
ScDocShell* GetManualOrCurrent();
void InitRoot(sal_uInt16 nType);
void ClearType(sal_uInt16 nType);
2000-09-18 16:07:07 +00:00
void ClearAll();
void InsertContent( sal_uInt16 nType, const String& rValue );
void GetDrawNames( sal_uInt16 nType );
2000-09-18 16:07:07 +00:00
void GetTableNames();
void GetAreaNames();
void GetDbNames();
void GetLinkNames();
void GetGraphicNames();
void GetOleNames();
void GetDrawingNames();
2000-09-18 16:07:07 +00:00
void GetNoteStrings();
static bool IsPartOfType( sal_uInt16 nContentType, sal_uInt16 nObjIdentifier );
sal_Bool DrawNamesChanged( sal_uInt16 nType );
sal_Bool NoteStringsChanged();
2000-09-18 16:07:07 +00:00
ScAddress GetNotePos( sal_uLong nIndex );
const ScAreaLink* GetLink( sal_uLong nIndex );
2000-09-18 16:07:07 +00:00
2002-10-16 11:13:04 +00:00
/** Returns the indexes of the specified listbox entry.
@param rnRootIndex Root index of specified entry is returned.
@param rnChildIndex Index of the entry inside its root is returned (or SC_CONTENT_NOCHILD if entry is root).
@param pEntry The entry to examine. */
void GetEntryIndexes( sal_uInt16& rnRootIndex, sal_uLong& rnChildIndex, SvTreeListEntry* pEntry ) const;
2002-10-16 11:13:04 +00:00
/** Returns the child index of the specified listbox entry.
@param pEntry The entry to examine or NULL for the selected entry.
@return Index of the entry inside its root or SC_CONTENT_NOCHILD if entry is root. */
sal_uLong GetChildIndex( SvTreeListEntry* pEntry ) const;
2002-10-16 11:13:04 +00:00
2000-09-18 16:07:07 +00:00
void DoDrag();
ScDocument* GetSourceDocument();
DECL_LINK( ContentDoubleClickHdl, void* );
2000-09-18 16:07:07 +00:00
DECL_STATIC_LINK( ScContentTree, ExecDragHdl, void* );
protected:
// virtual sal_Bool Drop( const DropEvent& rEvt );
// virtual sal_Bool QueryDrop( DropEvent& rEvt );
2001-04-03 16:43:21 +00:00
using SvTreeListBox::ExecuteDrop;
2001-04-03 16:43:21 +00:00
virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt );
virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt );
virtual void StartDrag( sal_Int8 nAction, const Point& rPosPixel );
2001-05-11 17:49:21 +00:00
virtual void DragFinished( sal_Int8 nAction );
2001-04-03 16:43:21 +00:00
2000-09-18 16:07:07 +00:00
virtual void Command( const CommandEvent& rCEvt );
virtual void RequestHelp( const HelpEvent& rHEvt );
public:
ScContentTree( Window* pParent, const ResId& rResId );
~ScContentTree();
2001-11-02 13:18:22 +00:00
virtual void MouseButtonDown( const MouseEvent& rMEvt );
virtual void KeyInput( const KeyEvent& rKEvt );
2000-09-18 16:07:07 +00:00
void InitWindowBits( sal_Bool bButtons );
2000-09-18 16:07:07 +00:00
void Refresh( sal_uInt16 nType = 0 );
2000-09-18 16:07:07 +00:00
void ToggleRoot();
void SetRootType( sal_uInt16 nNew );
sal_uInt16 GetRootType() const { return nRootType; }
2000-09-18 16:07:07 +00:00
void ActiveDocChanged();
void ResetManualDoc();
void SetManualDoc(const String& rName);
sal_Bool LoadFile(const String& rUrl);
2000-09-18 16:07:07 +00:00
void SelectDoc(const String& rName);
const String& GetHiddenTitle() const { return aHiddenTitle; }
2002-10-16 11:13:04 +00:00
/** Applies the navigator settings to the listbox. */
void ApplySettings();
/** Stores the current listbox state in the navigator settings. */
void StoreSettings() const;
2001-11-02 13:18:22 +00:00
static sal_Bool IsInDrag() { return bIsInDrag; }
2000-09-18 16:07:07 +00:00
};
#endif // SC_NAVIPI_HXX
2010-10-27 12:43:08 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */