tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / xml / crypto / sax / ElementMarkPriority.idl
blob96f5790ea82662845add00f5438e29bd5f9a32df
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
21 module com { module sun { module star { module xml { module crypto { module sax {
23 /**
24 * Defines priority for the element mark's notification.
25 * <p>
26 * The PRI_MINIMUM priority is a value less than any practical
27 * priority value, it is used when compare between different
28 * priority values.
29 * <p>
30 * The PRI_AFTERMODIFY priority represents the notification will be
31 * sent after any internal modification has finished.
32 * <p>
33 * The PRI_BEFOREMODIFY priority represents the notification will be
34 * sent before any internal modification happens.
35 * <p>
36 * So an element mark with PRI_BEFOREMODIFY will be handled first,
37 * and one with PRI_AFTERMODIFY will be handled at last.
39 enum ElementMarkPriority
41 MINIMUM = 1,
42 AFTERMODIFY,
43 BEFOREMODIFY
46 } ; } ; } ; } ; } ; } ;
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */