tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / ucb / source / ucp / tdoc / tdoc_passwordrequest.hxx
blobd246a5ea4d1415c30d62712cae17b86238ccd43c
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 .
20 #pragma once
22 #include <com/sun/star/task/PasswordRequestMode.hpp>
24 #include <ucbhelper/interactionrequest.hxx>
26 namespace tdoc_ucp
29 @usage:
31 uno::Reference< ucb::XCommandEnvironment > Environment = ...;
33 if ( Environment.is() )
35 uno::Reference< task::XInteractionHandler > xIH
36 = Environment->getInteractionHandler();
37 if ( xIH.is() )
39 rtl::Reference< DocumentPasswordRequest > xRequest
40 = new DocumentPasswordRequest(
41 task::PasswordRequestMode_PASSWORD_ENTER,
42 m_xIdentifier->getContentIdentifier() );
43 xIH->handle( xRequest.get() );
45 rtl::Reference< ucbhelper::InteractionContinuation > xSelection
46 = xRequest->getSelection();
48 if ( xSelection.is() )
50 // Handler handled the request.
51 uno::Reference< task::XInteractionAbort > xAbort(
52 xSelection.get(), uno::UNO_QUERY );
53 if ( xAbort.is() )
55 // @@@
58 uno::Reference< task::XInteractionRetry > xRetry(
59 xSelection.get(), uno::UNO_QUERY );
60 if ( xRetry.is() )
62 // @@@
65 uno::Reference< task::XInteractionPassword > xPassword(
66 xSelection.get(), uno::UNO_QUERY );
67 if ( xPassword.is() )
69 OUString aPassword = xPassword->getPassword();
71 // @@@
79 class DocumentPasswordRequest : public ucbhelper::InteractionRequest
81 public:
82 DocumentPasswordRequest(css::task::PasswordRequestMode eMode, const OUString& rDocumentName);
85 } // namespace tdoc_ucp
87 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */