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 _SVX_FMURL_HXX
21 #define _SVX_FMURL_HXX
23 #define FMURL_FORM_POSITION OUString( ".uno:FormController/positionForm" )
24 #define FMURL_FORM_RECORDCOUNT OUString( ".uno:FormController/RecordCount" )
25 #define FMURL_RECORD_MOVEFIRST OUString( ".uno:FormController/moveToFirst" )
26 #define FMURL_RECORD_MOVEPREV OUString( ".uno:FormController/moveToPrev" )
27 #define FMURL_RECORD_MOVENEXT OUString( ".uno:FormController/moveToNext" )
28 #define FMURL_RECORD_MOVELAST OUString( ".uno:FormController/moveToLast" )
29 #define FMURL_RECORD_MOVETONEW OUString( ".uno:FormController/moveToNew" )
30 #define FMURL_RECORD_UNDO OUString( ".uno:FormController/undoRecord" )
31 #define FMURL_RECORD_SAVE OUString( ".uno:FormController/saveRecord" )
32 #define FMURL_RECORD_DELETE OUString( ".uno:FormController/deleteRecord" )
33 #define FMURL_FORM_REFRESH OUString( ".uno:FormController/refreshForm" )
34 #define FMURL_FORM_REFRESH_CURRENT_CONTROL OUString( ".uno:FormController/refreshCurrentControl" )
35 #define FMURL_FORM_SORT_UP OUString( ".uno:FormController/sortUp" )
36 #define FMURL_FORM_SORT_DOWN OUString( ".uno:FormController/sortDown" )
37 #define FMURL_FORM_SORT OUString( ".uno:FormController/sort" )
38 #define FMURL_FORM_AUTO_FILTER OUString( ".uno:FormController/autoFilter" )
39 #define FMURL_FORM_FILTER OUString( ".uno:FormController/filter" )
40 #define FMURL_FORM_APPLY_FILTER OUString( ".uno:FormController/applyFilter" )
41 #define FMURL_FORM_REMOVE_FILTER OUString( ".uno:FormController/removeFilterOrder" )
42 #define FMURL_CONFIRM_DELETION OUString( ".uno:FormSlots/ConfirmDeletion" )
43 #define FMURL_COMPONENT_FORMGRIDVIEW OUString( ".component:DB/FormGridView" )
44 #define FMURL_GRIDVIEW_CLEARVIEW OUString( ".uno:FormSlots/ClearView" )
45 #define FMURL_GRIDVIEW_ADDCOLUMN OUString( ".uno:FormSlots/AddGridColumn" )
46 #define FMURL_GRIDVIEW_ATTACHTOFORM OUString( ".uno:FormSlots/AttachToForm" )
47 #define FMARG_ATTACHTO_MASTERFORM OUString( "MasterForm" )
48 #define FMARG_ADDCOL_COLUMNTYPE OUString( "ColumnType" )
49 #define FMARG_ADDCOL_COLUMNPOS OUString( "ColumnPosition" )
51 #endif // _SVX_FMURL_HXX
53 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */