merge the formfield patch from ooo-build
[ooovba.git] / writerfilter / source / doctok / WW8Text.cxx
blobe19f20becc759820a5819a1ad8374c7273b53152
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: WW8Text.cxx,v $
10 * $Revision: 1.5 $
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 #include <resources.hxx>
33 namespace writerfilter {
34 namespace doctok {
35 sal_uInt32 WW8sprmPChgTabsPapx::calcSize()
37 return getS8(0x2) + 3;
40 sal_uInt32 WW8sprmPChgTabsPapx::get_dxaDel_count()
42 return getS8(0x3);
45 sal_Int16 WW8sprmPChgTabsPapx::get_dxaDel(sal_uInt32 pos)
47 return getS16(0x4 + pos * 2);
50 sal_uInt32 WW8sprmPChgTabsPapx::get_dxaAdd_count()
52 return getS8(0x4 + get_dxaDel_count() * 2);
55 sal_Int16 WW8sprmPChgTabsPapx::get_dxaAdd(sal_uInt32 pos)
57 return getS16(0x4 + get_dxaDel_count() * 2 + 1 + pos * 2);
60 sal_uInt32 WW8sprmPChgTabsPapx::get_tbdAdd_count()
62 return get_dxaAdd_count();
65 writerfilter::Reference<Properties>::Pointer_t
66 WW8sprmPChgTabsPapx::get_tbdAdd(sal_uInt32 pos)
68 //wntmsci compiler cannot handle 'too many inlines' ;-)
69 writerfilter::Reference<Properties>::Pointer_t pRet( new WW8TBD(this,
70 0x4 + get_dxaDel_count() * 2 + 1 + get_dxaAdd_count() * 2
71 + pos, 1));
72 return pRet;
74 /* return writerfilter::Reference<Properties>::Pointer_t
75 (new WW8TBD(this,
76 0x4 + get_dxaDel_count() * 2 + 1 + get_dxaAdd_count() * 2
77 + pos, 1));*/