summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/datastreamdlg.hxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2013-11-25 12:01:57 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2013-11-28 20:40:38 +0100
commit6ce9618ef9ebe58bc6f3ced34c465bbeb5df5b23 (patch)
tree036c9759a3cc515059273b33181cd2290f2d4414 /sc/source/ui/inc/datastreamdlg.hxx
parentfa0fe19e89ba68a6b02cbdd5eff6bc161024c53d (diff)
Allow to edit data stream from Edit-> Links... dialog.
Change-Id: Ibb456da55f04c39ddb7b58eb71ca488cf209edb5
Diffstat (limited to 'sc/source/ui/inc/datastreamdlg.hxx')
-rw-r--r--sc/source/ui/inc/datastreamdlg.hxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/sc/source/ui/inc/datastreamdlg.hxx b/sc/source/ui/inc/datastreamdlg.hxx
index cb469d78600c..5bb05f31df5b 100644
--- a/sc/source/ui/inc/datastreamdlg.hxx
+++ b/sc/source/ui/inc/datastreamdlg.hxx
@@ -13,6 +13,7 @@
#include <vcl/dialog.hxx>
#include <vcl/layout.hxx>
+class DataStream;
class ScDocShell;
class SvtURLBox;
@@ -25,6 +26,7 @@ class DataStreamDlg : public ModalDialog
RadioButton* m_pRBScriptData;
RadioButton* m_pRBValuesInLine;
RadioButton* m_pRBAddressValue;
+ RadioButton* m_pRBDataDown;
RadioButton* m_pRBRangeDown;
RadioButton* m_pRBNoMove;
RadioButton* m_pRBMaxLimit;
@@ -43,7 +45,9 @@ class DataStreamDlg : public ModalDialog
public:
DataStreamDlg(ScDocShell *pDocShell, Window* pParent);
~DataStreamDlg() {}
- void StartStream();
+ void Init(const OUString& rURL, const OUString& rRange, const sal_Int32 nLimit,
+ const OUString& rMove, const sal_uInt32 nSettings);
+ void StartStream(DataStream *pStream = 0);
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */