/* -*- 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 "dsselect.hxx" #include "dbu_dlg.hrc" #include #include "localresaccess.hxx" #include #include #include #include #include #include #include "dbustrings.hrc" #include #include #include #include #include "dsitems.hxx" #include #include #include #include namespace dbaui { using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::sdbc; using namespace ::com::sun::star::sdbcx; using namespace ::com::sun::star::ui::dialogs; using namespace ::comphelper; ODatasourceSelectDialog::ODatasourceSelectDialog(vcl::Window* _pParent, const StringBag& _rDatasources) : ModalDialog(_pParent, "ChooseDataSourceDialog", "dbaccess/ui/choosedatasourcedialog.ui") { get(m_pDatasource, "treeview"); m_pDatasource->set_height_request(m_pDatasource->GetTextHeight() * 6); get(m_pOk, "ok"); get(m_pCancel, "cancel"); fillListBox(_rDatasources); #ifdef HAVE_ODBC_ADMINISTRATION get(m_pManageDatasources, "organize"); m_pManageDatasources->Show(); // allow ODBC datasource managenment m_pManageDatasources->Show(); m_pManageDatasources->Enable(); m_pManageDatasources->SetClickHdl(LINK(this,ODatasourceSelectDialog,ManageClickHdl)); #endif m_pDatasource->SetDoubleClickHdl(LINK(this,ODatasourceSelectDialog,ListDblClickHdl)); } ODatasourceSelectDialog::~ODatasourceSelectDialog() { disposeOnce(); } void ODatasourceSelectDialog::dispose() { m_pDatasource.clear(); m_pOk.clear(); m_pCancel.clear(); ModalDialog::dispose(); } IMPL_LINK_TYPED( ODatasourceSelectDialog, ListDblClickHdl, ListBox&, rListBox, void ) { if (rListBox.GetSelectEntryCount()) EndDialog(RET_OK); } bool ODatasourceSelectDialog::Close() { #ifdef HAVE_ODBC_ADMINISTRATION if ( m_pODBCManagement.get() && m_pODBCManagement->isRunning() ) return sal_False; #endif return ModalDialog::Close(); } #ifdef HAVE_ODBC_ADMINISTRATION IMPL_LINK_NOARG_TYPED(ODatasourceSelectDialog, ManageClickHdl, Button*, void) { if ( !m_pODBCManagement.get() ) m_pODBCManagement.reset( new OOdbcManagement( LINK( this, ODatasourceSelectDialog, ManageProcessFinished ) ) ); if ( !m_pODBCManagement->manageDataSources_async() ) { // TODO: error message m_pDatasource->GrabFocus(); m_pManageDatasources->Disable(); return; } m_pDatasource->Disable(); m_pOk->Disable(); m_pCancel->Disable(); m_pManageDatasources->Disable(); SAL_WARN_IF( !m_pODBCManagement->isRunning(), "dbaccess.ui", "ODatasourceSelectDialog::ManageClickHdl: success, but not running - you were *fast*!" ); } IMPL_LINK_NOARG_TYPED( ODatasourceSelectDialog, ManageProcessFinished, void*, void ) { StringBag aOdbcDatasources; OOdbcEnumeration aEnumeration; aEnumeration.getDatasourceNames( aOdbcDatasources ); fillListBox( aOdbcDatasources ); m_pDatasource->Enable(); m_pOk->Enable(); m_pCancel->Enable(); m_pManageDatasources->Enable(); } #endif void ODatasourceSelectDialog::fillListBox(const StringBag& _rDatasources) { OUString sSelected; if (m_pDatasource->GetEntryCount()) sSelected = m_pDatasource->GetSelectEntry(); m_pDatasource->Clear(); // fill the list for ( StringBag::const_iterator aDS = _rDatasources.begin(); aDS != _rDatasources.end(); ++aDS ) { m_pDatasource->InsertEntry( *aDS ); } if (m_pDatasource->GetEntryCount()) { if (!sSelected.isEmpty()) m_pDatasource->SelectEntry(sSelected); else // select the first entry m_pDatasource->SelectEntryPos(0); } } } // namespace dbaui /* vim:set shiftwidth=4 softtabstop=4 expandtab: */