merged tag LIBREOFFICE_3_2_99_3
[LibreOffice.git] / extensions / source / propctrlr / stringdefine.hxx
blobe5a27caa34f8ab16e93f77a9e88e65b366ada970
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef _EXTENSIONS_FORMSCTRLR_STRINGDEFINE_HXX_
30 #define _EXTENSIONS_FORMSCTRLR_STRINGDEFINE_HXX_
32 #include <rtl/ustring.hxx>
33 #include <tools/string.hxx>
35 //............................................................................
36 namespace pcr
38 //............................................................................
40 //============================================================
41 //= a helper for static ascii pseudo-unicode strings
42 //============================================================
43 struct ConstAsciiString
45 const sal_Char* ascii;
46 sal_Int32 length;
48 inline operator const ::rtl::OUString& () const;
49 inline operator const sal_Char* () const { return ascii; }
51 inline ConstAsciiString(const sal_Char* _pAsciiZeroTerminated, const sal_Int32 _nLength);
52 inline ~ConstAsciiString();
54 private:
55 mutable ::rtl::OUString* ustring;
58 //------------------------------------------------------------
59 inline ConstAsciiString::ConstAsciiString(const sal_Char* _pAsciiZeroTerminated, const sal_Int32 _nLength)
60 :ascii(_pAsciiZeroTerminated)
61 ,length(_nLength)
62 ,ustring(NULL)
66 //------------------------------------------------------------
67 inline ConstAsciiString::~ConstAsciiString()
69 delete ustring;
70 ustring = NULL;
73 //------------------------------------------------------------
74 inline ConstAsciiString::operator const ::rtl::OUString& () const
76 if (!ustring)
77 ustring = new ::rtl::OUString(ascii, length, RTL_TEXTENCODING_ASCII_US);
78 return *ustring;
81 //============================================================
83 #define CONST_ASCII_LENGTH(c) \
84 (const sal_Char*)c, c.length()
86 //============================================================
87 //= concrete strings
88 //============================================================
89 #ifndef PCR_IMPLEMENT_STRINGS
90 #define PCR_CONSTASCII_STRING(ident, string) extern const ConstAsciiString ident
91 #else
92 #define PCR_CONSTASCII_STRING(ident, string) extern const ConstAsciiString ident(string, sizeof(string)-1)
93 #endif
95 //............................................................................
96 } // namespace pcr
97 //............................................................................
99 #endif // _EXTENSIONS_FORMSCTRLR_STRINGDEFINE_HXX_
101 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */