LibreOffice Module sc (master) 1
autostyl.hxx
Go to the documentation of this file.
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 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#pragma once
21
22#include <address.hxx>
23#include <utility>
24#include <vector>
25#include <rtl/ustring.hxx>
26#include <tools/solar.h>
27#include <vcl/timer.hxx>
28#include <vcl/idle.hxx>
29
30class ScDocShell;
31class ScRange;
32
34{
37 OUString aStyle;
38
39 ScAutoStyleData( sal_uLong nT, const ScRange& rR, OUString aT ) :
40 nTimeout(nT), aRange(rR), aStyle(std::move(aT)) {}
41};
43{
45 OUString aStyle1;
47 OUString aStyle2;
48
49 ScAutoStyleInitData( const ScRange& rR, OUString aSt1, sal_uLong nT, OUString aSt2 ) :
50 aRange(rR), aStyle1(std::move(aSt1)), nTimeout(nT), aStyle2(std::move(aSt2)) {}
51};
52
53
55{
56private:
57
62 std::vector<ScAutoStyleData> aEntries;
63 std::vector<ScAutoStyleInitData> aInitials;
64
65 void ExecuteEntries();
66 void AdjustEntries(sal_uLong nDiff);
67 void StartTimer(sal_uLong nNow);
68 DECL_LINK( TimerHdl, Timer*, void );
69 DECL_LINK( InitHdl, Timer*, void );
70
71public:
74
75 void AddInitial( const ScRange& rRange, const OUString& rStyle1,
76 sal_uLong nTimeout, const OUString& rStyle2 );
77 void AddEntry( sal_uLong nTimeout, const ScRange& rRange, const OUString& rStyle );
78
79 void ExecuteAllNow();
80};
81
82/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
DECL_LINK(TimerHdl, Timer *, void)
void AdjustEntries(sal_uLong nDiff)
Definition: autostyl.cxx:130
void AddInitial(const ScRange &rRange, const OUString &rStyle1, sal_uLong nTimeout, const OUString &rStyle2)
Definition: autostyl.cxx:77
DECL_LINK(InitHdl, Timer *, void)
std::vector< ScAutoStyleData > aEntries
Definition: autostyl.hxx:62
void ExecuteEntries()
Definition: autostyl.cxx:141
sal_uLong nTimerStart
Definition: autostyl.hxx:61
void StartTimer(sal_uLong nNow)
Definition: autostyl.cxx:168
void AddEntry(sal_uLong nTimeout, const ScRange &rRange, const OUString &rStyle)
Definition: autostyl.cxx:98
ScDocShell * pDocSh
Definition: autostyl.hxx:58
std::vector< ScAutoStyleInitData > aInitials
Definition: autostyl.hxx:63
void ExecuteAllNow()
Definition: autostyl.cxx:158
ScAutoStyleList(ScDocShell *pShell)
Definition: autostyl.cxx:60
sal_uIntPtr sal_uLong
sal_uLong nTimeout
Definition: autostyl.hxx:35
ScAutoStyleData(sal_uLong nT, const ScRange &rR, OUString aT)
Definition: autostyl.hxx:39
OUString aStyle
Definition: autostyl.hxx:37
ScRange aRange
Definition: autostyl.hxx:36
sal_uLong nTimeout
Definition: autostyl.hxx:46
ScAutoStyleInitData(const ScRange &rR, OUString aSt1, sal_uLong nT, OUString aSt2)
Definition: autostyl.hxx:49