LibreOffice
LibreOffice 24.2 SDK API Reference
FormFeature.idl
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 module com { module sun { module star { module form { module runtime {
22 
23 
29 constants FormFeature
30 {
38  const short MoveAbsolute = 1;
39 
52  const short TotalRecords = 2;
53 
55  const short MoveToFirst = 3;
56 
58  const short MoveToPrevious = 4;
59 
61  const short MoveToNext = 5;
62 
64  const short MoveToLast = 6;
65 
67  const short MoveToInsertRow = 7;
68 
72  const short SaveRecordChanges = 8;
73 
77  const short UndoRecordChanges = 9;
78 
82  const short DeleteRecord = 10;
83 
85  const short ReloadForm = 11;
86 
88  const short SortAscending = 12;
89 
91  const short SortDescending = 13;
92 
94  const short InteractiveSort = 14;
95 
104  const short AutoFilter = 15;
105 
107  const short InteractiveFilter = 16;
108 
112  const short ToggleApplyFilter = 17;
113 
124  const short RemoveFilterAndSort = 18;
125 
133  const short RefreshCurrentControl = 19;
134 };
135 
136 
137 }; }; }; }; };
138 
139 
140 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const short ToggleApplyFilter
toggles the com::sun::star::sdb::RowSet::ApplyFilter property of the form.
Definition: FormFeature.idl:112
const short ReloadForm
reloads the form content
Definition: FormFeature.idl:85
const short MoveToInsertRow
moves the form to the insertion row, if privileges allow
Definition: FormFeature.idl:67
const short UndoRecordChanges
reverts all changes in the form's current record, including changes in the current control which had ...
Definition: FormFeature.idl:77
const short MoveAbsolute
moves the form to a record given by absolute position.
Definition: FormFeature.idl:38
const short InteractiveFilter
opens a dialog which allows the user to interactively specify a form filter
Definition: FormFeature.idl:107
Definition: Ambiguous.idl:20
const short RefreshCurrentControl
refreshes the current control
Definition: FormFeature.idl:133
const short SortDescending
sorts the form descending by the field which the active form control is bound to. ...
Definition: FormFeature.idl:91
const short DeleteRecord
deletes the current record, while honoring any registered com::sun::star::form::XConfirmDeleteListene...
Definition: FormFeature.idl:82
const short TotalRecords
determines the number of total records in the form, including the potentially active insertion row...
Definition: FormFeature.idl:52
const short InteractiveSort
opens a dialog which allows the user to interactively specify a form sorting order ...
Definition: FormFeature.idl:94
const short SortAscending
sorts the form ascending by the field which the active form control is bound to.
Definition: FormFeature.idl:88
const short MoveToPrevious
moves the form to the record before the current record, if there is any
Definition: FormFeature.idl:58
const short AutoFilter
adds a filter to the form, which is defined by the active form control and its current value ...
Definition: FormFeature.idl:104
const short SaveRecordChanges
saves all changes in the form's current record, including changes in the current control which had no...
Definition: FormFeature.idl:72
const short MoveToLast
moves the form to the last record
Definition: FormFeature.idl:64
const short RemoveFilterAndSort
removes all filter and sort criteria put on the form.
Definition: FormFeature.idl:124
const short MoveToFirst
moves the form to the first record
Definition: FormFeature.idl:55
const short MoveToNext
moves the form to the record after the current record, if there is any
Definition: FormFeature.idl:61