LibreOffice Module sw (master) 1
HeaderFooterWin.cxx
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
10#include <strings.hrc>
11
12#include <doc.hxx>
13#include <drawdoc.hxx>
14#include <cmdid.h>
15#include <DashedLine.hxx>
16#include <docsh.hxx>
17#include <edtwin.hxx>
18#include <fmthdft.hxx>
19#include <HeaderFooterWin.hxx>
20#include <pagedesc.hxx>
21#include <pagefrm.hxx>
22#include <view.hxx>
23#include <viewopt.hxx>
24#include <wrtsh.hxx>
26
41#include <editeng/boxitem.hxx>
42#include <svx/hdft.hxx>
43#include <sfx2/bindings.hxx>
44#include <sfx2/viewfrm.hxx>
47#include <vcl/canvastools.hxx>
48#include <vcl/metric.hxx>
49#include <vcl/svapp.hxx>
50#include <vcl/settings.hxx>
51#include <vcl/virdev.hxx>
52#include <memory>
53
54#define TEXT_PADDING 5
55#define BOX_DISTANCE 10
56#define BUTTON_WIDTH 18
57
58using namespace basegfx;
59using namespace basegfx::utils;
60using namespace drawinglayer::attribute;
61
62namespace
63{
65 {
66 basegfx::BColor aHslLine = basegfx::utils::rgb2hsl(rLineColor);
67 double nLuminance = aHslLine.getZ() * 2.5;
68 if ( nLuminance == 0 )
69 nLuminance = 0.5;
70 else if ( nLuminance >= 1.0 )
71 nLuminance = aHslLine.getZ() * 0.4;
72 aHslLine.setZ( nLuminance );
73 return basegfx::utils::hsl2rgb( aHslLine );
74 }
75
76 basegfx::BColor lcl_GetLighterGradientColor(const basegfx::BColor& rDarkColor)
77 {
78 basegfx::BColor aHslDark = basegfx::utils::rgb2hsl(rDarkColor);
79 double nLuminance = aHslDark.getZ() * 255 + 20;
80 aHslDark.setZ( nLuminance / 255.0 );
81 return basegfx::utils::hsl2rgb( aHslDark );
82 }
83
84 B2DPolygon lcl_GetPolygon( const ::tools::Rectangle& rRect, bool bOnTop )
85 {
86 const double nRadius = 3;
87 const double nKappa((M_SQRT2 - 1.0) * 4.0 / 3.0);
88
89 B2DPolygon aPolygon;
90 aPolygon.append( B2DPoint( rRect.Left(), rRect.Top() ) );
91
92 {
93 B2DPoint aCorner( rRect.Left(), rRect.Bottom() );
94 B2DPoint aStart( rRect.Left(), rRect.Bottom() - nRadius );
95 B2DPoint aEnd( rRect.Left() + nRadius, rRect.Bottom() );
96 aPolygon.append( aStart );
97 aPolygon.appendBezierSegment(
98 interpolate( aStart, aCorner, nKappa ),
99 interpolate( aEnd, aCorner, nKappa ),
100 aEnd );
101 }
102
103 {
104 B2DPoint aCorner( rRect.Right(), rRect.Bottom() );
105 B2DPoint aStart( rRect.Right() - nRadius, rRect.Bottom() );
106 B2DPoint aEnd( rRect.Right(), rRect.Bottom() - nRadius );
107 aPolygon.append( aStart );
108 aPolygon.appendBezierSegment(
109 interpolate( aStart, aCorner, nKappa ),
110 interpolate( aEnd, aCorner, nKappa ),
111 aEnd );
112 }
113
114 aPolygon.append( B2DPoint( rRect.Right(), rRect.Top() ) );
115
116 if ( !bOnTop )
117 {
120 aBRect.getCenterX(), aBRect.getCenterY(), M_PI );
121 aPolygon.transform( aRotation );
122 }
123
124 return aPolygon;
125 }
126}
127
129 const tools::Rectangle& rRect, bool bOnTop)
130{
131 rSeq.clear();
132 B2DPolygon aPolygon = lcl_GetPolygon(rRect, bOnTop);
133
134 // Colors
136 basegfx::BColor aFillColor = lcl_GetFillColor(aLineColor);
137 basegfx::BColor aLighterColor = lcl_GetLighterGradientColor(aFillColor);
138
140 if (rSettings.GetHighContrastMode())
141 {
142 aFillColor = rSettings.GetDialogColor().getBColor();
143 aLineColor = rSettings.GetDialogTextColor().getBColor();
144
147 }
148 else
149 {
151 double nAngle = M_PI;
152 if (bOnTop)
153 nAngle = 0;
154
155 FillGradientAttribute aFillAttrs(css::awt::GradientStyle_LINEAR, 0.0, 0.0, 0.0, nAngle,
156 basegfx::BColorStops(aLighterColor, aFillColor));
158 new drawinglayer::primitive2d::FillGradientPrimitive2D(aGradientRect, std::move(aFillAttrs))));
159 }
160
161 // Create the border lines primitive
163 new drawinglayer::primitive2d::PolygonHairlinePrimitive2D(std::move(aPolygon), aLineColor)));
164}
165
167 : SwDashedLine(pEditWin, &SwViewOption::GetHeaderFooterMarkColor)
168 , m_pEditWin(pEditWin)
169 , m_pFrame(pFrame)
170 , m_bIsHeader(bHeader)
171{
172}
173
175{
177 tools::Rectangle aVisArea = GetEditWin()->LogicToPixel(GetEditWin()->GetView().GetVisArea());
178 return aBounds.Overlaps(aVisArea);
179}
180
182{
183 if (!m_pWin)
184 {
186 m_pWin->SetZOrder(this, ZOrderFlags::Before);
187 }
188}
189
191{
192 Show(bShow);
193 if (!m_pWin && IsOnScreen())
194 EnsureWin();
195 if (m_pWin)
196 m_pWin->ShowAll(bShow);
197}
198
200{
201 ShowAll(!bReadonly);
202}
203
205{
206 if (m_pWin && m_pWin->Contains(rDocPt))
207 return true;
208
210 return aLineRect.Contains(rDocPt);
211}
212
214{
215 Point aLinePos(nXLineStart, aOffset.Y());
216 Size aLineSize(nXLineEnd - nXLineStart, 1);
217 SetPosSizePixel(aLinePos, aLineSize);
218
219 bool bOnScreen = IsOnScreen();
220 if (!m_pWin && bOnScreen)
221 {
222 EnsureWin();
223 m_pWin->ShowAll(true);
224 }
225 else if (m_pWin && !bOnScreen)
227
228 if (m_pWin)
229 m_pWin->SetOffset(aOffset);
230}
231
232SwHeaderFooterWin::SwHeaderFooterWin(SwEditWin* pEditWin, const SwFrame *pFrame, bool bHeader ) :
233 InterimItemWindow(pEditWin, "modules/swriter/ui/hfmenubutton.ui", "HFMenuButton"),
234 m_xMenuButton(m_xBuilder->weld_menu_button("menubutton")),
235 m_xPushButton(m_xBuilder->weld_button("button")),
236 m_pEditWin(pEditWin),
237 m_pFrame(pFrame),
238 m_bIsHeader( bHeader ),
239 m_bIsAppearing( false ),
240 m_nFadeRate( 100 ),
241 m_aFadeTimer("SwHeaderFooterWin m_aFadeTimer")
242{
243 m_xVirDev = m_xMenuButton->create_virtual_device();
245
246 m_xPushButton->connect_clicked(LINK(this, SwHeaderFooterWin, ClickHdl));
247 m_xMenuButton->connect_selected(LINK(this, SwHeaderFooterWin, SelectHdl));
248
249 // set the PopupMenu
250 // Rewrite the menu entries' text
251 if (m_bIsHeader)
252 {
253 m_xMenuButton->set_item_label("edit", SwResId(STR_FORMAT_HEADER));
254 m_xMenuButton->set_item_label("delete", SwResId(STR_DELETE_HEADER));
255 }
256 else
257 {
258 m_xMenuButton->set_item_label("edit", SwResId(STR_FORMAT_FOOTER));
259 m_xMenuButton->set_item_label("delete", SwResId(STR_DELETE_FOOTER));
260 }
261
264}
265
267{
268 disposeOnce();
269}
270
272{
273 m_xPushButton.reset();
274 m_xMenuButton.reset();
278}
279
281{
282 // Compute the text to show
284 const SwPageDesc* pDesc = pPageFrame->GetPageDesc();
285 bool bIsFirst = !pDesc->IsFirstShared() && pPageFrame->OnFirstPage();
286 bool bIsLeft = !pDesc->IsHeaderShared() && !pPageFrame->OnRightPage();
287 bool bIsRight = !pDesc->IsHeaderShared() && pPageFrame->OnRightPage();
288 m_sLabel = SwResId(STR_HEADER_TITLE);
289 if (!m_bIsHeader)
290 m_sLabel = bIsFirst ? SwResId(STR_FIRST_FOOTER_TITLE)
291 : bIsLeft ? SwResId(STR_LEFT_FOOTER_TITLE)
292 : bIsRight ? SwResId(STR_RIGHT_FOOTER_TITLE)
293 : SwResId(STR_FOOTER_TITLE );
294 else
295 m_sLabel = bIsFirst ? SwResId(STR_FIRST_HEADER_TITLE)
296 : bIsLeft ? SwResId(STR_LEFT_HEADER_TITLE)
297 : bIsRight ? SwResId(STR_RIGHT_HEADER_TITLE)
298 : SwResId(STR_HEADER_TITLE);
299
300 sal_Int32 nPos = m_sLabel.lastIndexOf("%1");
301 m_sLabel = m_sLabel.replaceAt(nPos, 2, pDesc->GetName());
302 m_xMenuButton->set_accessible_name(m_sLabel);
303
304 // Compute the text size and get the box position & size from it
305 ::tools::Rectangle aTextRect;
306 m_xVirDev->GetTextBoundRect(aTextRect, m_sLabel);
307 ::tools::Rectangle aTextPxRect = m_xVirDev->LogicToPixel(aTextRect);
308 FontMetric aFontMetric = m_xVirDev->GetFontMetric(m_xVirDev->GetFont());
309 Size aBoxSize (aTextPxRect.GetWidth() + BUTTON_WIDTH + TEXT_PADDING * 2,
310 aFontMetric.GetLineHeight() + TEXT_PADDING * 2 );
311
312 tools::Long nYFooterOff = 0;
313 if (!m_bIsHeader)
314 nYFooterOff = aBoxSize.Height();
315
316 Point aBoxPos(aOffset.X() - aBoxSize.Width() - BOX_DISTANCE,
317 aOffset.Y() - nYFooterOff);
318
320 {
321 aBoxPos.setX( aOffset.X() + BOX_DISTANCE );
322 }
323
324 // Set the position & Size of the window
325 SetPosSizePixel(aBoxPos, aBoxSize);
326
327 m_xVirDev->SetOutputSizePixel(aBoxSize);
328 PaintButton();
329}
330
332{
333 bool bIsEmptyHeaderFooter = IsEmptyHeaderFooter();
334 m_xMenuButton->set_visible(!bIsEmptyHeaderFooter);
335 m_xPushButton->set_visible(bIsEmptyHeaderFooter);
336
337 m_bIsAppearing = bShow;
338
342}
343
344bool SwHeaderFooterWin::Contains( const Point &rDocPt ) const
345{
347 return aRect.Contains(rDocPt);
348}
349
351{
352 if (!m_xVirDev)
353 return;
354
355 // Use pixels for the rest of the drawing
356 SetMapMode(MapMode(MapUnit::MapPixel));
358 const ::tools::Rectangle aRect(::tools::Rectangle(Point(0, 0), m_xVirDev->PixelToLogic(GetSizePixel())));
359
361
362 // Create the text primitive
364 B2DVector aFontSize;
365 FontAttribute aFontAttr = drawinglayer::primitive2d::getFontAttributeFromVclFont(aFontSize, m_xVirDev->GetFont(), false, false);
366
367 FontMetric aFontMetric = m_xVirDev->GetFontMetric(m_xVirDev->GetFont());
368 double nTextOffsetY = aFontMetric.GetAscent() + TEXT_PADDING;
369 Point aTextPos(TEXT_PADDING, nTextOffsetY);
370
372 aFontSize.getX(), aFontSize.getY(),
373 double(aTextPos.X()), double(aTextPos.Y())));
374
377 aTextMatrix, m_sLabel, 0, m_sLabel.getLength(),
378 std::vector<double>(), {}, std::move(aFontAttr), css::lang::Locale(), aLineColor)));
379
380 // Create the 'plus' or 'arrow' primitive
381 B2DRectangle aSignArea(B2DPoint(aRect.Right() - BUTTON_WIDTH, 0.0),
382 B2DVector(aRect.Right(), aRect.getOpenHeight()));
383
384 B2DPolygon aSign;
385 bool bIsEmptyHeaderFooter = IsEmptyHeaderFooter();
386 if (bIsEmptyHeaderFooter)
387 {
388 // Create the + polygon
389 double nLeft = aSignArea.getMinX() + TEXT_PADDING;
390 double nRight = aSignArea.getMaxX() - TEXT_PADDING;
391 double nHalfW = ( nRight - nLeft ) / 2.0;
392
393 double nTop = aSignArea.getCenterY() - nHalfW;
394 double nBottom = aSignArea.getCenterY() + nHalfW;
395
396 aSign.append(B2DPoint(nLeft, aSignArea.getCenterY() - 1.0));
397 aSign.append(B2DPoint(aSignArea.getCenterX() - 1.0, aSignArea.getCenterY() - 1.0));
398 aSign.append(B2DPoint(aSignArea.getCenterX() - 1.0, nTop));
399 aSign.append(B2DPoint(aSignArea.getCenterX() + 1.0, nTop));
400 aSign.append(B2DPoint(aSignArea.getCenterX() + 1.0, aSignArea.getCenterY() - 1.0));
401 aSign.append(B2DPoint(nRight, aSignArea.getCenterY() - 1.0));
402 aSign.append(B2DPoint(nRight, aSignArea.getCenterY() + 1.0));
403 aSign.append(B2DPoint(aSignArea.getCenterX() + 1.0, aSignArea.getCenterY() + 1.0));
404 aSign.append(B2DPoint(aSignArea.getCenterX() + 1.0, nBottom));
405 aSign.append(B2DPoint(aSignArea.getCenterX() - 1.0, nBottom));
406 aSign.append(B2DPoint(aSignArea.getCenterX() - 1.0, aSignArea.getCenterY() + 1.0));
407 aSign.append(B2DPoint(nLeft, aSignArea.getCenterY() + 1.0));
408 aSign.setClosed(true);
409 }
410 else
411 {
412 // Create the v polygon
413 B2DPoint aLeft(aSignArea.getMinX() + TEXT_PADDING, aSignArea.getCenterY());
414 B2DPoint aRight(aSignArea.getMaxX() - TEXT_PADDING, aSignArea.getCenterY());
415 B2DPoint aBottom((aLeft.getX() + aRight.getX()) / 2.0, aLeft.getY() + 4.0);
416 aSign.append(aLeft);
417 aSign.append(aRight);
418 aSign.append(aBottom);
419 aSign.setClosed(true);
420 }
421
422 BColor aSignColor = COL_BLACK.getBColor();
423 if (Application::GetSettings().GetStyleSettings().GetHighContrastMode())
424 aSignColor = COL_WHITE.getBColor();
425
428 B2DPolyPolygon(aSign), aSignColor)) );
429
430 // Create the processor and process the primitives
432 std::unique_ptr<drawinglayer::processor2d::BaseProcessor2D> pProcessor(
434
435 // TODO Ghost it all if needed
437 double nFadeRate = double(m_nFadeRate) / 100.0;
438
439 const basegfx::BColorModifierSharedPtr aBColorModifier =
440 std::make_shared<basegfx::BColorModifier_interpolate>(COL_WHITE.getBColor(),
441 1.0 - nFadeRate);
442
444 new drawinglayer::primitive2d::ModifiedColorPrimitive2D(std::move(aSeq), aBColorModifier));
445
446 pProcessor->process(aGhostedSeq);
447
448 if (bIsEmptyHeaderFooter)
449 m_xPushButton->set_custom_button(m_xVirDev.get());
450 else
451 m_xMenuButton->set_custom_button(m_xVirDev.get());
452}
453
455{
456 bool bResult = true;
457
459 if (!pPageFrame)
460 {
461 return bResult;
462 }
463
464 // Actually check it
465 const SwPageDesc* pDesc = pPageFrame->GetPageDesc();
466
467 bool const bFirst(pPageFrame->OnFirstPage());
468 const SwFrameFormat *const pFormat = (pPageFrame->OnRightPage())
469 ? pDesc->GetRightFormat(bFirst)
470 : pDesc->GetLeftFormat(bFirst);
471
472 if ( pFormat )
473 {
474 if ( m_bIsHeader )
475 bResult = !pFormat->GetHeader().IsActive();
476 else
477 bResult = !pFormat->GetFooter().IsActive();
478 }
479
480 return bResult;
481}
482
483void SwHeaderFooterWin::ExecuteCommand(std::u16string_view rIdent)
484{
485 SwView& rView = m_pEditWin->GetView();
486 SwWrtShell& rSh = rView.GetWrtShell();
487
489 const OUString& rStyleName = pPageFrame->GetPageDesc()->GetName();
490 if (rIdent == u"edit")
491 {
492 OUString sPageId = m_bIsHeader ? OUString("header") : OUString("footer");
493 rView.GetDocShell()->FormatPage(rView.GetFrameWeld(), rStyleName, sPageId, rSh);
494 }
495 else if (rIdent == u"borderback")
496 {
497 const SwPageDesc* pDesc = pPageFrame->GetPageDesc();
498 const SwFrameFormat& rMaster = pDesc->GetMaster();
499 SwFrameFormat* pHFFormat = const_cast< SwFrameFormat* >( rMaster.GetFooter().GetFooterFormat() );
500 if ( m_bIsHeader )
501 pHFFormat = const_cast< SwFrameFormat* >( rMaster.GetHeader().GetHeaderFormat() );
502 SfxItemSet aSet( pHFFormat->GetAttrSet() );
503
504 // Items to hand over XPropertyList things like XColorList,
505 // XHatchList, XGradientList, and XBitmapList to the Area TabPage:
506 aSet.MergeRange( SID_COLOR_TABLE, SID_PATTERN_LIST );
507 // create needed items for XPropertyList entries from the DrawModel so that
508 // the Area TabPage can access them
510
511 aSet.MergeRange(SID_ATTR_BORDER_INNER, SID_ATTR_BORDER_INNER);
512 // Create a box info item... needed by the dialog
513 std::shared_ptr<SvxBoxInfoItem> aBoxInfo(std::make_shared<SvxBoxInfoItem>(SID_ATTR_BORDER_INNER));
514 if (const SvxBoxInfoItem *pBoxInfo = pHFFormat->GetAttrSet().GetItemIfSet(SID_ATTR_BORDER_INNER))
515 aBoxInfo.reset(pBoxInfo->Clone());
516
517 aBoxInfo->SetTable(false);
518 aBoxInfo->SetDist(true);
519 aBoxInfo->SetMinDist(false);
520 aBoxInfo->SetDefDist(MIN_BORDER_DIST);
521 aBoxInfo->SetValid(SvxBoxInfoItemValidFlags::DISABLE);
522 aSet.Put(*aBoxInfo);
523
525 {
526 pHFFormat->SetFormatAttr( aSet );
527 rView.GetDocShell()->SetModified();
528 }
529 }
530 else if (rIdent == u"delete")
531 {
532 rSh.ChangeHeaderOrFooter( rStyleName, m_bIsHeader, false, true );
533 // warning: "this" may be disposed now
535 }
536 else if (rIdent == u"insert_pagenumber")
537 {
538 SfxViewFrame& rVFrame = rSh.GetView().GetViewFrame();
540 }
541 else if (rIdent == u"insert_pagecount")
542 {
543 SfxViewFrame& rVFrame = rSh.GetView().GetViewFrame();
545 }
546}
547
549{
550 SwView& rView = m_pEditWin->GetView();
551 SwWrtShell& rSh = rView.GetWrtShell();
552
553 const SwPageFrame* pPageFrame = SwFrameMenuButtonBase::GetPageFrame(m_pFrame);
554 const OUString& rStyleName = pPageFrame->GetPageDesc()->GetName();
555 {
556 VclPtr<SwHeaderFooterWin> xThis(this);
557 rSh.ChangeHeaderOrFooter( rStyleName, m_bIsHeader, true, false );
558 //tdf#153059 after ChangeHeaderOrFooter is it possible that "this" is disposed
559 if (xThis->isDisposed())
560 return;
561 }
562 m_xPushButton->hide();
563 m_xMenuButton->show();
564 PaintButton();
565}
566
567IMPL_LINK(SwHeaderFooterWin, SelectHdl, const OUString&, rIdent, void)
568{
569 ExecuteCommand(rIdent);
570}
571
573{
574 if (m_bIsAppearing && m_nFadeRate > 0)
575 m_nFadeRate -= 25;
576 else if (!m_bIsAppearing && m_nFadeRate < 100)
577 m_nFadeRate += 25;
578
579 if (m_nFadeRate != 100 && !IsVisible())
580 {
581 Show();
582 }
583 else if (m_nFadeRate == 100 && IsVisible())
584 {
585 Show(false);
586 }
587 else
588 PaintButton();
589
590 if (IsVisible() && m_nFadeRate > 0 && m_nFadeRate < 100)
591 m_aFadeTimer.Start();
592}
593
594/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static basegfx::BColor lcl_GetFillColor(const basegfx::BColor &rLineColor, double aLuminance)
IMPL_LINK(SwHeaderFooterWin, SelectHdl, const OUString &, rIdent, void)
#define BOX_DISTANCE
IMPL_LINK_NOARG(SwHeaderFooterWin, ClickHdl, weld::Button &, void)
#define TEXT_PADDING
#define BUTTON_WIDTH
const StyleSettings & GetStyleSettings() const
static bool GetLayoutRTL()
static const AllSettings & GetSettings()
basegfx::BColor getBColor() const
tools::Long GetLineHeight() const
tools::Long GetAscent() const
virtual const SwDrawModel * GetDrawModel() const =0
Draw Model and id accessors.
virtual void dispose() override
constexpr tools::Long Y() const
void setX(tools::Long nX)
constexpr tools::Long X() const
bool Execute(sal_uInt16 nSlot, const SfxPoolItem **pArgs=nullptr, SfxCallMode nCall=SfxCallMode::SLOT)
const T * GetItemIfSet(TypedWhichId< T > nWhich, bool bSrchInParent=true) const
const SfxPoolItem * Put(const SfxPoolItem &rItem, sal_uInt16 nWhich)
void MergeRange(sal_uInt16 nFrom, sal_uInt16 nTo)
SfxBindings & GetBindings()
weld::Window * GetFrameWeld() const
SfxViewFrame & GetViewFrame() const
constexpr tools::Long Height() const
constexpr tools::Long Width() const
const Color & GetDialogTextColor() const
bool GetHighContrastMode() const
const Color & GetDialogColor() const
Class for displaying a dashed line in the Writer GUI.
Definition: DashedLine.hxx:18
void FormatPage(weld::Window *pDialogParent, const OUString &rPage, const OUString &rPageId, SwWrtShell &rActShell, SfxRequest *pRequest=nullptr)
Show page style format dialog.
Definition: docst.cxx:1681
virtual void SetModified(bool=true) override
Definition: docsh2.cxx:1437
IDocumentDrawModelAccess const & getIDocumentDrawModelAccess() const
Definition: doc.cxx:169
void PutAreaListItems(SfxItemSet &rSet) const
Put needed items for XPropertyList entries from the DrawModel.
Definition: drawdoc.cxx:151
Window class for the Writer edit area, this is the one handling mouse and keyboard events and doing t...
Definition: edtwin.hxx:61
bool IsActive() const
Definition: fmthdft.hxx:89
const SwFrameFormat * GetFooterFormat() const
Definition: fmthdft.hxx:85
bool IsActive() const
Definition: fmthdft.hxx:58
const SwFrameFormat * GetHeaderFormat() const
Definition: fmthdft.hxx:54
const SwFormatFooter & GetFooter(bool=true) const
Definition: fmthdft.hxx:99
const SwFormatHeader & GetHeader(bool=true) const
Definition: fmthdft.hxx:97
const SwAttrSet & GetAttrSet() const
For querying the attribute array.
Definition: format.hxx:136
virtual bool SetFormatAttr(const SfxPoolItem &rAttr)
Definition: format.cxx:447
static void PaintButton(drawinglayer::primitive2d::Primitive2DContainer &rSeq, const tools::Rectangle &rRect, bool bOnTop)
Style of a layout element.
Definition: frmfmt.hxx:72
const SwPageFrame * GetPageFrame() const
Base class of the Writer layout elements.
Definition: frame.hxx:315
bool OnRightPage() const
Definition: frame.hxx:739
bool OnFirstPage() const
Definition: trvlfrm.cxx:1779
virtual void ShowAll(bool bShow) override
SwHeaderFooterDashedLine(SwEditWin *pEditWin, const SwFrame *pFrame, bool bIsHeader)
virtual void SetReadonly(bool bReadonly) override
virtual SwEditWin * GetEditWin() override
void SetOffset(Point aOffset, tools::Long nXLineStart, tools::Long nXLineEnd)
VclPtr< SwEditWin > m_pEditWin
VclPtr< SwHeaderFooterWin > m_pWin
virtual bool Contains(const Point &rDocPt) const override
void ShowAll(bool bShow)
void SetOffset(Point aOffset)
virtual ~SwHeaderFooterWin() override
VclPtr< VirtualDevice > m_xVirDev
std::unique_ptr< weld::MenuButton > m_xMenuButton
bool IsEmptyHeaderFooter() const
const SwFrame * m_pFrame
virtual void dispose() override
SwHeaderFooterWin(SwEditWin *pEditWin, const SwFrame *pFrame, bool bHeader)
bool Contains(const Point &rDocPt) const
void ExecuteCommand(std::u16string_view rIdent)
std::unique_ptr< weld::Button > m_xPushButton
VclPtr< SwEditWin > m_pEditWin
const OUString & GetName() const
Definition: pagedesc.hxx:196
SwFrameFormat & GetMaster()
Definition: pagedesc.hxx:238
bool IsHeaderShared() const
Definition: pagedesc.hxx:319
bool IsFirstShared() const
Definition: pagedesc.cxx:396
SwFrameFormat * GetRightFormat(bool const bFirst=false)
Layout uses the following methods to obtain a format in order to be able to create a page.
Definition: pagedesc.cxx:389
SwFrameFormat * GetLeftFormat(bool const bFirst=false)
Definition: pagedesc.cxx:382
A page of the document layout.
Definition: pagefrm.hxx:60
SwPageDesc * GetPageDesc()
Definition: pagefrm.hxx:147
const Color & GetHeaderFooterMarkColor() const
Definition: viewopt.cxx:537
static const SwViewOption & GetCurrentViewOptions()
Definition: viewopt.cxx:605
vcl::Window * GetWin() const
Definition: viewsh.hxx:364
SwDoc * GetDoc() const
Definition: viewsh.hxx:308
Definition: view.hxx:146
SwWrtShell & GetWrtShell() const
Definition: view.hxx:423
SwDocShell * GetDocShell()
Definition: view.cxx:1193
Used by the UI to modify the document model.
Definition: wrtsh.hxx:97
void ChangeHeaderOrFooter(std::u16string_view rStyleName, bool bHeader, bool bOn, bool bShowWarning)
Definition: wrtsh1.cxx:2138
const SwView & GetView() const
Definition: wrtsh.hxx:443
bool IsActive() const
void Stop()
void SetTimeout(sal_uInt64 nTimeoutMs)
void SetInvokeHandler(const Link< Timer *, void > &rLink)
virtual void Start(bool bStartTimer=true) override
void disposeAndClear()
void clear()
reference_type * get() const
static VclPtr< reference_type > Create(Arg &&... arg)
void transform(const basegfx::B2DHomMatrix &rMatrix)
void append(const basegfx::B2DPoint &rPoint, sal_uInt32 nCount)
void setClosed(bool bNew)
void appendBezierSegment(const basegfx::B2DPoint &rNextControlPoint, const basegfx::B2DPoint &rPrevControlPoint, const basegfx::B2DPoint &rPoint)
TYPE getMaxX() const
TYPE getMinX() const
double getCenterX() const
double getCenterY() const
TYPE getX() const
TYPE getY() const
TYPE getZ() const
void setZ(TYPE fZ)
constexpr tools::Long GetWidth() const
bool Contains(const Point &rPOINT) const
bool Overlaps(const tools::Rectangle &rRect) const
Point LogicToPixel(const Point &rLogicPt) const
virtual Point GetPosPixel() const
void SetMapMode()
void GrabFocusToDocument()
void Show(bool bVisible=true, ShowFlags nFlags=ShowFlags::NONE)
virtual Size GetSizePixel() const
weld::Window * GetFrameWeld() const
virtual void SetPosSizePixel(const Point &rNewPos, const Size &rNewSize)
#define FN_INSERT_FLD_PGNUMBER
Definition: cmdid.h:279
#define FN_INSERT_FLD_PGCOUNT
Definition: cmdid.h:280
constexpr ::Color COL_WHITE(0xFF, 0xFF, 0xFF)
constexpr ::Color COL_BLACK(0x00, 0x00, 0x00)
float u
sal_uInt16 nPos
Sequence< sal_Int8 > aSeq
B2DHomMatrix createScaleTranslateB2DHomMatrix(double fScaleX, double fScaleY, double fTranslateX, double fTranslateY)
B2DHomMatrix createRotateAroundPoint(double fPointX, double fPointY, double fRadiant)
BColor rgb2hsl(const BColor &rRGBColor)
BColor hsl2rgb(const BColor &rHSLColor)
std::shared_ptr< BColorModifier > BColorModifierSharedPtr
rtl::Reference< BasePrimitive2D > Primitive2DReference
attribute::FontAttribute getFontAttributeFromVclFont(basegfx::B2DVector &o_rSize, const vcl::Font &rFont, bool bRTL, bool bBiDiStrong)
std::unique_ptr< BaseProcessor2D > createProcessor2DFromOutputDevice(OutputDevice &rTargetOutDev, const drawinglayer::geometry::ViewInformation2D &rViewInformation2D)
HSLColor interpolate(const HSLColor &rFrom, const HSLColor &rTo, double t, bool bCCW)
bool ShowBorderBackgroundDlg(weld::Window *pParent, SfxItemSet *pBBSet)
long Long
basegfx::B2DRange b2DRectangleFromRectangle(const ::tools::Rectangle &rRect)
OUString SwResId(TranslateId aId)
Definition: swmodule.cxx:168
constexpr SwTwips MIN_BORDER_DIST
Definition: swtypes.hxx:70