d52a4dba6a
Change-Id: I6d720ef94d9f29c120f292b844721621e6630856 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/167259 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
152 lines
5.6 KiB
C++
152 lines
5.6 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* 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 .
|
|
*/
|
|
|
|
#include <sal/config.h>
|
|
|
|
#include <memory>
|
|
|
|
#include <unodatbr.hxx>
|
|
#include <browserids.hxx>
|
|
#include <osl/diagnose.h>
|
|
#include <dbtreelistbox.hxx>
|
|
#include "dbtreemodel.hxx"
|
|
|
|
using namespace ::com::sun::star::frame;
|
|
|
|
namespace dbaui
|
|
{
|
|
SbaTableQueryBrowser::EntryType SbaTableQueryBrowser::getChildType(const weld::TreeIter& rEntry) const
|
|
{
|
|
OSL_ENSURE(isContainer(rEntry), "SbaTableQueryBrowser::getChildType: invalid entry!");
|
|
switch (getEntryType(rEntry))
|
|
{
|
|
case etTableContainer:
|
|
return etTableOrView;
|
|
case etQueryContainer:
|
|
return etQuery;
|
|
default:
|
|
break;
|
|
}
|
|
return etUnknown;
|
|
}
|
|
|
|
OUString SbaTableQueryBrowser::GetEntryText(const weld::TreeIter& rEntry) const
|
|
{
|
|
return m_pTreeView->GetWidget().get_text(rEntry);
|
|
}
|
|
|
|
SbaTableQueryBrowser::EntryType SbaTableQueryBrowser::getEntryType(const weld::TreeIter& rEntry) const
|
|
{
|
|
const weld::TreeView& rTreeView = m_pTreeView->GetWidget();
|
|
DBTreeListUserData* pEntryData = weld::fromId<DBTreeListUserData*>(rTreeView.get_id(rEntry));
|
|
return pEntryData ? pEntryData->eType : etUnknown;
|
|
}
|
|
|
|
void SbaTableQueryBrowser::select(const weld::TreeIter* pEntry, bool bSelect)
|
|
{
|
|
if (pEntry)
|
|
{
|
|
weld::TreeView& rTreeView = m_pTreeView->GetWidget();
|
|
rTreeView.set_text_emphasis(*pEntry, bSelect, 0);
|
|
}
|
|
else
|
|
{
|
|
OSL_FAIL("SbaTableQueryBrowser::select: invalid entry!");
|
|
}
|
|
}
|
|
|
|
void SbaTableQueryBrowser::selectPath(const weld::TreeIter* pEntry, bool bSelect)
|
|
{
|
|
if (!pEntry)
|
|
return;
|
|
weld::TreeView& rTreeView = m_pTreeView->GetWidget();
|
|
std::unique_ptr<weld::TreeIter> xEntry(rTreeView.make_iterator(pEntry));
|
|
do
|
|
{
|
|
select(xEntry.get(), bSelect);
|
|
}
|
|
while (rTreeView.iter_parent(*xEntry));
|
|
}
|
|
|
|
bool SbaTableQueryBrowser::isSelected(const weld::TreeIter& rEntry) const
|
|
{
|
|
weld::TreeView& rTreeView = m_pTreeView->GetWidget();
|
|
return rTreeView.get_text_emphasis(rEntry, 0);
|
|
}
|
|
|
|
void SbaTableQueryBrowser::SelectionChanged()
|
|
{
|
|
if ( !m_bShowMenu )
|
|
{
|
|
InvalidateFeature(ID_BROWSER_INSERTCOLUMNS);
|
|
InvalidateFeature(ID_BROWSER_INSERTCONTENT);
|
|
InvalidateFeature(ID_BROWSER_FORMLETTER);
|
|
}
|
|
InvalidateFeature(ID_BROWSER_COPY);
|
|
InvalidateFeature(ID_BROWSER_CUT);
|
|
}
|
|
|
|
void SbaTableQueryBrowser::describeSupportedFeatures()
|
|
{
|
|
SbaXDataBrowserController::describeSupportedFeatures();
|
|
|
|
implDescribeSupportedFeature( u".uno:Title"_ustr, ID_BROWSER_TITLE );
|
|
if ( !m_bShowMenu )
|
|
{
|
|
implDescribeSupportedFeature( u".uno:DSBEditDB"_ustr, ID_TREE_EDIT_DATABASE );
|
|
implDescribeSupportedFeature( u".uno:DSBCloseConnection"_ustr, ID_TREE_CLOSE_CONN );
|
|
implDescribeSupportedFeature( u".uno:DSBAdministrate"_ustr, ID_TREE_ADMINISTRATE );
|
|
|
|
implDescribeSupportedFeature( u".uno:DSBrowserExplorer"_ustr, ID_BROWSER_EXPLORER, CommandGroup::VIEW );
|
|
|
|
implDescribeSupportedFeature( u".uno:DSBFormLetter"_ustr, ID_BROWSER_FORMLETTER, CommandGroup::DOCUMENT );
|
|
implDescribeSupportedFeature( u".uno:DSBInsertColumns"_ustr, ID_BROWSER_INSERTCOLUMNS, CommandGroup::INSERT );
|
|
implDescribeSupportedFeature( u".uno:DSBInsertContent"_ustr, ID_BROWSER_INSERTCONTENT, CommandGroup::INSERT );
|
|
implDescribeSupportedFeature( u".uno:DSBDocumentDataSource"_ustr, ID_BROWSER_DOCUMENT_DATASOURCE, CommandGroup::VIEW );
|
|
|
|
implDescribeSupportedFeature( u".uno:DataSourceBrowser/FormLetter"_ustr, ID_BROWSER_FORMLETTER );
|
|
implDescribeSupportedFeature( u".uno:DataSourceBrowser/InsertColumns"_ustr, ID_BROWSER_INSERTCOLUMNS );
|
|
implDescribeSupportedFeature( u".uno:DataSourceBrowser/InsertContent"_ustr, ID_BROWSER_INSERTCONTENT );
|
|
implDescribeSupportedFeature( u".uno:DataSourceBrowser/DocumentDataSource"_ustr, ID_BROWSER_DOCUMENT_DATASOURCE );
|
|
}
|
|
|
|
implDescribeSupportedFeature( u".uno:CloseWin"_ustr, ID_BROWSER_CLOSE, CommandGroup::DOCUMENT );
|
|
implDescribeSupportedFeature( u".uno:DBRebuildData"_ustr, ID_BROWSER_REFRESH_REBUILD, CommandGroup::DATA );
|
|
}
|
|
|
|
sal_Int32 SbaTableQueryBrowser::getDatabaseObjectType( EntryType _eType )
|
|
{
|
|
switch ( _eType )
|
|
{
|
|
case etQuery:
|
|
case etQueryContainer:
|
|
return css::sdb::application::DatabaseObject::QUERY;
|
|
case etTableOrView:
|
|
case etTableContainer:
|
|
return css::sdb::application::DatabaseObject::TABLE;
|
|
default:
|
|
break;
|
|
}
|
|
OSL_FAIL( "SbaTableQueryBrowser::getDatabaseObjectType: folder types and 'Unknown' not allowed here!" );
|
|
return css::sdb::application::DatabaseObject::TABLE;
|
|
}
|
|
|
|
} // namespace dbaui
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|