1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 SC_VIEWOPTI_HXX
21 #define SC_VIEWOPTI_HXX
23 #include <svx/optgrid.hxx>
25 #include <svx/svxids.hrc>
27 #include "optutil.hxx"
58 #define MAX_OPT (sal_uInt16)VOPT_CLIPMARKS+1
59 #define MAX_TYPE (sal_uInt16)VOBJ_TYPE_DRAW+1
61 #define SC_STD_GRIDCOLOR COL_LIGHTGRAY
63 // SvxGrid options with standard operators
65 class ScGridOptions
: public SvxOptionsGrid
68 ScGridOptions() : SvxOptionsGrid() {}
69 ScGridOptions( const SvxOptionsGrid
& rOpt
) : SvxOptionsGrid( rOpt
) {}
72 const ScGridOptions
& operator= ( const ScGridOptions
& rCpy
);
73 bool operator== ( const ScGridOptions
& rOpt
) const;
74 bool operator!= ( const ScGridOptions
& rOpt
) const { return !(operator==(rOpt
)); }
79 class SC_DLLPUBLIC ScViewOptions
83 ScViewOptions( const ScViewOptions
& rCpy
);
88 void SetOption( ScViewOption eOpt
, sal_Bool bNew
= sal_True
) { aOptArr
[eOpt
] = bNew
; }
89 bool GetOption( ScViewOption eOpt
) const { return aOptArr
[eOpt
]; }
91 void SetObjMode( ScVObjType eObj
, ScVObjMode eMode
) { aModeArr
[eObj
] = eMode
; }
92 ScVObjMode
GetObjMode( ScVObjType eObj
) const { return aModeArr
[eObj
]; }
94 void SetGridColor( const Color
& rCol
, const OUString
& rName
) { aGridCol
= rCol
; aGridColName
= rName
;}
95 Color
GetGridColor( OUString
* pStrName
= NULL
) const;
97 const ScGridOptions
& GetGridOptions() const { return aGridOpt
; }
98 void SetGridOptions( const ScGridOptions
& rNew
) { aGridOpt
= rNew
; }
99 SvxGridItem
* CreateGridItem( sal_uInt16 nId
= SID_ATTR_GRID_OPTIONS
) const;
101 const ScViewOptions
& operator= ( const ScViewOptions
& rCpy
);
102 int operator== ( const ScViewOptions
& rOpt
) const;
103 int operator!= ( const ScViewOptions
& rOpt
) const { return !(operator==(rOpt
)); }
106 bool aOptArr
[MAX_OPT
];
107 ScVObjMode aModeArr
[MAX_TYPE
];
109 OUString aGridColName
;
110 ScGridOptions aGridOpt
;
113 // Item for the options dialoge - View
115 class SC_DLLPUBLIC ScTpViewItem
: public SfxPoolItem
119 ScTpViewItem( sal_uInt16 nWhich
, const ScViewOptions
& rOpt
);
120 ScTpViewItem( const ScTpViewItem
& rItem
);
123 virtual OUString
GetValueText() const;
124 virtual int operator==( const SfxPoolItem
& ) const;
125 virtual SfxPoolItem
* Clone( SfxItemPool
*pPool
= 0 ) const;
127 const ScViewOptions
& GetViewOptions() const { return theOptions
; }
130 ScViewOptions theOptions
;
134 // CfgItem for View options
136 class ScViewCfg
: public ScViewOptions
138 ScLinkConfigItem aLayoutItem
;
139 ScLinkConfigItem aDisplayItem
;
140 ScLinkConfigItem aGridItem
;
142 DECL_LINK( LayoutCommitHdl
, void* );
143 DECL_LINK( DisplayCommitHdl
, void* );
144 DECL_LINK( GridCommitHdl
, void* );
146 com::sun::star::uno::Sequence
<OUString
> GetLayoutPropertyNames();
147 com::sun::star::uno::Sequence
<OUString
> GetDisplayPropertyNames();
148 com::sun::star::uno::Sequence
<OUString
> GetGridPropertyNames();
153 void SetOptions( const ScViewOptions
& rNew
);
159 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */