280 lines
10 KiB
C++
280 lines
10 KiB
C++
/* -*- 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 <vcl/idle.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::Toggleable&, void);
|
|
DECL_LINK(InsertDataHdl_Impl, weld::Button&, void);
|
|
DECL_LINK(AddressBlockSelectHdl_Impl, LinkParamNone*, void);
|
|
DECL_LINK(HideParagraphsHdl_Impl, weld::Toggleable&, 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::Toggleable&, 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;
|
|
|
|
virtual void EditViewSelectionChange() override;
|
|
virtual css::uno::Reference<css::datatransfer::dnd::XDropTarget> GetDropTarget() override;
|
|
|
|
virtual bool KeyInput(const KeyEvent& rKEvt) override;
|
|
virtual bool Command(const CommandEvent& rCEvt) 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;
|
|
|
|
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,
|
|
OUString aPreview,
|
|
bool bIsAddressBlock);
|
|
|
|
void ConnectSizeGroups(int nLabelWidth, int nComboBoxWidth, int nPreviewWidth);
|
|
|
|
virtual ~SwAssignFieldsDialog() override;
|
|
};
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|