Avoid potential negative array index access to cached text.
[LibreOffice.git] / vcl / unx / gtk3_kde5 / gtk3_kde5_folderpicker.hxx
blob9801a072acc4a8e5364dd9b50504347673e02cd1
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 <rtl/ustring.hxx>
23 #include <cppuhelper/implbase.hxx>
25 #include <com/sun/star/ui/dialogs/XFolderPicker2.hpp>
26 #include <com/sun/star/uno/XComponentContext.hpp>
28 #include "gtk3_kde5_filepicker_ipc.hxx"
30 class Gtk3KDE5FolderPicker : public cppu::WeakImplHelper<css::ui::dialogs::XFolderPicker2>
32 protected:
33 Gtk3KDE5FilePickerIpc m_ipc;
35 public:
36 // constructor
37 explicit Gtk3KDE5FolderPicker(
38 const css::uno::Reference<css::uno::XComponentContext>& xServiceMgr);
39 virtual ~Gtk3KDE5FolderPicker() override;
41 // XExecutableDialog functions
42 virtual void SAL_CALL setTitle(const OUString& aTitle) override;
43 virtual sal_Int16 SAL_CALL execute() override;
45 // XFolderPicker functions
46 virtual void SAL_CALL setDisplayDirectory(const OUString& rDirectory) override;
47 virtual OUString SAL_CALL getDisplayDirectory() override;
48 virtual OUString SAL_CALL getDirectory() override;
49 virtual void SAL_CALL setDescription(const OUString& rDescription) override;
51 // XCancellable
52 virtual void SAL_CALL cancel() override;
54 private:
55 Gtk3KDE5FolderPicker(const Gtk3KDE5FolderPicker&) = delete;
56 Gtk3KDE5FolderPicker& operator=(const Gtk3KDE5FolderPicker&) = delete;
59 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */