tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / system / SimpleMailClientFlags.idl
bloba89d9670742112da56278f55ad1a79f64f8b41a7
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 system {
23 /** These constants are used to specify how the SimpleMailClient Service
24 should behave.
27 published constants SimpleMailClientFlags
29 /** Uses the default settings when sending a mail, e.g.
30 launches the current configured system mail client.
32 const long DEFAULTS = 0;
34 /** Does not show the current configured system mail client, but sends
35 the mail without any further user interaction.
36 If this flag is specified, a recipient address must have been
37 specified for the given XSimpleMailMessage
38 object given to the method
39 com::sun::star::system::XSimpleMailClient::sendSimpleMailMessage().
41 const long NO_USER_INTERFACE = 1;
43 /** No logon dialog should be displayed to prompt the user for logon
44 information if necessary.
45 When this flag is specified and the user needs to logon in order
46 to send a simple mail message via the method
47 com::sun::star::system::XSimpleMailClient::sendSimpleMailMessage(),
48 an Exception will be thrown.
50 const long NO_LOGON_DIALOG = 2;
54 }; }; }; };
56 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */