2010-10-27 12:33:13 +01:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-14 17:39:53 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2004-08-02 14:52:01 +00:00
|
|
|
|
2020-09-13 12:06:53 +00:00
|
|
|
#pragma once
|
2004-08-02 14:52:01 +00:00
|
|
|
|
2019-10-04 12:11:21 +01:00
|
|
|
#include <vcl/weld.hxx>
|
2004-08-02 14:52:01 +00:00
|
|
|
#include <com/sun/star/ucb/XContent.hpp>
|
2019-10-04 12:11:21 +01:00
|
|
|
#include <com/sun/star/ucb/XCommandEnvironment.hpp>
|
2014-01-02 23:52:37 +01:00
|
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
2004-08-02 14:52:01 +00:00
|
|
|
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
/* this class allows to browse through the collection of forms and reports
|
|
|
|
*/
|
2019-10-04 12:11:21 +01:00
|
|
|
class OCollectionView : public weld::GenericDialogController
|
2004-08-02 14:52:01 +00:00
|
|
|
{
|
2015-08-03 09:14:58 +02:00
|
|
|
css::uno::Reference< css::ucb::XContent> m_xContent;
|
|
|
|
css::uno::Reference< css::uno::XComponentContext > m_xContext;
|
2019-10-04 12:11:21 +01:00
|
|
|
css::uno::Reference< css::ucb::XCommandEnvironment > m_xCmdEnv;
|
2015-08-03 09:14:58 +02:00
|
|
|
bool m_bCreateForm;
|
2004-08-02 14:52:01 +00:00
|
|
|
|
2019-10-04 12:11:21 +01:00
|
|
|
std::unique_ptr<weld::Label> m_xFTCurrentPath;
|
|
|
|
std::unique_ptr<weld::Button> m_xNewFolder;
|
|
|
|
std::unique_ptr<weld::Button> m_xUp;
|
|
|
|
std::unique_ptr<weld::TreeView> m_xView;
|
|
|
|
std::unique_ptr<weld::Entry> m_xName;
|
|
|
|
std::unique_ptr<weld::Button> m_xPB_OK;
|
|
|
|
|
|
|
|
DECL_LINK(Up_Click, weld::Button&, void);
|
|
|
|
DECL_LINK(NewFolder_Click, weld::Button&, void);
|
|
|
|
DECL_LINK(Save_Click, weld::Button&, void);
|
2019-10-05 18:36:38 +01:00
|
|
|
DECL_LINK(Dbl_Click_FileView, weld::TreeView&, bool);
|
2004-08-02 14:52:01 +00:00
|
|
|
|
|
|
|
/// sets the fixedtext to the right content
|
|
|
|
void initCurrentPath();
|
2019-10-04 12:11:21 +01:00
|
|
|
|
|
|
|
void Initialize();
|
2004-08-02 14:52:01 +00:00
|
|
|
public:
|
2019-10-04 12:11:21 +01:00
|
|
|
OCollectionView(weld::Window * pParent,
|
|
|
|
const css::uno::Reference< css::ucb::XContent>& _xContent,
|
|
|
|
const OUString& _sDefaultName,
|
2022-06-13 16:28:20 +02:00
|
|
|
css::uno::Reference< css::uno::XComponentContext > _xContext);
|
2016-09-13 13:09:01 +02:00
|
|
|
virtual ~OCollectionView() override;
|
2016-04-13 10:44:57 +02:00
|
|
|
const css::uno::Reference< css::ucb::XContent>& getSelectedFolder() const { return m_xContent;}
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString getName() const;
|
2004-08-02 14:52:01 +00:00
|
|
|
};
|
|
|
|
} // namespace dbaui
|
|
|
|
|
2010-10-27 12:33:13 +01:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|