1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_SVX_SOURCE_INC_FMURL_HXX
21 #define INCLUDED_SVX_SOURCE_INC_FMURL_HXX
23 #include <rtl/ustring.hxx>
25 inline constexpr OUString FMURL_FORM_POSITION
= u
".uno:FormController/positionForm"_ustr
;
26 inline constexpr OUString FMURL_FORM_RECORDCOUNT
= u
".uno:FormController/RecordCount"_ustr
;
27 inline constexpr OUString FMURL_RECORD_MOVEFIRST
= u
".uno:FormController/moveToFirst"_ustr
;
28 inline constexpr OUString FMURL_RECORD_MOVEPREV
= u
".uno:FormController/moveToPrev"_ustr
;
29 inline constexpr OUString FMURL_RECORD_MOVENEXT
= u
".uno:FormController/moveToNext"_ustr
;
30 inline constexpr OUString FMURL_RECORD_MOVELAST
= u
".uno:FormController/moveToLast"_ustr
;
31 inline constexpr OUString FMURL_RECORD_MOVETONEW
= u
".uno:FormController/moveToNew"_ustr
;
32 inline constexpr OUString FMURL_RECORD_UNDO
= u
".uno:FormController/undoRecord"_ustr
;
33 inline constexpr OUString FMURL_RECORD_SAVE
= u
".uno:FormController/saveRecord"_ustr
;
34 inline constexpr OUString FMURL_RECORD_DELETE
= u
".uno:FormController/deleteRecord"_ustr
;
35 inline constexpr OUString FMURL_FORM_REFRESH
= u
".uno:FormController/refreshForm"_ustr
;
36 inline constexpr OUString FMURL_FORM_REFRESH_CURRENT_CONTROL
= u
".uno:FormController/refreshCurrentControl"_ustr
;
37 inline constexpr OUString FMURL_FORM_SORT_UP
= u
".uno:FormController/sortUp"_ustr
;
38 inline constexpr OUString FMURL_FORM_SORT_DOWN
= u
".uno:FormController/sortDown"_ustr
;
39 inline constexpr OUString FMURL_FORM_SORT
= u
".uno:FormController/sort"_ustr
;
40 inline constexpr OUString FMURL_FORM_AUTO_FILTER
= u
".uno:FormController/autoFilter"_ustr
;
41 inline constexpr OUString FMURL_FORM_FILTER
= u
".uno:FormController/filter"_ustr
;
42 inline constexpr OUString FMURL_FORM_APPLY_FILTER
= u
".uno:FormController/applyFilter"_ustr
;
43 inline constexpr OUString FMURL_FORM_REMOVE_FILTER
= u
".uno:FormController/removeFilterOrder"_ustr
;
44 inline constexpr OUString FMURL_CONFIRM_DELETION
= u
".uno:FormSlots/ConfirmDeletion"_ustr
;
45 inline constexpr OUString FMURL_COMPONENT_FORMGRIDVIEW
= u
".component:DB/FormGridView"_ustr
;
46 inline constexpr OUString FMURL_GRIDVIEW_CLEARVIEW
= u
".uno:FormSlots/ClearView"_ustr
;
47 inline constexpr OUString FMURL_GRIDVIEW_ADDCOLUMN
= u
".uno:FormSlots/AddGridColumn"_ustr
;
48 inline constexpr OUString FMURL_GRIDVIEW_ATTACHTOFORM
= u
".uno:FormSlots/AttachToForm"_ustr
;
49 inline constexpr OUString FMARG_ATTACHTO_MASTERFORM
= u
"MasterForm"_ustr
;
50 inline constexpr OUString FMARG_ADDCOL_COLUMNTYPE
= u
"ColumnType"_ustr
;
51 inline constexpr OUString FMARG_ADDCOL_COLUMNPOS
= u
"ColumnPosition"_ustr
;
53 #endif // INCLUDED_SVX_SOURCE_INC_FMURL_HXX
55 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */