2010-10-27 12:43:08 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
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
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
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
|
|
|
* 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>
|
|
|
|
|
|
|
|
#include <vcl/button.hxx>
|
|
|
|
#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
|
|
|
|
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,
|
2011-01-17 13:20:22 +01:00
|
|
|
sal_uLong nRefresh );
|
2001-04-27 18:31:24 +00:00
|
|
|
|
|
|
|
virtual short Execute(); // overwritten to set dialog parent
|
|
|
|
|
2011-08-29 21:25:37 -04:00
|
|
|
rtl::OUString GetURL();
|
|
|
|
rtl::OUString GetFilter(); // may be empty
|
|
|
|
rtl::OUString GetOptions(); // filter options
|
|
|
|
rtl::OUString GetSource(); // separated by ";"
|
2011-01-17 13:20:22 +01:00
|
|
|
sal_uLong GetRefresh(); // 0 if disabled
|
2001-04-27 18:31:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2010-10-27 12:43:08 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|