Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*
3 : : * This file is part of the LibreOffice project.
4 : : *
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/.
8 : : *
9 : : * This file incorporates work covered by the following license notice:
10 : : *
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 .
18 : : */
19 : :
20 : : #ifndef _SBXRES_HXX
21 : : #define _SBXRES_HXX
22 : :
23 : : #include <rtl/ustring.hxx>
24 : :
25 : : // Currently there are no resources provided in the SVTOOLS-Project.
26 : : // Because it is non-critical resources (BASIC-Keywords),
27 : : // we can work with dummies.
28 : :
29 : : #define STRING_TYPES 0
30 : : #define STRING_EMPTY 0
31 : : #define STRING_NULL 1
32 : : #define STRING_INTEGER 2
33 : : #define STRING_LONG 3
34 : : #define STRING_SINGLE 4
35 : : #define STRING_DOUBLE 5
36 : : #define STRING_CURRENCY 6
37 : : #define STRING_DATE 7
38 : : #define STRING_STRING 8
39 : : #define STRING_OBJECT 9
40 : : #define STRING_ERROR 10
41 : : #define STRING_BOOL 11
42 : : #define STRING_VARIANT 12
43 : : #define STRING_ANY 13
44 : : #define STRING_CHAR 16
45 : : #define STRING_BYTE 17
46 : : #define STRING_USHORT 18
47 : : #define STRING_ULONG 19
48 : : #define STRING_INT 22
49 : : #define STRING_UINT 23
50 : : #define STRING_LPSTR 30
51 : : #define STRING_LPWSTR 31
52 : : #define STRING_AS 32
53 : : #define STRING_OPTIONAL 33
54 : : #define STRING_BYREF 34
55 : :
56 : : #define STRING_NAMEPROP 35
57 : : #define STRING_PARENTPROP 36
58 : : #define STRING_APPLPROP 37
59 : : #define STRING_COUNTPROP 38
60 : : #define STRING_ADDMETH 39
61 : : #define STRING_ITEMMETH 40
62 : : #define STRING_REMOVEMETH 41
63 : :
64 : : #define STRING_ERRORMSG 42
65 : : #define STRING_FALSE 43
66 : : #define STRING_TRUE 44
67 : :
68 : : #define SBXRES_MAX 44
69 : :
70 : 0 : class SbxRes : public ::rtl::OUString
71 : : {
72 : : public:
73 : : SbxRes( sal_uInt16 );
74 : : };
75 : :
76 : : const char* GetSbxRes( sal_uInt16 );
77 : :
78 : :
79 : : #endif
80 : :
81 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|