LibreOffice Module sd (master) 1
dlgsnap.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 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include <tools/fract.hxx>
23#include <vcl/weld.hxx>
24
25/************************************************************************/
26
27class SfxItemSet;
28namespace sd {
29 class View;
30}
31
36{
37private:
41
42 std::unique_ptr<weld::Label> m_xFtX;
43 std::unique_ptr<weld::MetricSpinButton> m_xMtrFldX;
44 std::unique_ptr<weld::Label> m_xFtY;
45 std::unique_ptr<weld::MetricSpinButton> m_xMtrFldY;
46 std::unique_ptr<weld::Widget> m_xRadioGroup;
47 std::unique_ptr<weld::RadioButton> m_xRbPoint;
48 std::unique_ptr<weld::RadioButton> m_xRbVert;
49 std::unique_ptr<weld::RadioButton> m_xRbHorz;
50 std::unique_ptr<weld::Button> m_xBtnDelete;
51
52 DECL_LINK(ClickHdl, weld::Button&, void);
53 DECL_LINK(ToggleHdl, weld::Toggleable&, void);
54
55public:
56 SdSnapLineDlg(weld::Window* pWindow, const SfxItemSet& rInAttrs, ::sd::View const * pView);
57 virtual ~SdSnapLineDlg() override;
58
59 void GetAttr(SfxItemSet& rOutAttrs);
60
61 void HideRadioGroup();
62 void HideDeleteBtn() { m_xBtnDelete->hide(); }
63 void SetInputFields(bool bEnableX, bool bEnableY);
64};
65
66/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
dialog to adjust snap- lines and points
Definition: dlgsnap.hxx:36
std::unique_ptr< weld::MetricSpinButton > m_xMtrFldY
Definition: dlgsnap.hxx:45
std::unique_ptr< weld::RadioButton > m_xRbVert
Definition: dlgsnap.hxx:48
std::unique_ptr< weld::Button > m_xBtnDelete
Definition: dlgsnap.hxx:50
virtual ~SdSnapLineDlg() override
Definition: dlgsnap.cxx:101
std::unique_ptr< weld::Label > m_xFtX
Definition: dlgsnap.hxx:42
std::unique_ptr< weld::RadioButton > m_xRbHorz
Definition: dlgsnap.hxx:49
SdSnapLineDlg(weld::Window *pWindow, const SfxItemSet &rInAttrs, ::sd::View const *pView)
dialog to adjust grid (scarcely ESO!)
Definition: dlgsnap.cxx:36
void SetInputFields(bool bEnableX, bool bEnableY)
disable X or Y input fields
Definition: dlgsnap.cxx:153
void HideRadioGroup()
Definition: dlgsnap.cxx:145
void HideDeleteBtn()
Definition: dlgsnap.hxx:62
DECL_LINK(ClickHdl, weld::Button &, void)
DECL_LINK(ToggleHdl, weld::Toggleable &, void)
std::unique_ptr< weld::Label > m_xFtY
Definition: dlgsnap.hxx:44
std::unique_ptr< weld::RadioButton > m_xRbPoint
Definition: dlgsnap.hxx:47
void GetAttr(SfxItemSet &rOutAttrs)
fills provided item sets with dialog box attributes
Definition: dlgsnap.cxx:129
std::unique_ptr< weld::Widget > m_xRadioGroup
Definition: dlgsnap.hxx:46
Fraction aUIScale
Definition: dlgsnap.hxx:40
std::unique_ptr< weld::MetricSpinButton > m_xMtrFldX
Definition: dlgsnap.hxx:43