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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
/* -*- 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/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SW_SOURCE_UI_DBUI_MMGREETINGSPAGE_HXX
#define INCLUDED_SW_SOURCE_UI_DBUI_MMGREETINGSPAGE_HXX
#include <svtools/wizardmachine.hxx>
#include <sfx2/basedlgs.hxx>
#include <mailmergehelper.hxx>
#include <svtools/svmedit.hxx>
#include <vcl/weld.hxx>
class SwMailMergeWizard;
class SwGreetingsHandler
{
protected:
VclPtr<SwMailMergeWizard> m_pWizard;
/// The mail merge state, available even when m_pWizard is nullptr.
SwMailMergeConfigItem& m_rConfigItem;
bool m_bIsTabPage;
std::unique_ptr<weld::CheckButton> m_xGreetingLineCB;
std::unique_ptr<weld::CheckButton> m_xPersonalizedCB;
std::unique_ptr<weld::Label> m_xFemaleFT;
std::unique_ptr<weld::ComboBox> m_xFemaleLB;
std::unique_ptr<weld::Button> m_xFemalePB;
std::unique_ptr<weld::Label> m_xMaleFT;
std::unique_ptr<weld::ComboBox> m_xMaleLB;
std::unique_ptr<weld::Button> m_xMalePB;
std::unique_ptr<weld::Label> m_xFemaleFI;
std::unique_ptr<weld::Label> m_xFemaleColumnFT;
std::unique_ptr<weld::ComboBox> m_xFemaleColumnLB;
std::unique_ptr<weld::Label> m_xFemaleFieldFT;
std::unique_ptr<weld::ComboBox> m_xFemaleFieldCB;
std::unique_ptr<weld::Label> m_xNeutralFT;
std::unique_ptr<weld::ComboBox> m_xNeutralCB;
SwGreetingsHandler(SwMailMergeConfigItem& rConfigItem, weld::Builder& rBuilder)
: m_rConfigItem(rConfigItem)
, m_bIsTabPage(false)
, m_xGreetingLineCB(rBuilder.weld_check_button("greeting"))
, m_xPersonalizedCB(rBuilder.weld_check_button("personalized"))
, m_xFemaleFT(rBuilder.weld_label("femaleft"))
, m_xFemaleLB(rBuilder.weld_combo_box("female"))
, m_xFemalePB(rBuilder.weld_button("newfemale"))
, m_xMaleFT(rBuilder.weld_label("maleft"))
, m_xMaleLB(rBuilder.weld_combo_box("male"))
, m_xMalePB(rBuilder.weld_button("newmale"))
, m_xFemaleFI(rBuilder.weld_label("femalefi"))
, m_xFemaleColumnFT(rBuilder.weld_label("femalecolft"))
, m_xFemaleColumnLB(rBuilder.weld_combo_box("femalecol"))
, m_xFemaleFieldFT(rBuilder.weld_label("femalefieldft"))
, m_xFemaleFieldCB(rBuilder.weld_combo_box("femalefield"))
, m_xNeutralFT(rBuilder.weld_label("generalft"))
, m_xNeutralCB(rBuilder.weld_combo_box("general"))
{
}
~SwGreetingsHandler() {}
DECL_LINK(IndividualHdl_Impl, weld::ToggleButton&, void);
DECL_LINK(GreetingHdl_Impl, weld::Button&, void);
void Contains(bool bContainsGreeting);
virtual void UpdatePreview();
};
class SwMailMergeGreetingsPage : public svt::OWizardPage
, public SwGreetingsHandler
{
std::unique_ptr<AddressPreview> m_xPreview;
std::unique_ptr<weld::Label> m_xPreviewFI;
std::unique_ptr<weld::Button> m_xAssignPB;
std::unique_ptr<weld::Label> m_xDocumentIndexFI;
std::unique_ptr<weld::Button> m_xPrevSetIB;
std::unique_ptr<weld::Button> m_xNextSetIB;
std::unique_ptr<weld::CustomWeld> m_xPreviewWIN;
OUString m_sDocument;
DECL_LINK(ContainsHdl_Impl, weld::ToggleButton&, void);
DECL_LINK(InsertDataHdl_Impl, weld::Button&, void);
DECL_LINK(GreetingSelectComboBoxHdl_Impl, weld::ComboBox&, void);
DECL_LINK(GreetingSelectListBoxHdl_Impl, weld::ComboBox&, void);
DECL_LINK(AssignHdl_Impl, weld::Button&, void);
virtual void UpdatePreview() override;
virtual void ActivatePage() override;
virtual bool commitPage( ::svt::WizardTypes::CommitPageReason _eReason ) override;
public:
SwMailMergeGreetingsPage(SwMailMergeWizard* pWizard, TabPageParent pParent);
virtual ~SwMailMergeGreetingsPage() override;
virtual void dispose() override;
};
class SwMailBodyDialog : public SfxDialogController, public SwGreetingsHandler
{
std::unique_ptr<weld::Label> m_xBodyFT;
std::unique_ptr<weld::TextView> m_xBodyMLE;
std::unique_ptr<weld::Button> m_xOK;
DECL_LINK(ContainsHdl_Impl, weld::ToggleButton&, void);
DECL_LINK(OKHdl, weld::Button&, void);
public:
SwMailBodyDialog(weld::Window* pParent);
virtual ~SwMailBodyDialog() override;
void SetBody(const OUString& rBody ) { m_xBodyMLE->set_text(rBody); }
OUString GetBody() const { return m_xBodyMLE->get_text(); }
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|