summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/datastream.hxx
blob: 6eb1e7d8fd858319c2f4a2bdfa28c6e00de618a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include <sal/config.h>

#include <rtl/ref.hxx>
#include <rtl/ustring.hxx>
#include <sfx2/lnkbase.hxx>
#include <address.hxx>
#include <refreshtimer.hxx>

#include <boost/noncopyable.hpp>
#include <boost/scoped_ptr.hpp>
#include <vector>

namespace datastreams {
    class ReaderThread;
}
class ScDocShell;
class ScDocument;
class Window;

typedef std::vector<OString> LinesList;

class DataStream : boost::noncopyable, public sfx2::SvBaseLink, ScRefreshTimer
{
    OString ConsumeLine();
    void MoveData();
    void Text2Doc();
    DECL_LINK( RefreshHdl, void* );

public:
    enum MoveEnum { NO_MOVE, RANGE_DOWN, MOVE_DOWN, MOVE_UP };
    enum { SCRIPT_STREAM = 1, VALUES_IN_LINE = 2 };

    static void MakeToolbarVisible();
    static DataStream* Set(ScDocShell *pShell, const OUString& rURL, const OUString& rRange,
            sal_Int32 nLimit, const OUString& rMove, sal_uInt32 nSettings);

    DataStream(ScDocShell *pShell, const OUString& rURL, const OUString& rRange,
            sal_Int32 nLimit, const OUString& rMove, sal_uInt32 nSettings);
    virtual ~DataStream();
    // sfx2::SvBaseLink
    virtual sfx2::SvBaseLink::UpdateResult DataChanged(
            const OUString& , const css::uno::Any& ) SAL_OVERRIDE;
    virtual void Edit(Window* , const Link& ) SAL_OVERRIDE;

    const ScRange& GetRange() const { return maRange; }
    const OUString& GetURL() const { return msURL; }
    const sal_Int32& GetLimit() const { return mnLimit; }
    const OUString& GetMove() const { return msMove; }
    const sal_uInt32& GetSettings() const { return mnSettings; }
    void Decode(const OUString& rURL, const OUString& rRange, sal_Int32 nLimit,
            const OUString& rMove, const sal_uInt32 nSettings);
    bool ImportData();
    void StartImport();
    void StopImport();

private:
    ScDocShell *mpScDocShell;
    ScDocument *mpScDocument;
    OUString msURL;
    OUString msRange;
    OUString msMove;
    sal_Int32 mnLimit;
    sal_uInt32 mnSettings;
    MoveEnum meMove;
    bool mbRunning;
    bool mbValuesInLine;
    LinesList *mpLines;
    size_t mnLinesCount;
    ScRange maRange;
    ScRange maStartRange;
    boost::scoped_ptr<ScRange> mpEndRange;
    rtl::Reference<datastreams::ReaderThread> mxReaderThread;
};

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */