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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/* -*- 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_MMADDRESSBLOCKPAGE_HXX
#define INCLUDED_SW_SOURCE_UI_DBUI_MMADDRESSBLOCKPAGE_HXX

#include <svx/weldeditview.hxx>
#include <vcl/wizardmachine.hxx>
#include <mailmergehelper.hxx>
#include <sfx2/basedlgs.hxx>
#include <vcl/textfilter.hxx>
#include <svl/lstner.hxx>
#include <o3tl/typed_flags_set.hxx>

class SwMailMergeWizard;
class SwMailMergeConfigItem;

class SwMailMergeAddressBlockPage : public vcl::OWizardPage
{
    OUString            m_sDocument;
    OUString            m_sCurrentAddress;
    OUString            m_sChangeAddress;

    SwMailMergeWizard*  m_pWizard;

    std::unique_ptr<weld::Button> m_xAddressListPB;
    std::unique_ptr<weld::Label> m_xCurrentAddressFI;

    std::unique_ptr<weld::Container> m_xStep2;
    std::unique_ptr<weld::Container> m_xStep3;
    std::unique_ptr<weld::Container> m_xStep4;

    std::unique_ptr<weld::Label> m_xSettingsFI;
    std::unique_ptr<weld::CheckButton> m_xAddressCB;
    std::unique_ptr<weld::Button> m_xSettingsPB;
    std::unique_ptr<weld::CheckButton> m_xHideEmptyParagraphsCB;

    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::Button> m_xDifferentlist;

    std::unique_ptr<SwAddressPreview> m_xSettings;
    std::unique_ptr<SwAddressPreview> m_xPreview;
    std::unique_ptr<weld::CustomWeld> m_xSettingsWIN;
    std::unique_ptr<weld::CustomWeld> m_xPreviewWIN;

    void InsertDataHdl(const weld::Button* pButton);

    DECL_LINK(AddressListHdl_Impl, weld::Button&, void);
    DECL_LINK(SettingsHdl_Impl, weld::Button&, void);
    DECL_LINK(AssignHdl_Impl, weld::Button&, void);
    DECL_LINK(AddressBlockHdl_Impl, weld::ToggleButton&, void);
    DECL_LINK(InsertDataHdl_Impl, weld::Button&, void);
    DECL_LINK(AddressBlockSelectHdl_Impl, LinkParamNone*, void);
    DECL_LINK(HideParagraphsHdl_Impl, weld::ToggleButton&, void);

    void                EnableAddressBlock(bool bAll, bool bSelective);

    virtual void        Activate() override;
    virtual bool        commitPage( ::vcl::WizardTypes::CommitPageReason _eReason ) override;
    virtual bool        canAdvance() const override;

public:
    SwMailMergeAddressBlockPage(weld::Container* pPage, SwMailMergeWizard* pWizard);
    virtual ~SwMailMergeAddressBlockPage() override;
    SwMailMergeWizard* GetWizard() { return m_pWizard; }
};

class SwSelectAddressBlockDialog : public SfxDialogController
{
    css::uno::Sequence< OUString>    m_aAddressBlocks;
    SwMailMergeConfigItem& m_rConfig;

    std::unique_ptr<SwAddressPreview> m_xPreview;
    std::unique_ptr<weld::Button> m_xNewPB;
    std::unique_ptr<weld::Button> m_xCustomizePB;
    std::unique_ptr<weld::Button> m_xDeletePB;
    std::unique_ptr<weld::RadioButton> m_xNeverRB;
    std::unique_ptr<weld::RadioButton> m_xAlwaysRB;
    std::unique_ptr<weld::RadioButton> m_xDependentRB;
    std::unique_ptr<weld::Entry> m_xCountryED;
    std::unique_ptr<weld::CustomWeld> m_xPreviewWin;

    DECL_LINK(NewCustomizeHdl_Impl, weld::Button&, void);
    DECL_LINK(DeleteHdl_Impl, weld::Button&, void);
    DECL_LINK(IncludeHdl_Impl, weld::ToggleButton&, void);

public:
    SwSelectAddressBlockDialog(weld::Window* pParent, SwMailMergeConfigItem& rConfig);
    virtual ~SwSelectAddressBlockDialog() override;

    void         SetAddressBlocks(const css::uno::Sequence< OUString>& rBlocks,
                                sal_uInt16 nSelected);
    const css::uno::Sequence< OUString>&    GetAddressBlocks();

    void         SetSettings(bool bIsCountry, const OUString& sCountry);
    bool         IsIncludeCountry() const {return !m_xNeverRB->get_active();}
    OUString     GetCountry() const;
};

class SwCustomizeAddressBlockDialog;

enum class MoveItemFlags {
    NONE           = 0,
    Left           = 1,
    Right          = 2,
    Up             = 4,
    Down           = 8,
};
namespace o3tl {
    template<> struct typed_flags<MoveItemFlags> : is_typed_flags<MoveItemFlags, 0x0f> {};
}

class AddressMultiLineEdit;

class AddressMultiLineEdit : public WeldEditView
                           , public SfxListener
{
    Link<bool,void> m_aSelectionLink;
    Link<AddressMultiLineEdit&,void> m_aModifyLink;
    SwCustomizeAddressBlockDialog*  m_pParentDialog;

    css::uno::Reference<css::datatransfer::dnd::XDropTarget> m_xDropTarget;

    virtual void EditViewSelectionChange() const override;
    virtual css::uno::Reference<css::datatransfer::dnd::XDropTarget> GetDropTarget() const override;

    virtual bool KeyInput(const KeyEvent& rKEvt) override;
    virtual bool MouseButtonDown(const MouseEvent& rMEvt) override;

public:
    AddressMultiLineEdit(SwCustomizeAddressBlockDialog *pParent);
    virtual void SetDrawingArea(weld::DrawingArea* pDrawingArea) override;
    void EndDropTarget();
    bool SetCursorLogicPosition(const Point& rPosition);
    void UpdateFields();
    virtual ~AddressMultiLineEdit() override;

    void            SetSelectionChangedHdl( const Link<bool,void>& rLink ) { m_aSelectionLink = rLink; }
    void            SetModifyHdl( const Link<AddressMultiLineEdit&,void>& rLink ) { m_aModifyLink = rLink; }

    void            SetText( const OUString& rStr );
    OUString        GetText() const;
    OUString        GetAddress() const;

    void            InsertNewEntry( const OUString& rStr );
    void            InsertNewEntryAtPosition( const OUString& rStr, sal_uLong nPara, sal_uInt16 nIndex );
    void            RemoveCurrentEntry();

    void            MoveCurrentItem(MoveItemFlags nMove);
    MoveItemFlags   IsCurrentItemMoveable() const;
    bool            HasCurrentItem() const;
    OUString        GetCurrentItem() const;
    void            SelectCurrentItem();
};

class SwCustomizeAddressBlockDialog : public SfxDialogController
{
    friend class AddressMultiLineEdit;
public:
    enum DialogType
    {
        ADDRESSBLOCK_NEW,
        ADDRESSBLOCK_EDIT,
        GREETING_FEMALE,
        GREETING_MALE
    };
private:
    TextFilter              m_aTextFilter;

    std::vector<OUString>     m_aSalutations;
    std::vector<OUString>     m_aPunctuations;

    OUString                m_sCurrentSalutation;
    OUString                m_sCurrentPunctuation;
    OUString                m_sCurrentText;

    SwMailMergeConfigItem&  m_rConfigItem;
    DialogType              m_eType;

    Idle m_aSelectionChangedIdle;

    std::unique_ptr<weld::Label> m_xAddressElementsFT;
    std::unique_ptr<weld::TreeView> m_xAddressElementsLB;
    std::unique_ptr<weld::Button> m_xInsertFieldIB;
    std::unique_ptr<weld::Button> m_xRemoveFieldIB;
    std::unique_ptr<weld::Label> m_xDragFT;
    std::unique_ptr<weld::Button> m_xUpIB;
    std::unique_ptr<weld::Button> m_xLeftIB;
    std::unique_ptr<weld::Button> m_xRightIB;
    std::unique_ptr<weld::Button> m_xDownIB;
    std::unique_ptr<weld::Label> m_xFieldFT;
    std::unique_ptr<weld::ComboBox> m_xFieldCB;
    std::unique_ptr<weld::Button> m_xOK;
    std::unique_ptr<SwAddressPreview> m_xPreview;
    std::unique_ptr<weld::CustomWeld> m_xPreviewWIN;
    std::unique_ptr<AddressMultiLineEdit> m_xDragED;
    std::unique_ptr<weld::CustomWeld> m_xDragWIN;

    DECL_LINK(OKHdl_Impl, weld::Button&, void);
    DECL_LINK(ListBoxSelectHdl_Impl, weld::TreeView&, void);
    DECL_LINK(EditModifyHdl_Impl, AddressMultiLineEdit&, void);
    DECL_LINK(ImageButtonHdl_Impl, weld::Button&, void);
    DECL_LINK(SelectionChangedHdl_Impl, bool, void);
    DECL_LINK(FieldChangeComboBoxHdl_Impl, weld::ComboBox&, void);
    DECL_LINK(TextFilterHdl, OUString&, bool);
    DECL_LINK(SelectionChangedIdleHdl, Timer*, void);

    sal_Int32       GetSelectedItem_Impl() const;
    void            UpdateImageButtons_Impl();

public:
    SwCustomizeAddressBlockDialog(weld::Widget* pParent, SwMailMergeConfigItem& rConfig, DialogType);
    virtual ~SwCustomizeAddressBlockDialog() override;

    bool SetCursorLogicPosition(const Point& rPosition);
    void UpdateFields();

    // for dragging from the TreeViews, return the active source
    weld::TreeView* get_drag_source() const { return m_xAddressElementsLB->get_drag_source(); }
    bool            HasItem(sal_Int32 nUserData);

    void SetAddress(const OUString& rAddress);
    OUString GetAddress() const;
};

class SwAssignFieldsControl;
class SwAssignFieldsDialog : public SfxDialogController
{
    OUString                m_sNone;
    OUString                m_rPreviewString;

    SwMailMergeConfigItem&  m_rConfigItem;

    std::unique_ptr<SwAddressPreview> m_xPreview;
    std::unique_ptr<weld::Label> m_xMatchingFI;
    std::unique_ptr<weld::Label> m_xAddressTitle;
    std::unique_ptr<weld::Label> m_xMatchTitle;
    std::unique_ptr<weld::Label> m_xPreviewTitle;
    std::unique_ptr<weld::Label> m_xPreviewFI;
    std::unique_ptr<weld::Button> m_xOK;
    std::unique_ptr<weld::CustomWeld> m_xPreviewWin;
    std::unique_ptr<SwAssignFieldsControl> m_xFieldsControl;

    std::unique_ptr<weld::SizeGroup> m_xLabelGroup;
    std::unique_ptr<weld::SizeGroup> m_xComboGroup;
    std::unique_ptr<weld::SizeGroup> m_xPreviewGroup;

    css::uno::Sequence< OUString > CreateAssignments();
    DECL_LINK(OkHdl_Impl, weld::Button&, void);
    DECL_LINK(AssignmentModifyHdl_Impl, LinkParamNone*, void);

public:
    SwAssignFieldsDialog(weld::Window* pParent,
                SwMailMergeConfigItem& rConfigItem,
                const OUString& rPreview,
                bool bIsAddressBlock);

    void ConnectSizeGroups(int nLabelWidth, int nComboBoxWidth, int nPreviewWidth);

    virtual ~SwAssignFieldsDialog() override;
};
#endif

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