LibreOffice Module sw (master) 1
flddok.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#ifndef INCLUDED_SW_SOURCE_UI_FLDUI_FLDDOK_HXX
20#define INCLUDED_SW_SOURCE_UI_FLDUI_FLDDOK_HXX
21
22#include <sfx2/tabdlg.hxx>
23
24#include <numfmtlb.hxx>
25#include "fldpage.hxx"
26
28{
29 sal_Int32 m_nOldSel;
30 sal_uInt32 m_nOldFormat;
31
32 std::unique_ptr<weld::TreeView> m_xTypeLB;
33 std::unique_ptr<weld::Widget> m_xSelection;
34 std::unique_ptr<weld::TreeView> m_xSelectionLB;
35 std::unique_ptr<weld::Label> m_xValueFT;
36 std::unique_ptr<weld::Entry> m_xValueED;
37 std::unique_ptr<weld::Label> m_xLevelFT;
38 std::unique_ptr<weld::SpinButton> m_xLevelED;
39 std::unique_ptr<weld::Label> m_xDateFT;
40 std::unique_ptr<weld::Label> m_xTimeFT;
41 std::unique_ptr<weld::SpinButton> m_xDateOffsetED;
42 std::unique_ptr<weld::Widget> m_xFormat;
43 std::unique_ptr<weld::TreeView> m_xFormatLB;
44 std::unique_ptr<SwNumFormatTreeView> m_xNumFormatLB;
45 std::unique_ptr<weld::CheckButton> m_xFixedCB;
46
47 DECL_LINK(TypeHdl, weld::TreeView&, void);
48 DECL_LINK(FormatHdl, weld::TreeView&, void);
49 DECL_LINK(SubTypeHdl, weld::TreeView&, void);
50
51 void AddSubType(SwFieldTypesEnum nTypeId);
52 sal_Int32 FillFormatLB(SwFieldTypesEnum nTypeId);
53
54protected:
55 virtual sal_uInt16 GetGroup() override;
56
57public:
58 SwFieldDokPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet * pSet);
59
60 virtual ~SwFieldDokPage() override;
61
62 static std::unique_ptr<SfxTabPage> Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rAttrSet);
63
64 virtual bool FillItemSet( SfxItemSet* rSet ) override;
65 virtual void Reset( const SfxItemSet* rSet ) override;
66
67 virtual void FillUserData() override;
68};
69
70#endif
71
72/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::unique_ptr< weld::TreeView > m_xSelectionLB
Definition: flddok.hxx:34
virtual bool FillItemSet(SfxItemSet *rSet) override
Definition: flddok.cxx:530
void AddSubType(SwFieldTypesEnum nTypeId)
Definition: flddok.cxx:424
DECL_LINK(SubTypeHdl, weld::TreeView &, void)
std::unique_ptr< weld::TreeView > m_xFormatLB
Definition: flddok.hxx:43
std::unique_ptr< weld::Entry > m_xValueED
Definition: flddok.hxx:36
std::unique_ptr< weld::CheckButton > m_xFixedCB
Definition: flddok.hxx:45
std::unique_ptr< weld::Widget > m_xSelection
Definition: flddok.hxx:33
sal_uInt32 m_nOldFormat
Definition: flddok.hxx:30
std::unique_ptr< weld::SpinButton > m_xLevelED
Definition: flddok.hxx:38
virtual void Reset(const SfxItemSet *rSet) override
Definition: flddok.cxx:85
static std::unique_ptr< SfxTabPage > Create(weld::Container *pPage, weld::DialogController *pController, const SfxItemSet *rAttrSet)
Definition: flddok.cxx:622
std::unique_ptr< weld::SpinButton > m_xDateOffsetED
Definition: flddok.hxx:41
std::unique_ptr< weld::Label > m_xDateFT
Definition: flddok.hxx:39
std::unique_ptr< weld::Label > m_xLevelFT
Definition: flddok.hxx:37
sal_Int32 FillFormatLB(SwFieldTypesEnum nTypeId)
Definition: flddok.cxx:461
sal_Int32 m_nOldSel
Definition: flddok.hxx:29
virtual sal_uInt16 GetGroup() override
Definition: flddok.cxx:628
std::unique_ptr< weld::Label > m_xTimeFT
Definition: flddok.hxx:40
SwFieldDokPage(weld::Container *pPage, weld::DialogController *pController, const SfxItemSet *pSet)
Definition: flddok.cxx:34
DECL_LINK(FormatHdl, weld::TreeView &, void)
virtual void FillUserData() override
Definition: flddok.cxx:633
virtual ~SwFieldDokPage() override
Definition: flddok.cxx:81
std::unique_ptr< weld::Label > m_xValueFT
Definition: flddok.hxx:35
std::unique_ptr< SwNumFormatTreeView > m_xNumFormatLB
Definition: flddok.hxx:44
std::unique_ptr< weld::TreeView > m_xTypeLB
Definition: flddok.hxx:32
std::unique_ptr< weld::Widget > m_xFormat
Definition: flddok.hxx:42
DECL_LINK(TypeHdl, weld::TreeView &, void)
SwFieldTypesEnum
List of FieldTypes at UI.
Definition: fldbas.hxx:98