bump product version to 5.0.4.1
[LibreOffice.git] / sd / source / ui / inc / dlgsnap.hxx
blobf17a7c5c3413392f91ba0f5dd07625396486608f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef INCLUDED_SD_SOURCE_UI_INC_DLGSNAP_HXX
21 #define INCLUDED_SD_SOURCE_UI_INC_DLGSNAP_HXX
23 #include <vcl/button.hxx>
24 #include <vcl/fixed.hxx>
25 #include <vcl/field.hxx>
26 #include <vcl/group.hxx>
27 #include <vcl/layout.hxx>
28 #include <tools/fract.hxx>
29 #include <vcl/dialog.hxx>
30 #include "sdenumdef.hxx"
31 /************************************************************************/
33 class SfxItemSet;
34 namespace sd {
35 class View;
38 /**
39 * dialog to adjust snap- lines and points
41 class SdSnapLineDlg : public ModalDialog
43 private:
44 VclPtr<FixedText> m_pFtX;
45 VclPtr<MetricField> m_pMtrFldX;
46 VclPtr<FixedText> m_pFtY;
47 VclPtr<MetricField> m_pMtrFldY;
48 VclPtr<VclContainer> m_pRadioGroup;
49 VclPtr<RadioButton> m_pRbPoint;
50 VclPtr<RadioButton> m_pRbVert;
51 VclPtr<RadioButton> m_pRbHorz;
52 VclPtr<PushButton> m_pBtnDelete;
53 long nXValue;
54 long nYValue;
55 FieldUnit eUIUnit;
56 Fraction aUIScale;
58 DECL_LINK( ClickHdl, Button * );
60 public:
61 SdSnapLineDlg(vcl::Window* pWindow, const SfxItemSet& rInAttrs, ::sd::View* pView);
62 virtual ~SdSnapLineDlg();
63 virtual void dispose() SAL_OVERRIDE;
65 void GetAttr(SfxItemSet& rOutAttrs);
67 void HideRadioGroup();
68 void HideDeleteBtn() { m_pBtnDelete->Hide(); }
69 void SetInputFields(bool bEnableX, bool bEnableY);
72 #endif // INCLUDED_SD_SOURCE_UI_INC_DLGSNAP_HXX
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */