Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : */
9 :
10 : #ifndef INCLUDED_SC_SOURCE_UI_INC_DATASTREAMDLG_HXX
11 : #define INCLUDED_SC_SOURCE_UI_INC_DATASTREAMDLG_HXX
12 :
13 : #include <sal/config.h>
14 :
15 : #include <rtl/ref.hxx>
16 : #include <vcl/dialog.hxx>
17 : #include <vcl/layout.hxx>
18 :
19 : #include "datastream.hxx"
20 :
21 : class ScDocShell;
22 : class SvtURLBox;
23 : class ScRange;
24 :
25 : namespace sc {
26 :
27 0 : class DataStreamDlg : public ModalDialog
28 : {
29 : ScDocShell *mpDocShell;
30 :
31 : SvtURLBox* m_pCbUrl;
32 : PushButton* m_pBtnBrowse;
33 : RadioButton* m_pRBDirectData;
34 : RadioButton* m_pRBScriptData;
35 : RadioButton* m_pRBValuesInLine;
36 : RadioButton* m_pRBAddressValue;
37 : CheckBox* m_pCBRefreshOnEmpty;
38 : RadioButton* m_pRBDataDown;
39 : RadioButton* m_pRBRangeDown;
40 : RadioButton* m_pRBNoMove;
41 : RadioButton* m_pRBMaxLimit;
42 : RadioButton* m_pRBUnlimited;
43 : Edit* m_pEdRange;
44 : Edit* m_pEdLimit;
45 : OKButton* m_pBtnOk;
46 : VclFrame* m_pVclFrameLimit;
47 : VclFrame* m_pVclFrameMove;
48 :
49 : DECL_LINK(UpdateHdl, void *);
50 : DECL_LINK(BrowseHdl, void *);
51 :
52 : void UpdateEnable();
53 : ScRange GetStartRange();
54 :
55 : public:
56 : DataStreamDlg(ScDocShell *pDocShell, vcl::Window* pParent);
57 :
58 : void Init( const DataStream& rStrm );
59 :
60 : void StartStream();
61 : };
62 :
63 : }
64 :
65 : #endif // INCLUDED_SC_SOURCE_UI_INC_DATASTREAMDLG_HXX
66 :
67 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|