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
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 21:45:32 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 21:45:32 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 21:45:32 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-09-18 16:07:07 +00:00
|
|
|
*
|
2008-04-10 21:45:32 +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
|
|
|
*
|
2008-04-10 21:45:32 +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
|
|
|
*
|
2008-04-10 21:45:32 +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
|
|
|
|
|
2012-10-11 16:13:12 -04:00
|
|
|
#include <svtools/treelistbox.hxx>
|
2000-09-18 16:07:07 +00:00
|
|
|
#include "global.hxx"
|
2004-06-04 10:31:10 +00:00
|
|
|
#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
|
|
|
|
2011-01-17 13:20:22 +01: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;
|
2012-10-18 16:28:20 +02:00
|
|
|
SvTreeListEntry* pRootNodes[SC_CONTENT_COUNT];
|
2012-08-17 00:55:18 +02:00
|
|
|
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
|
|
|
|
2012-08-17 00:55:18 +02:00
|
|
|
sal_uInt16 pPosList[SC_CONTENT_COUNT]; // for the sequence
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2012-08-17 00:55:18 +02:00
|
|
|
static sal_Bool bIsInDrag; // static, if the Navigator is deleted in ExecuteDrag
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
ScDocShell* GetManualOrCurrent();
|
|
|
|
|
2011-01-17 13:20:22 +01:00
|
|
|
void InitRoot(sal_uInt16 nType);
|
|
|
|
void ClearType(sal_uInt16 nType);
|
2000-09-18 16:07:07 +00:00
|
|
|
void ClearAll();
|
2011-01-17 13:20:22 +01:00
|
|
|
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();
|
2006-03-27 09:07:44 +00:00
|
|
|
void GetDrawingNames();
|
2000-09-18 16:07:07 +00:00
|
|
|
void GetNoteStrings();
|
|
|
|
|
2011-01-17 13:20:22 +01:00
|
|
|
static bool IsPartOfType( sal_uInt16 nContentType, sal_uInt16 nObjIdentifier );
|
2006-03-27 09:07:44 +00:00
|
|
|
|
2011-01-17 13:20:22 +01:00
|
|
|
sal_Bool DrawNamesChanged( sal_uInt16 nType );
|
|
|
|
sal_Bool NoteStringsChanged();
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2011-01-17 13:20:22 +01: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. */
|
2012-10-18 16:28:20 +02:00
|
|
|
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. */
|
2012-10-18 16:28:20 +02:00
|
|
|
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();
|
|
|
|
|
2012-03-01 18:00:32 +01:00
|
|
|
DECL_LINK( ContentDoubleClickHdl, void* );
|
2000-09-18 16:07:07 +00:00
|
|
|
DECL_STATIC_LINK( ScContentTree, ExecDragHdl, void* );
|
|
|
|
|
|
|
|
protected:
|
2011-01-17 13:20:22 +01:00
|
|
|
// virtual sal_Bool Drop( const DropEvent& rEvt );
|
|
|
|
// virtual sal_Bool QueryDrop( DropEvent& rEvt );
|
2001-04-03 16:43:21 +00:00
|
|
|
|
2007-02-27 12:20:45 +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
|
|
|
|
2011-01-17 13:20:22 +01:00
|
|
|
void InitWindowBits( sal_Bool bButtons );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
2011-01-17 13:20:22 +01:00
|
|
|
void Refresh( sal_uInt16 nType = 0 );
|
2000-09-18 16:07:07 +00:00
|
|
|
|
|
|
|
void ToggleRoot();
|
2011-01-17 13:20:22 +01:00
|
|
|
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);
|
2011-01-17 13:20:22 +01:00
|
|
|
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
|
|
|
|
2011-01-17 13:20:22 +01: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: */
|