update dev300-m58
[ooovba.git] / connectivity / source / drivers / macab / MacabRecord.hxx
blob72029582d0a04b91bdcbf2af2ba1820d773eca7d
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: MacabRecord.hxx,v $
10 * $Revision: 1.3 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef _CONNECTIVITY_MACAB_RECORD_HXX_
32 #define _CONNECTIVITY_MACAB_RECORD_HXX_
34 #include <cppuhelper/compbase3.hxx>
36 #include <premac.h>
37 #include <Carbon/Carbon.h>
38 #include <AddressBook/ABAddressBookC.h>
39 #include <postmac.h>
41 namespace connectivity
43 namespace macab
45 /* a MacabRecord is at root a list of macabfields (which is just
46 * something to hold both a CFTypeRef (a CoreFoundation object) and
47 * its Address Book type.
49 struct macabfield
51 CFTypeRef value;
52 ABPropertyType type;
55 class MacabRecord{
56 protected:
57 sal_Int32 size;
58 macabfield **fields;
59 protected:
60 void releaseFields();
61 public:
62 MacabRecord();
63 MacabRecord(const sal_Int32 _size);
64 virtual ~MacabRecord();
65 void insertAtColumn (CFTypeRef _value, ABPropertyType _type, const sal_Int32 _column);
66 sal_Bool contains(const macabfield *_field) const;
67 sal_Bool contains(const CFTypeRef _value) const;
68 sal_Int32 getSize() const;
69 macabfield *copy(const sal_Int32 i) const;
70 macabfield *get(const sal_Int32 i) const;
72 static sal_Int32 compareFields(const macabfield *_field1, const macabfield *_field2);
73 static macabfield *createMacabField(const ::rtl::OUString _newFieldString, const ABPropertyType _abtype);
74 static ::rtl::OUString fieldToString(const macabfield *_aField);
80 #endif // _CONNECTIVITY_MACAB_RECORD_HXX_