LibreOffice Module basic (master) 1
props.cxx
Go to the documentation of this file.
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
21#include <runtime.hxx>
22#include <rtlproto.hxx>
23#include <errobject.hxx>
24
25
26// Properties and methods lay the return value down at Get (bWrite = sal_False)
27// at the element 0 of the Argv; at Put (bWrite = sal_True) the value from
28// element 0 is stored.
29
30void SbRtl_Erl(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutLong(StarBASIC::GetErl()); }
31
32void SbRtl_Err(StarBASIC *, SbxArray & rPar, bool bWrite)
33{
35 {
37 }
38 else
39 {
40 if( bWrite )
41 {
42 sal_Int32 nVal = rPar.Get(0)->GetLong();
43 if( nVal <= 65535 )
44 StarBASIC::Error( StarBASIC::GetSfxFromVBError( static_cast<sal_uInt16>(nVal) ) );
45 }
46 else
48 }
49}
50
51void SbRtl_False(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutBool(false); }
52
53void SbRtl_Empty(StarBASIC *, SbxArray &, bool) {}
54
55void SbRtl_Nothing(StarBASIC *, SbxArray & rPar, bool)
56{
57 // return an empty object
58 rPar.Get(0)->PutObject(nullptr);
59}
60
61void SbRtl_Null(StarBASIC *, SbxArray & rPar, bool)
62{
63 // returns an empty object-variable
64 rPar.Get(0)->PutNull();
65}
66
67void SbRtl_PI(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutDouble(M_PI); }
68
69void SbRtl_True(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutBool(true); }
70
71void SbRtl_ATTR_NORMAL(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(0); }
72void SbRtl_ATTR_READONLY(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
73void SbRtl_ATTR_HIDDEN(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(2); }
74void SbRtl_ATTR_SYSTEM(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(4); }
75void SbRtl_ATTR_VOLUME(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(8); }
76void SbRtl_ATTR_DIRECTORY(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(16); }
77void SbRtl_ATTR_ARCHIVE(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(32); }
78
79void SbRtl_V_EMPTY(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(0); }
80void SbRtl_V_NULL(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
81void SbRtl_V_INTEGER(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(2); }
82void SbRtl_V_LONG(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(3); }
83void SbRtl_V_SINGLE(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(4); }
84void SbRtl_V_DOUBLE(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(5); }
85void SbRtl_V_CURRENCY(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(6); }
86void SbRtl_V_DATE(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(7); }
87void SbRtl_V_STRING(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(8); }
88
89void SbRtl_MB_OK(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(0); }
90void SbRtl_MB_OKCANCEL(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
91void SbRtl_MB_ABORTRETRYIGNORE(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(2); }
92void SbRtl_MB_YESNOCANCEL(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(3); }
93void SbRtl_MB_YESNO(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(4); }
94void SbRtl_MB_RETRYCANCEL(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(5); }
95void SbRtl_MB_ICONSTOP(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(16); }
96void SbRtl_MB_ICONQUESTION(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(32); }
97void SbRtl_MB_ICONEXCLAMATION(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(48); }
98void SbRtl_MB_ICONINFORMATION(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(64); }
99void SbRtl_MB_DEFBUTTON1(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(0); }
100void SbRtl_MB_DEFBUTTON2(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(256); }
101void SbRtl_MB_DEFBUTTON3(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(512); }
102void SbRtl_MB_APPLMODAL(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(0); }
103void SbRtl_MB_SYSTEMMODAL(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(4096); }
104
105void SbRtl_IDOK(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
106void SbRtl_IDCANCEL(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(2); }
107void SbRtl_IDABORT(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(3); }
108void SbRtl_IDRETRY(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(4); }
109void SbRtl_IDIGNORE(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(5); }
110void SbRtl_IDYES(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(6); }
111void SbRtl_IDNO(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(7); }
112
113void SbRtl_CF_TEXT(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
114void SbRtl_CF_BITMAP(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(2); }
115void SbRtl_CF_METAFILEPICT(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(3); }
116
117void SbRtl_TYP_AUTHORFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(7); }
118void SbRtl_TYP_CHAPTERFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(4); }
119void SbRtl_TYP_CONDTXTFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(27); }
120void SbRtl_TYP_DATEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(0); }
121void SbRtl_TYP_DBFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(19); }
122void SbRtl_TYP_DBNAMEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(3); }
123void SbRtl_TYP_DBNEXTSETFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(24); }
124void SbRtl_TYP_DBNUMSETFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(25); }
125void SbRtl_TYP_DBSETNUMBERFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(26); }
126void SbRtl_TYP_DDEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(14); }
127void SbRtl_TYP_DOCINFOFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(18); }
128void SbRtl_TYP_DOCSTATFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(6); }
129void SbRtl_TYP_EXTUSERFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(30); }
130void SbRtl_TYP_FILENAMEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(2); }
131void SbRtl_TYP_FIXDATEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(31); }
132void SbRtl_TYP_FIXTIMEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(32); }
133void SbRtl_TYP_FORMELFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(10); }
134void SbRtl_TYP_GETFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(9); }
135void SbRtl_TYP_GETREFFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(13); }
136void SbRtl_TYP_HIDDENPARAFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(17); }
137void SbRtl_TYP_HIDDENTXTFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(11); }
138void SbRtl_TYP_INPUTFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(16); }
139void SbRtl_TYP_MACROFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(15); }
140void SbRtl_TYP_NEXTPAGEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(28); }
141void SbRtl_TYP_PAGENUMBERFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(5); }
142void SbRtl_TYP_POSTITFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(21); }
143void SbRtl_TYP_PREVPAGEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(29); }
144void SbRtl_TYP_SEQFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(23); }
145void SbRtl_TYP_SETFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(8); }
146void SbRtl_TYP_SETINPFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(33); }
147void SbRtl_TYP_SETREFFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(12); }
148void SbRtl_TYP_TEMPLNAMEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(22); }
149void SbRtl_TYP_TIMEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
150void SbRtl_TYP_USERFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(20); }
151void SbRtl_TYP_USRINPFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(34); }
152void SbRtl_TYP_SETREFPAGEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(35); }
153void SbRtl_TYP_GETREFPAGEFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(36); }
154void SbRtl_TYP_INTERNETFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(37); }
155
156void SbRtl_SET_ON(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
157void SbRtl_SET_OFF(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(0); }
158void SbRtl_TOGGLE(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(2); }
159
160void SbRtl_FRAMEANCHORPAGE(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
161void SbRtl_FRAMEANCHORPARA(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(14); }
162void SbRtl_FRAMEANCHORCHAR(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(15); }
163
164void SbRtl_CLEAR_ALLTABS(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(2); }
165void SbRtl_CLEAR_TAB(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(1); }
166void SbRtl_SET_TAB(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(0); }
167
168void SbRtl_TYP_JUMPEDITFLD(StarBASIC*, SbxArray& rPar, bool) { rPar.Get(0)->PutInteger(38); }
169
170
171/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static bool isVBAEnabled()
Definition: runtime.cxx:115
Definition: sbx.hxx:95
SbxVariable * Get(sal_uInt32)
Definition: sbxarray.cxx:108
static SbxVariableRef const & getErrObject()
Definition: errobject.cxx:198
bool PutDouble(double)
bool PutBool(bool)
Definition: sbxvalue.cxx:543
bool PutInteger(sal_Int16)
bool PutObject(SbxBase *)
sal_Int32 GetLong() const
Definition: sbxvar.hxx:142
bool PutLong(sal_Int32)
void PutNull()
Definition: sbxvalue.cxx:557
static ErrCode GetErrBasic()
Definition: sb.cxx:1707
static ErrCode GetSfxFromVBError(sal_uInt16 nError)
Definition: sb.cxx:1482
static sal_Int32 GetErl()
Definition: sb.cxx:1732
static void Error(ErrCode, const OUString &rMsg={})
Definition: sb.cxx:1683
static sal_uInt16 GetVBErrorCode(ErrCode nError)
Definition: sb.cxx:1443
css::uno::Reference< css::linguistic2::XProofreadingIterator > get(css::uno::Reference< css::uno::XComponentContext > const &context)
void SbRtl_IDNO(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:111
void SbRtl_MB_APPLMODAL(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:102
void SbRtl_MB_ABORTRETRYIGNORE(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:91
void SbRtl_V_LONG(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:82
void SbRtl_CF_METAFILEPICT(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:115
void SbRtl_TYP_FILENAMEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:130
void SbRtl_TYP_HIDDENPARAFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:136
void SbRtl_IDABORT(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:107
void SbRtl_MB_YESNOCANCEL(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:92
void SbRtl_TYP_DOCINFOFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:127
void SbRtl_True(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:69
void SbRtl_TYP_INPUTFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:138
void SbRtl_CLEAR_ALLTABS(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:164
void SbRtl_MB_RETRYCANCEL(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:94
void SbRtl_CF_BITMAP(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:114
void SbRtl_TYP_CONDTXTFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:119
void SbRtl_TYP_DBFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:121
void SbRtl_MB_DEFBUTTON2(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:100
void SbRtl_IDOK(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:105
void SbRtl_ATTR_DIRECTORY(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:76
void SbRtl_CLEAR_TAB(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:165
void SbRtl_TYP_SETREFFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:147
void SbRtl_TYP_JUMPEDITFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:168
void SbRtl_FRAMEANCHORPAGE(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:160
void SbRtl_V_STRING(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:87
void SbRtl_TYP_CHAPTERFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:118
void SbRtl_ATTR_READONLY(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:72
void SbRtl_TYP_PAGENUMBERFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:141
void SbRtl_TYP_EXTUSERFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:129
void SbRtl_TYP_INTERNETFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:154
void SbRtl_V_CURRENCY(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:85
void SbRtl_IDYES(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:110
void SbRtl_TYP_FIXTIMEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:132
void SbRtl_TYP_FIXDATEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:131
void SbRtl_MB_SYSTEMMODAL(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:103
void SbRtl_MB_ICONEXCLAMATION(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:97
void SbRtl_ATTR_VOLUME(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:75
void SbRtl_PI(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:67
void SbRtl_ATTR_SYSTEM(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:74
void SbRtl_ATTR_ARCHIVE(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:77
void SbRtl_TYP_TIMEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:149
void SbRtl_IDRETRY(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:108
void SbRtl_V_EMPTY(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:79
void SbRtl_TYP_DBNAMEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:122
void SbRtl_TYP_MACROFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:139
void SbRtl_CF_TEXT(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:113
void SbRtl_TYP_SEQFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:144
void SbRtl_TYP_SETFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:145
void SbRtl_MB_OK(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:89
void SbRtl_TYP_NEXTPAGEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:140
void SbRtl_TYP_USERFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:150
void SbRtl_ATTR_NORMAL(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:71
void SbRtl_TYP_DBSETNUMBERFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:125
void SbRtl_TYP_AUTHORFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:117
void SbRtl_V_NULL(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:80
void SbRtl_TOGGLE(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:158
void SbRtl_Err(StarBASIC *, SbxArray &rPar, bool bWrite)
Definition: props.cxx:32
void SbRtl_V_SINGLE(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:83
void SbRtl_TYP_POSTITFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:142
void SbRtl_V_DATE(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:86
void SbRtl_TYP_PREVPAGEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:143
void SbRtl_TYP_DBNEXTSETFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:123
void SbRtl_MB_DEFBUTTON1(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:99
void SbRtl_TYP_GETREFPAGEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:153
void SbRtl_FRAMEANCHORPARA(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:161
void SbRtl_Null(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:61
void SbRtl_MB_ICONINFORMATION(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:98
void SbRtl_Nothing(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:55
void SbRtl_IDIGNORE(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:109
void SbRtl_MB_ICONSTOP(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:95
void SbRtl_TYP_DOCSTATFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:128
void SbRtl_TYP_SETREFPAGEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:152
void SbRtl_MB_YESNO(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:93
void SbRtl_SET_OFF(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:157
void SbRtl_TYP_TEMPLNAMEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:148
void SbRtl_TYP_SETINPFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:146
void SbRtl_TYP_DDEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:126
void SbRtl_TYP_DATEFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:120
void SbRtl_V_INTEGER(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:81
void SbRtl_IDCANCEL(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:106
void SbRtl_Empty(StarBASIC *, SbxArray &, bool)
Definition: props.cxx:53
void SbRtl_MB_OKCANCEL(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:90
void SbRtl_SET_TAB(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:166
void SbRtl_TYP_FORMELFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:133
void SbRtl_Erl(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:30
void SbRtl_TYP_GETREFFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:135
void SbRtl_TYP_HIDDENTXTFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:137
void SbRtl_TYP_DBNUMSETFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:124
void SbRtl_SET_ON(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:156
void SbRtl_FRAMEANCHORCHAR(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:162
void SbRtl_MB_DEFBUTTON3(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:101
void SbRtl_MB_ICONQUESTION(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:96
void SbRtl_False(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:51
void SbRtl_TYP_GETFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:134
void SbRtl_TYP_USRINPFLD(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:151
void SbRtl_V_DOUBLE(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:84
void SbRtl_ATTR_HIDDEN(StarBASIC *, SbxArray &rPar, bool)
Definition: props.cxx:73