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-10-27 11:58:59 +00:00
|
|
|
|
2013-11-05 02:18:53 +01:00
|
|
|
#ifndef INCLUDED_DBACCESS_SOURCE_UI_DLG_CONNECTIONPAGESETUP_HXX
|
|
|
|
#define INCLUDED_DBACCESS_SOURCE_UI_DLG_CONNECTIONPAGESETUP_HXX
|
2004-10-27 11:58:59 +00:00
|
|
|
#include "ConnectionHelper.hxx"
|
|
|
|
|
|
|
|
#include "adminpages.hxx"
|
|
|
|
#include <ucbhelper/content.hxx>
|
|
|
|
#include "curledit.hxx"
|
|
|
|
|
|
|
|
#include <vcl/field.hxx>
|
|
|
|
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
|
2013-08-17 23:43:14 +02:00
|
|
|
// OConnectionTabPageSetup
|
2004-10-27 11:58:59 +00:00
|
|
|
|
2007-05-10 09:22:11 +00:00
|
|
|
/** implements the connection page of the data source properties dialog.
|
2004-10-27 11:58:59 +00:00
|
|
|
*/
|
|
|
|
class OConnectionTabPageSetup : public OConnectionHelper
|
|
|
|
{
|
|
|
|
sal_Bool m_bUserGrabFocus : 1;
|
|
|
|
protected:
|
|
|
|
|
|
|
|
FixedText m_aFT_HelpText;
|
|
|
|
|
|
|
|
// called when the test connection button was clicked
|
|
|
|
DECL_LINK(OnEditModified,Edit*);
|
|
|
|
|
|
|
|
public:
|
|
|
|
static OGenericAdministrationPage* CreateDbaseTabPage( Window* pParent, const SfxItemSet& _rAttrSet );
|
|
|
|
static OGenericAdministrationPage* CreateMSAccessTabPage( Window* pParent, const SfxItemSet& _rAttrSet );
|
|
|
|
static OGenericAdministrationPage* CreateADOTabPage( Window* pParent, const SfxItemSet& _rAttrSet );
|
|
|
|
static OGenericAdministrationPage* CreateODBCTabPage( Window* pParent, const SfxItemSet& _rAttrSet );
|
2005-01-21 16:12:31 +00:00
|
|
|
static OGenericAdministrationPage* CreateUserDefinedTabPage( Window* pParent, const SfxItemSet& _rAttrSet );
|
2004-10-27 11:58:59 +00:00
|
|
|
|
2014-03-26 15:34:49 +02:00
|
|
|
virtual bool FillItemSet (SfxItemSet& _rCoreAttrs);
|
2004-10-27 11:58:59 +00:00
|
|
|
|
|
|
|
virtual void implInitControls(const SfxItemSet& _rSet, sal_Bool _bSaveValue);
|
2014-03-25 14:20:18 +02:00
|
|
|
virtual bool commitPage( ::svt::WizardTypes::CommitPageReason _eReason );
|
2004-10-27 11:58:59 +00:00
|
|
|
|
2014-02-28 13:13:47 +02:00
|
|
|
inline void enableConnectionURL() { m_aConnectionURL.SetReadOnly(false); }
|
2009-02-16 07:31:09 +00:00
|
|
|
inline void disableConnectionURL() { m_aConnectionURL.SetReadOnly(); }
|
2004-10-27 11:58:59 +00:00
|
|
|
|
|
|
|
/** changes the connection URL.
|
|
|
|
<p>The new URL must be of the type which is currently selected, only the parts which do not
|
|
|
|
affect the type may be changed (compared to the previous URL).</p>
|
|
|
|
*/
|
2013-09-26 12:17:53 +02:00
|
|
|
void changeConnectionURL( const OUString& _rNewDSN );
|
|
|
|
OUString getConnectionURL( ) const;
|
2004-10-27 11:58:59 +00:00
|
|
|
|
|
|
|
protected:
|
2011-01-14 15:00:11 +01:00
|
|
|
OConnectionTabPageSetup(Window* pParent, sal_uInt16 _rId, const SfxItemSet& _rCoreAttrs, sal_uInt16 _nHelpTextResId, sal_uInt16 _nHeaderResId, sal_uInt16 _nUrlResId);
|
2004-10-27 11:58:59 +00:00
|
|
|
virtual bool checkTestConnection();
|
|
|
|
// nControlFlags ist eine Kombination der CBTP_xxx-Konstanten
|
|
|
|
virtual ~OConnectionTabPageSetup();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dbaui
|
|
|
|
|
|
|
|
#endif
|
2010-10-27 12:33:13 +01:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|