fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / svx / optgrid.hxx
blob777a61a1fde478383d9fcb2364edf28d57da3184
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 .
19 #ifndef _SVX_OPTGRID_HXX
20 #define _SVX_OPTGRID_HXX
22 #include <sfx2/tabdlg.hxx>
23 #include <svl/eitem.hxx>
24 #include <vcl/group.hxx>
25 #include <vcl/fixed.hxx>
26 #include <vcl/field.hxx>
27 #include "svx/svxdllapi.h"
29 class SvxGridTabPage;
31 // class SvxOptionsGrid --------------------------------------------------
33 class SVX_DLLPUBLIC SvxOptionsGrid
35 protected:
36 sal_uInt32 nFldDrawX;
37 sal_uInt32 nFldDivisionX;
38 sal_uInt32 nFldDrawY;
39 sal_uInt32 nFldDivisionY;
40 sal_uInt32 nFldSnapX;
41 sal_uInt32 nFldSnapY;
42 sal_Bool bUseGridsnap:1;
43 sal_Bool bSynchronize:1;
44 sal_Bool bGridVisible:1;
45 sal_Bool bEqualGrid: 1;
47 public:
48 SvxOptionsGrid();
49 ~SvxOptionsGrid();
51 void SetFldDrawX( sal_uInt32 nSet){nFldDrawX = nSet;}
52 void SetFldDivisionX(sal_uInt32 nSet){nFldDivisionX = nSet;}
53 void SetFldDrawY ( sal_uInt32 nSet){nFldDrawY = nSet;}
54 void SetFldDivisionY(sal_uInt32 nSet){nFldDivisionY = nSet;}
55 void SetFldSnapX( sal_uInt32 nSet){nFldSnapX = nSet;}
56 void SetFldSnapY ( sal_uInt32 nSet){nFldSnapY = nSet;}
57 void SetUseGridSnap( sal_Bool bSet ) {bUseGridsnap = bSet;}
58 void SetSynchronize( sal_Bool bSet ) {bSynchronize = bSet;}
59 void SetGridVisible( sal_Bool bSet ) {bGridVisible = bSet;}
60 void SetEqualGrid( sal_Bool bSet ) {bEqualGrid = bSet;}
62 sal_uInt32 GetFldDrawX( ) const { return nFldDrawX; }
63 sal_uInt32 GetFldDivisionX() const { return nFldDivisionX;}
64 sal_uInt32 GetFldDrawY ( ) const { return nFldDrawY; }
65 sal_uInt32 GetFldDivisionY() const { return nFldDivisionY;}
66 sal_uInt32 GetFldSnapX( ) const { return nFldSnapX; }
67 sal_uInt32 GetFldSnapY ( ) const { return nFldSnapY; }
68 sal_Bool GetUseGridSnap( ) const { return bUseGridsnap; }
69 sal_Bool GetSynchronize( ) const { return bSynchronize; }
70 sal_Bool GetGridVisible( ) const { return bGridVisible; }
71 sal_Bool GetEqualGrid() const { return bEqualGrid; }
74 // class SvxGridItem -----------------------------------------------------
76 class SVX_DLLPUBLIC SvxGridItem : public SvxOptionsGrid, public SfxPoolItem
78 // #i9076#
79 friend class SvxGridTabPage;
81 public:
82 SvxGridItem( sal_uInt16 _nWhich) : SfxPoolItem(_nWhich){};
83 SvxGridItem( const SvxGridItem& pTestItem );
85 virtual SfxPoolItem* Clone( SfxItemPool *pPool = 0 ) const;
86 virtual int operator==( const SfxPoolItem& ) const;
88 virtual SfxItemPresentation GetPresentation( SfxItemPresentation ePres,
89 SfxMapUnit eCoreMetric,
90 SfxMapUnit ePresMetric,
91 OUString &rText, const IntlWrapper * = 0 ) const;
95 // class SvxGridTabPage --------------------------------------------------
97 class SVX_DLLPUBLIC SvxGridTabPage : public SfxTabPage
99 using TabPage::ActivatePage;
100 using TabPage::DeactivatePage;
102 public:
103 SvxGridTabPage( Window* pParent, const SfxItemSet& rSet );
105 static SfxTabPage* Create( Window* pParent, const SfxItemSet& rAttrSet );
107 virtual sal_Bool FillItemSet( SfxItemSet& rSet );
108 virtual void Reset( const SfxItemSet& rSet );
110 virtual void ActivatePage( const SfxItemSet& rSet );
111 virtual int DeactivatePage( SfxItemSet* pSet );
113 private:
114 CheckBox aCbxUseGridsnap;
115 CheckBox aCbxGridVisible;
117 FixedLine aFlResolution;
118 FixedText aFtDrawX;
119 MetricField aMtrFldDrawX;
120 FixedText aFtDrawY;
121 MetricField aMtrFldDrawY;
123 FixedLine aFlDivision;
124 FixedText aFtDivisionX;
125 NumericField aNumFldDivisionX;
126 FixedText aDivisionPointX;
128 FixedText aFtDivisionY;
129 NumericField aNumFldDivisionY;
130 FixedText aDivisionPointY;
132 CheckBox aCbxSynchronize;
133 FixedLine aGrpDrawGrid;
135 protected:
136 //these controls are used in draw and impress
137 FixedLine aGrpSnap;
138 CheckBox aCbxSnapHelplines;
139 CheckBox aCbxSnapBorder;
140 CheckBox aCbxSnapFrame;
141 CheckBox aCbxSnapPoints;
142 FixedText aFtSnapArea;
143 MetricField aMtrFldSnapArea;
145 FixedLine aSeparatorFL;
147 FixedLine aGrpOrtho;
148 CheckBox aCbxOrtho;
149 CheckBox aCbxBigOrtho;
150 CheckBox aCbxRotate;
151 MetricField aMtrFldAngle;
152 FixedText aFtBezAngle;
153 MetricField aMtrFldBezAngle;
155 private:
156 sal_Bool bAttrModified;
158 DECL_LINK( ClickRotateHdl_Impl, void * );
159 DECL_LINK( ChangeDrawHdl_Impl, MetricField * );
160 DECL_LINK( ChangeGridsnapHdl_Impl, void * );
161 DECL_LINK( ChangeDivisionHdl_Impl, NumericField * );
164 #endif
166 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */