LibreOffice Module sw (master) 1
DashedLine.hxx
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#ifndef INCLUDED_SW_SOURCE_UIBASE_INC_DASHEDLINE_HXX
10#define INCLUDED_SW_SOURCE_UIBASE_INC_DASHEDLINE_HXX
11
12#include <vcl/ctrl.hxx>
13#include <viewopt.hxx>
14
17class SwDashedLine : public Control
18{
19 const Color& (SwViewOption::*m_pColorFn)() const;
20
21public:
22 SwDashedLine(vcl::Window* pParent, const Color& (SwViewOption::*pColorFn)() const);
23 virtual ~SwDashedLine() override;
24
25 virtual void Paint(vcl::RenderContext& rRenderContext, const tools::Rectangle& rRect) override;
26};
27
28#endif
29
30/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Class for displaying a dashed line in the Writer GUI.
Definition: DashedLine.hxx:18
const Color &(SwViewOption::* m_pColorFn)() const
Definition: DashedLine.hxx:19
SwDashedLine(vcl::Window *pParent, const Color &(SwViewOption::*pColorFn)() const)
Definition: DashedLine.cxx:22
virtual ~SwDashedLine() override
Definition: DashedLine.cxx:28
virtual void Paint(vcl::RenderContext &rRenderContext, const tools::Rectangle &rRect) override
Definition: DashedLine.cxx:32