1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
22 #include "chldwrap.hxx"
24 #include <redline.hxx>
25 #include <sfx2/sidebar/PanelLayout.hxx>
26 #include <sfx2/basedlgs.hxx>
27 #include <svl/lstner.hxx>
28 #include <svx/ctredlin.hxx>
29 #include <o3tl/sorted_vector.hxx>
34 class SwChildWinWrapper
;
36 struct SwRedlineDataChild
38 const SwRedlineData
* pChild
; // link to original stacked data
39 const SwRedlineDataChild
* pNext
; // link to stacked data
40 std::unique_ptr
<weld::TreeIter
> xTLBChild
; // corresponding TreeListBox entry
43 struct SwRedlineDataParent
45 const SwRedlineData
* pData
; // RedlineDataPtr
46 const SwRedlineDataChild
* pNext
; // link to stacked data
47 std::unique_ptr
<weld::TreeIter
> xTLBParent
; // corresponding TreeListBox entry
48 OUString sComment
; // redline comment
50 bool operator< ( const SwRedlineDataParent
& rObj
) const
51 { return (pData
&& pData
->GetSeqNo() < rObj
.pData
->GetSeqNo()); }
54 class SwRedlineDataParentSortArr
: public o3tl::sorted_vector
<SwRedlineDataParent
*, o3tl::less_ptr_to
> {};
56 class SW_DLLPUBLIC SwRedlineAcceptDlg final
: public SfxListener
58 std::shared_ptr
<weld::Window
> m_xParentDlg
;
59 std::vector
<std::unique_ptr
<SwRedlineDataParent
>> m_RedlineParents
;
60 std::vector
<std::unique_ptr
<SwRedlineDataChild
>>
62 // purely here so we don't leak
63 std::vector
<std::unique_ptr
<RedlinData
>>
65 SwRedlineDataParentSortArr m_aUsedSeqNo
;
70 OUString m_sTableChgd
;
71 OUString m_sFormatCollSet
;
72 OUString m_sFilterAction
;
73 OUString m_sAutoFormat
;
74 bool m_bOnlyFormatedRedlines
;
75 bool m_bRedlnAutoFormat
;
77 // prevent update dialog data during longer operations (cf #102657#)
78 bool m_bInhibitActivate
;
80 // table column changes have not continuous redline ranges: it needs major tree list update
81 bool m_bHasTrackedColumn
;
83 std::unique_ptr
<SvxAcceptChgCtr
> m_xTabPagesCTRL
;
84 std::unique_ptr
<weld::Menu
> m_xPopup
, m_xSortMenu
;
86 SvxRedlinTable
* m_pTable
; // PB 2006/02/02 #i48648 now SvHeaderTabListBox
88 bool m_bInitialSelect
= true;
90 DECL_DLLPRIVATE_LINK(SortByComboBoxChangedHdl
, SvxTPView
*, void);
92 DECL_DLLPRIVATE_LINK( AcceptHdl
, SvxTPView
*, void );
93 DECL_DLLPRIVATE_LINK( AcceptAllHdl
, SvxTPView
*, void );
94 DECL_DLLPRIVATE_LINK( RejectHdl
, SvxTPView
*, void );
95 DECL_DLLPRIVATE_LINK( RejectAllHdl
, SvxTPView
*, void );
96 DECL_DLLPRIVATE_LINK( UndoHdl
, SvxTPView
*, void );
97 DECL_DLLPRIVATE_LINK( SelectHdl
, weld::TreeView
&, void );
98 DECL_DLLPRIVATE_LINK( GotoHdl
, Timer
*, void );
99 DECL_DLLPRIVATE_LINK( CommandHdl
, const CommandEvent
&, bool );
101 SAL_DLLPRIVATE
SwRedlineTable::size_type
CalcDiff(SwRedlineTable::size_type nStart
, bool bChild
);
102 SAL_DLLPRIVATE
void InsertChildren(SwRedlineDataParent
*pParent
, const SwRangeRedline
& rRedln
, bool bHasRedlineAutoFormat
);
103 SAL_DLLPRIVATE
void InsertParents(SwRedlineTable::size_type nStart
, SwRedlineTable::size_type nEnd
= SwRedlineTable::npos
);
104 SAL_DLLPRIVATE
void RemoveParents(SwRedlineTable::size_type nStart
, SwRedlineTable::size_type nEnd
);
105 SAL_DLLPRIVATE
void InitAuthors();
107 SAL_DLLPRIVATE
static const OUString
& GetActionImage(const SwRangeRedline
& rRedln
, sal_uInt16 nStack
= 0,
108 bool bTableChanges
= false, bool bRowChanges
= false);
109 SAL_DLLPRIVATE
const OUString
& GetActionText(const SwRangeRedline
& rRedln
, sal_uInt16 nStack
= 0);
110 SAL_DLLPRIVATE
SwRedlineTable::size_type
GetRedlinePos(const weld::TreeIter
& rEntry
);
112 SwRedlineAcceptDlg(SwRedlineAcceptDlg
const&) = delete;
113 SwRedlineAcceptDlg
& operator=(SwRedlineAcceptDlg
const&) = delete;
116 SwRedlineAcceptDlg(std::shared_ptr
<weld::Window
> xParent
, weld::Builder
*pBuilder
, weld::Container
*pContentArea
, bool bAutoFormat
= false);
117 ~SwRedlineAcceptDlg();
119 DECL_LINK( FilterChangedHdl
, SvxTPFilter
*, void );
121 SvxAcceptChgCtr
& GetChgCtrl() { return *m_xTabPagesCTRL
; }
122 bool HasRedlineAutoFormat() const { return m_bRedlnAutoFormat
; }
124 void Init(SwRedlineTable::size_type nStart
= 0);
125 void CallAcceptReject( bool bSelect
, bool bAccept
);
127 void Initialize(OUString
&rExtraData
);
128 void FillInfo(OUString
&rExtraData
) const;
132 virtual void Notify(SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
135 class SwModelessRedlineAcceptDlg final
: public SfxModelessDialogController
137 std::unique_ptr
<weld::Container
> m_xContentArea
;
138 std::unique_ptr
<SwRedlineAcceptDlg
> m_xImplDlg
;
139 SwChildWinWrapper
* m_pChildWin
;
140 bool mbInDestruction
= false;
143 SwModelessRedlineAcceptDlg(SfxBindings
*, SwChildWinWrapper
*, weld::Window
*pParent
);
144 virtual ~SwModelessRedlineAcceptDlg() override
;
146 virtual void Activate() override
;
147 virtual void FillInfo(SfxChildWinInfo
&) const override
;
148 void Initialize(SfxChildWinInfo
* pInfo
);
151 class SwRedlineAcceptChild final
: public SwChildWinWrapper
154 SwRedlineAcceptChild(vcl::Window
* ,
159 SFX_DECL_CHILDWINDOW_WITHID( SwRedlineAcceptChild
);
161 virtual bool ReInitDlg(SwDocShell
*pDocSh
) override
;
164 /// Redline (Manage Changes) panel for the sidebar.
165 class SwRedlineAcceptPanel final
: public PanelLayout
, public SfxListener
167 std::unique_ptr
<SwRedlineAcceptDlg
> mpImplDlg
;
168 std::unique_ptr
<weld::Container
> mxContentArea
;
170 SwRedlineAcceptPanel(weld::Widget
* pParent
);
171 virtual ~SwRedlineAcceptPanel() override
;
173 /// We need to be a SfxListener to be able to update the list of changes when we get SfxHintId::DocChanged.
174 virtual void Notify(SfxBroadcaster
& rBC
, const SfxHint
& rHint
) override
;
177 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */