Version 3.6.0.2, tag libreoffice-3.6.0.2
[LibreOffice.git] / dbaccess / source / ui / dlg / optionalboolitem.hxx
blob0fdb2dedf611a468c570d6362c5362e13cd81303
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef DBACCESS_OPTIONALBOOLITEM_HXX
29 #define DBACCESS_OPTIONALBOOLITEM_HXX
31 #include <svl/poolitem.hxx>
33 #include <boost/optional.hpp>
35 //........................................................................
36 namespace dbaui
38 //........................................................................
40 //====================================================================
41 //= OptionalBoolItem
42 //====================================================================
43 class OptionalBoolItem : public SfxPoolItem
45 ::boost::optional< bool > m_aValue;
47 public:
48 TYPEINFO();
49 OptionalBoolItem( sal_Int16 nWhich );
50 OptionalBoolItem( const OptionalBoolItem& _rSource );
52 virtual int operator==( const SfxPoolItem& _rItem ) const;
53 virtual SfxPoolItem* Clone( SfxItemPool* _pPool = NULL ) const;
55 bool HasValue() const { return !!m_aValue; }
56 void ClearValue() { m_aValue.reset(); }
57 bool GetValue() const { return *m_aValue; }
58 void SetValue( const bool _bValue ) { m_aValue.reset( _bValue ); }
60 const ::boost::optional< bool >&
61 GetFullValue() const { return m_aValue; }
64 //........................................................................
65 } // namespace dbaui
66 //........................................................................
68 #endif // DBACCESS_OPTIONALBOOLITEM_HXX
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */