LibreOffice Module sc (master) 1
filldlg.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 <vcl/weld.hxx>
23#include <global.hxx>
24
25class ScDocument;
26
28{
29public:
31 ScDocument& rDocument,
32 FillDir eFillDir,
33 FillCmd eFillCmd,
34 FillDateCmd eFillDateCmd,
35 OUString aStartStr,
36 double fStep,
37 double fMax,
38 SCSIZE nSelectHeight,
39 SCSIZE nSelectWidth,
40 sal_uInt16 nPossDir );
41 virtual ~ScFillSeriesDlg() override;
42
43 FillDir GetFillDir() const { return theFillDir; }
44 FillCmd GetFillCmd() const { return theFillCmd; }
46 double GetStart() const { return fStartVal; }
47 double GetStep() const { return fIncrement; }
48 double GetMax() const { return fEndVal; }
49
50 OUString GetStartStr() const { return m_xEdStartVal->get_text(); }
51
52 void SetEdStartValEnabled(bool bFlag);
53
54private:
55 const OUString aStartStrVal;
56 const OUString aErrMsgInvalidVal;
57
62 double fStartVal;
63 double fIncrement;
64 double fEndVal;
67
68 std::unique_ptr<weld::Label> m_xFtStartVal;
69 std::unique_ptr<weld::Entry> m_xEdStartVal;
70
71 std::unique_ptr<weld::Label> m_xFtEndVal;
72 std::unique_ptr<weld::Entry> m_xEdEndVal;
73
74 std::unique_ptr<weld::Label> m_xFtIncrement;
75 std::unique_ptr<weld::Entry> m_xEdIncrement;
76 std::unique_ptr<weld::RadioButton> m_xBtnDown;
77 std::unique_ptr<weld::RadioButton> m_xBtnRight;
78 std::unique_ptr<weld::RadioButton> m_xBtnUp;
79 std::unique_ptr<weld::RadioButton> m_xBtnLeft;
80
81 std::unique_ptr<weld::RadioButton> m_xBtnArithmetic;
82 std::unique_ptr<weld::RadioButton> m_xBtnGeometric;
83 std::unique_ptr<weld::RadioButton> m_xBtnDate;
84 std::unique_ptr<weld::RadioButton> m_xBtnAutoFill;
85
86 std::unique_ptr<weld::Label> m_xFtTimeUnit;
87 std::unique_ptr<weld::RadioButton> m_xBtnDay;
88 std::unique_ptr<weld::RadioButton> m_xBtnDayOfWeek;
89 std::unique_ptr<weld::RadioButton> m_xBtnMonth;
90 std::unique_ptr<weld::RadioButton> m_xBtnYear;
91
92 std::unique_ptr<weld::Button> m_xBtnOk;
93
94 void Init( sal_uInt16 nPossDir );
96
97 DECL_LINK(OKHdl, weld::Button&, void);
98 DECL_LINK(DisableHdl, weld::Toggleable&, void);
99};
100
101/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
size_t SCSIZE
size_t typedef to be able to find places where code was changed from USHORT to size_t and is used to ...
Definition: address.hxx:44
double GetStep() const
Definition: filldlg.hxx:47
double GetStart() const
Definition: filldlg.hxx:46
DECL_LINK(DisableHdl, weld::Toggleable &, void)
const OUString aErrMsgInvalidVal
Definition: filldlg.hxx:56
const SCSIZE m_nSelectHeight
Definition: filldlg.hxx:65
void SetEdStartValEnabled(bool bFlag)
Definition: filldlg.cxx:84
std::unique_ptr< weld::RadioButton > m_xBtnYear
Definition: filldlg.hxx:90
const OUString aStartStrVal
Definition: filldlg.hxx:55
double fIncrement
Definition: filldlg.hxx:63
double GetMax() const
Definition: filldlg.hxx:48
std::unique_ptr< weld::RadioButton > m_xBtnAutoFill
Definition: filldlg.hxx:84
std::unique_ptr< weld::RadioButton > m_xBtnDay
Definition: filldlg.hxx:87
std::unique_ptr< weld::Entry > m_xEdIncrement
Definition: filldlg.hxx:75
std::unique_ptr< weld::RadioButton > m_xBtnArithmetic
Definition: filldlg.hxx:81
std::unique_ptr< weld::RadioButton > m_xBtnLeft
Definition: filldlg.hxx:79
std::unique_ptr< weld::RadioButton > m_xBtnUp
Definition: filldlg.hxx:78
void Init(sal_uInt16 nPossDir)
Definition: filldlg.cxx:98
FillDateCmd theFillDateCmd
Definition: filldlg.hxx:61
OUString GetStartStr() const
Definition: filldlg.hxx:50
std::unique_ptr< weld::RadioButton > m_xBtnGeometric
Definition: filldlg.hxx:82
double fEndVal
Definition: filldlg.hxx:64
FillCmd theFillCmd
Definition: filldlg.hxx:60
double fStartVal
Definition: filldlg.hxx:62
const SCSIZE m_nSelectWidth
Definition: filldlg.hxx:66
std::unique_ptr< weld::RadioButton > m_xBtnDown
Definition: filldlg.hxx:76
std::unique_ptr< weld::RadioButton > m_xBtnMonth
Definition: filldlg.hxx:89
std::unique_ptr< weld::Entry > m_xEdEndVal
Definition: filldlg.hxx:72
std::unique_ptr< weld::RadioButton > m_xBtnRight
Definition: filldlg.hxx:77
std::unique_ptr< weld::Label > m_xFtIncrement
Definition: filldlg.hxx:74
FillDir theFillDir
Definition: filldlg.hxx:59
std::unique_ptr< weld::Label > m_xFtStartVal
Definition: filldlg.hxx:68
std::unique_ptr< weld::Label > m_xFtTimeUnit
Definition: filldlg.hxx:86
std::unique_ptr< weld::RadioButton > m_xBtnDate
Definition: filldlg.hxx:83
std::unique_ptr< weld::Label > m_xFtEndVal
Definition: filldlg.hxx:71
ScDocument & rDoc
Definition: filldlg.hxx:58
DECL_LINK(OKHdl, weld::Button &, void)
std::unique_ptr< weld::RadioButton > m_xBtnDayOfWeek
Definition: filldlg.hxx:88
FillDir GetFillDir() const
Definition: filldlg.hxx:43
FillCmd GetFillCmd() const
Definition: filldlg.hxx:44
std::unique_ptr< weld::Entry > m_xEdStartVal
Definition: filldlg.hxx:69
weld::Entry * CheckValues()
Definition: filldlg.cxx:182
std::unique_ptr< weld::Button > m_xBtnOk
Definition: filldlg.hxx:92
FillDateCmd GetFillDateCmd() const
Definition: filldlg.hxx:45
ScFillSeriesDlg(weld::Window *pParent, ScDocument &rDocument, FillDir eFillDir, FillCmd eFillCmd, FillDateCmd eFillDateCmd, OUString aStartStr, double fStep, double fMax, SCSIZE nSelectHeight, SCSIZE nSelectWidth, sal_uInt16 nPossDir)
Definition: filldlg.cxx:34
virtual ~ScFillSeriesDlg() override
Definition: filldlg.cxx:80
FillDateCmd
Definition: global.hxx:334
FillCmd
Definition: global.hxx:317
FillDir
Definition: global.hxx:309