2001-04-27 18:31:24 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 22:06:25 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2001-04-27 18:31:24 +00:00
|
|
|
*
|
2008-04-10 22:06:25 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2001-04-27 18:31:24 +00:00
|
|
|
*
|
2008-04-10 22:06:25 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-04-27 18:31:24 +00:00
|
|
|
*
|
2008-04-10 22:06:25 +00:00
|
|
|
* $RCSfile: linkarea.hxx,v $
|
|
|
|
* $Revision: 1.7 $
|
2001-04-27 18:31:24 +00:00
|
|
|
*
|
2008-04-10 22:06:25 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2001-04-27 18:31:24 +00:00
|
|
|
*
|
2008-04-10 22:06:25 +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.
|
2001-04-27 18:31:24 +00:00
|
|
|
*
|
2008-04-10 22:06:25 +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).
|
2001-04-27 18:31:24 +00:00
|
|
|
*
|
2008-04-10 22:06:25 +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.
|
2001-04-27 18:31:24 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SC_LINKAREA_HXX
|
|
|
|
#define SC_LINKAREA_HXX
|
|
|
|
|
2004-10-04 19:17:50 +00:00
|
|
|
#include <com/sun/star/embed/XEmbeddedObject.hpp>
|
2001-04-27 18:31:24 +00:00
|
|
|
#include <vcl/dialog.hxx>
|
|
|
|
|
|
|
|
#ifndef _SV_BUTTON_HXX
|
|
|
|
#include <vcl/button.hxx>
|
|
|
|
#endif
|
|
|
|
#include <vcl/field.hxx>
|
|
|
|
#include <vcl/fixed.hxx>
|
|
|
|
#include <vcl/lstbox.hxx>
|
|
|
|
#include <svtools/stdctrl.hxx>
|
2001-07-09 13:45:16 +00:00
|
|
|
#include <svtools/inettbc.hxx>
|
2001-04-27 18:31:24 +00:00
|
|
|
|
2004-10-04 19:17:50 +00:00
|
|
|
//REMOVE #ifndef SO2_DECL_SVEMBEDDEDOBJECT_DEFINED
|
|
|
|
//REMOVE #define SO2_DECL_SVEMBEDDEDOBJECT_DEFINED
|
|
|
|
//REMOVE SO2_DECL_REF(SvEmbeddedObject)
|
|
|
|
//REMOVE #endif
|
2001-04-27 18:31:24 +00:00
|
|
|
|
2006-11-22 09:47:58 +00:00
|
|
|
namespace sfx2 { class DocumentInserter; }
|
|
|
|
namespace sfx2 { class FileDialogHelper; }
|
2001-04-27 18:31:24 +00:00
|
|
|
|
2006-11-22 09:47:58 +00:00
|
|
|
class ScDocShell;
|
2001-04-27 18:31:24 +00:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class ScLinkedAreaDlg : public ModalDialog
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
FixedLine aFlLocation;
|
2001-07-09 13:45:16 +00:00
|
|
|
SvtURLBox aCbUrl;
|
2001-04-27 18:31:24 +00:00
|
|
|
PushButton aBtnBrowse;
|
|
|
|
FixedInfo aTxtHint;
|
|
|
|
FixedText aFtRanges;
|
|
|
|
MultiListBox aLbRanges;
|
|
|
|
CheckBox aBtnReload;
|
|
|
|
NumericField aNfDelay;
|
|
|
|
FixedText aFtSeconds;
|
|
|
|
OKButton aBtnOk;
|
|
|
|
CancelButton aBtnCancel;
|
|
|
|
HelpButton aBtnHelp;
|
|
|
|
|
2006-11-22 09:47:58 +00:00
|
|
|
ScDocShell* pSourceShell;
|
|
|
|
sfx2::DocumentInserter* pDocInserter;
|
|
|
|
|
2004-10-04 19:17:50 +00:00
|
|
|
SfxObjectShellRef aSourceRef;
|
|
|
|
::com::sun::star::uno::Reference< ::com::sun::star::embed::XEmbeddedObject > xSourceObject;
|
2001-04-27 18:31:24 +00:00
|
|
|
|
|
|
|
DECL_LINK( FileHdl, ComboBox* );
|
|
|
|
DECL_LINK( BrowseHdl, PushButton* );
|
|
|
|
DECL_LINK( RangeHdl, MultiListBox* );
|
|
|
|
DECL_LINK( ReloadHdl, CheckBox* );
|
2006-11-22 09:47:58 +00:00
|
|
|
DECL_LINK( DialogClosedHdl, sfx2::FileDialogHelper* );
|
|
|
|
|
2001-04-27 18:31:24 +00:00
|
|
|
void UpdateSourceRanges();
|
|
|
|
void UpdateEnable();
|
|
|
|
void LoadDocument( const String& rFile, const String& rFilter,
|
|
|
|
const String& rOptions );
|
|
|
|
|
|
|
|
public:
|
|
|
|
ScLinkedAreaDlg( Window* pParent );
|
|
|
|
~ScLinkedAreaDlg();
|
|
|
|
|
|
|
|
void InitFromOldLink( const String& rFile, const String& rFilter,
|
|
|
|
const String& rOptions, const String& rSource,
|
|
|
|
ULONG nRefresh );
|
|
|
|
|
|
|
|
virtual short Execute(); // overwritten to set dialog parent
|
|
|
|
|
|
|
|
String GetURL();
|
|
|
|
String GetFilter(); // may be empty
|
|
|
|
String GetOptions(); // filter options
|
|
|
|
String GetSource(); // separated by ";"
|
|
|
|
ULONG GetRefresh(); // 0 if disabled
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|