835 lines
35 KiB
C++
835 lines
35 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 <config_features.h>
|
|
|
|
#include "DBSetupConnectionPages.hxx"
|
|
#include "sqlmessage.hxx"
|
|
#include "dbu_resource.hrc"
|
|
#include "AutoControls.hrc"
|
|
#include "dbadminsetup.hrc"
|
|
#include <svl/itemset.hxx>
|
|
#include <svl/stritem.hxx>
|
|
#include <svl/eitem.hxx>
|
|
#include <svl/intitem.hxx>
|
|
#include "dsitems.hxx"
|
|
#include "dsnItem.hxx"
|
|
#include "dbaccess_helpid.hrc"
|
|
#include "localresaccess.hxx"
|
|
#include <vcl/msgbox.hxx>
|
|
#include <vcl/mnemonic.hxx>
|
|
#include <svl/cjkoptions.hxx>
|
|
#if HAVE_FEATURE_JAVA
|
|
#include <jvmaccess/virtualmachine.hxx>
|
|
#endif
|
|
#include <connectivity/CommonTools.hxx>
|
|
#include "DriverSettings.hxx"
|
|
#include "dbadmin.hxx"
|
|
#include <comphelper/types.hxx>
|
|
|
|
#include <com/sun/star/task/XInteractionHandler.hpp>
|
|
#include <com/sun/star/sdbc/XDriverAccess.hpp>
|
|
#include "dbustrings.hrc"
|
|
#include <svl/filenotation.hxx>
|
|
|
|
#include <unotools/localfilehelper.hxx>
|
|
#include <unotools/ucbhelper.hxx>
|
|
#include <ucbhelper/commandenvironment.hxx>
|
|
#include "finteraction.hxx"
|
|
#include <unotools/pathoptions.hxx>
|
|
#include <svtools/roadmapwizard.hxx>
|
|
#include "TextConnectionHelper.hxx"
|
|
#include <osl/diagnose.h>
|
|
|
|
namespace dbaui
|
|
{
|
|
using namespace ::com::sun::star;
|
|
|
|
OGenericAdministrationPage* OTextConnectionPageSetup::CreateTextTabPage( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OTextConnectionPageSetup( pParent, _rAttrSet ) );
|
|
}
|
|
|
|
// OTextConnectionPageSetup
|
|
OTextConnectionPageSetup::OTextConnectionPageSetup( Window* pParent, const SfxItemSet& _rCoreAttrs )
|
|
:OConnectionTabPageSetup(pParent, PAGE_DBWIZARD_TEXT, _rCoreAttrs, STR_TEXT_HELPTEXT, STR_TEXT_HEADERTEXT, STR_TEXT_PATH_OR_FILE)
|
|
{
|
|
|
|
m_pTextConnectionHelper = new OTextConnectionHelper( this, TC_EXTENSION | TC_SEPARATORS );
|
|
m_pTextConnectionHelper->SetClickHandler(LINK( this, OTextConnectionPageSetup, ImplGetExtensionHdl ) );
|
|
|
|
FreeResource();
|
|
}
|
|
|
|
OTextConnectionPageSetup::~OTextConnectionPageSetup()
|
|
{
|
|
DELETEZ(m_pTextConnectionHelper);
|
|
|
|
}
|
|
|
|
IMPL_LINK(OTextConnectionPageSetup, ImplGetExtensionHdl, OTextConnectionHelper*, /*_pTextConnectionHelper*/)
|
|
{
|
|
SetRoadmapStateValue(!m_pTextConnectionHelper->GetExtension().isEmpty() && OConnectionTabPageSetup::checkTestConnection());
|
|
callModifiedHdl();
|
|
return sal_True;
|
|
}
|
|
|
|
bool OTextConnectionPageSetup::checkTestConnection()
|
|
{
|
|
bool bDoEnable = OConnectionTabPageSetup::checkTestConnection();
|
|
bDoEnable = !m_pTextConnectionHelper->GetExtension().isEmpty() && bDoEnable;
|
|
return bDoEnable;
|
|
}
|
|
|
|
void OTextConnectionPageSetup::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
OConnectionTabPageSetup::fillControls(_rControlList);
|
|
m_pTextConnectionHelper->fillControls(_rControlList);
|
|
}
|
|
void OTextConnectionPageSetup::fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
OConnectionTabPageSetup::fillWindows(_rControlList);
|
|
m_pTextConnectionHelper->fillWindows(_rControlList);
|
|
}
|
|
void OTextConnectionPageSetup::implInitControls(const SfxItemSet& _rSet, sal_Bool _bSaveValue)
|
|
{
|
|
// first check whether or not the selection is invalid or readonly (invalid implies readonly, but not vice versa)
|
|
sal_Bool bValid, bReadonly;
|
|
getFlags(_rSet, bValid, bReadonly);
|
|
OConnectionTabPageSetup::implInitControls( _rSet, _bSaveValue);
|
|
m_pTextConnectionHelper->implInitControls(_rSet, bValid);
|
|
}
|
|
|
|
sal_Bool OTextConnectionPageSetup::FillItemSet( SfxItemSet& _rSet )
|
|
{
|
|
sal_Bool bChangedSomething = OConnectionTabPageSetup::FillItemSet(_rSet);
|
|
bChangedSomething = m_pTextConnectionHelper->FillItemSet(_rSet, bChangedSomething);
|
|
return bChangedSomething;
|
|
}
|
|
|
|
sal_Bool OTextConnectionPageSetup::prepareLeave(){
|
|
return m_pTextConnectionHelper->prepareLeave();
|
|
}
|
|
|
|
OGenericAdministrationPage* OLDAPConnectionPageSetup::CreateLDAPTabPage( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OLDAPConnectionPageSetup( pParent, _rAttrSet ) );
|
|
}
|
|
|
|
// OLDAPPageSetup
|
|
OLDAPConnectionPageSetup::OLDAPConnectionPageSetup( Window* pParent, const SfxItemSet& _rCoreAttrs )
|
|
:OGenericAdministrationPage(pParent, ModuleRes(PAGE_DBWIZARD_LDAP), _rCoreAttrs)
|
|
,m_aFTHeaderText (this, ModuleRes(FT_LDAP_HEADERTEXT))
|
|
,m_aFTHelpText (this, ModuleRes(FT_LDAP_HELPTEXT))
|
|
,m_aFTHostServer (this, ModuleRes(FT_AUTOHOSTNAME))
|
|
,m_aETHostServer (this, ModuleRes(ET_AUTOHOSTNAME))
|
|
,m_aFTBaseDN (this, ModuleRes(FT_AUTOBASEDN))
|
|
,m_aETBaseDN (this, ModuleRes(ET_AUTOBASEDN))
|
|
,m_aFTPortNumber (this, ModuleRes(FT_AUTOPORTNUMBER))
|
|
,m_aNFPortNumber (this, ModuleRes(NF_AUTOPORTNUMBER))
|
|
,m_aFTDefaultPortNumber (this, ModuleRes(FT_AUTOPORTNUMBERDEFAULT))
|
|
,m_aCBUseSSL (this, ModuleRes(CB_WIZ_USESSL))
|
|
{
|
|
SetControlFontWeight(&m_aFTHeaderText);
|
|
m_aFTDefaultPortNumber.SetText(OUString(ModuleRes(STR_LDAP_DEFAULT)));
|
|
m_aETHostServer.SetModifyHdl(getControlModifiedLink());
|
|
m_aETBaseDN.SetModifyHdl(getControlModifiedLink());
|
|
m_aNFPortNumber.SetModifyHdl(getControlModifiedLink());
|
|
m_aCBUseSSL.SetToggleHdl(getControlModifiedLink());
|
|
SetRoadmapStateValue(sal_False);
|
|
FreeResource();
|
|
}
|
|
|
|
sal_Bool OLDAPConnectionPageSetup::FillItemSet( SfxItemSet& _rSet )
|
|
{
|
|
sal_Bool bChangedSomething = sal_False;
|
|
fillString(_rSet,&m_aETBaseDN,DSID_CONN_LDAP_BASEDN, bChangedSomething);
|
|
fillInt32(_rSet,&m_aNFPortNumber,DSID_CONN_LDAP_PORTNUMBER,bChangedSomething);
|
|
|
|
if ( m_aETHostServer.GetText() != m_aETHostServer.GetSavedValue() )
|
|
{
|
|
DbuTypeCollectionItem* pCollectionItem = PTR_CAST(DbuTypeCollectionItem, _rSet.GetItem(DSID_TYPECOLLECTION));
|
|
::dbaccess::ODsnTypeCollection* pCollection = NULL;
|
|
if (pCollectionItem)
|
|
pCollection = pCollectionItem->getCollection();
|
|
OSL_ENSURE(pCollection, "OLDAPConnectionPageSetup::FillItemSet : really need a DSN type collection !");
|
|
|
|
OUString sUrl = pCollection->getPrefix( OUString("sdbc:address:ldap:"));
|
|
sUrl += m_aETHostServer.GetText();
|
|
_rSet.Put(SfxStringItem(DSID_CONNECTURL, sUrl));
|
|
bChangedSomething = sal_True;
|
|
}
|
|
|
|
fillBool(_rSet,&m_aCBUseSSL,DSID_CONN_LDAP_USESSL,bChangedSomething);
|
|
return bChangedSomething;
|
|
}
|
|
void OLDAPConnectionPageSetup::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aETHostServer));
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aETBaseDN));
|
|
_rControlList.push_back(new OSaveValueWrapper<NumericField>(&m_aNFPortNumber));
|
|
_rControlList.push_back(new OSaveValueWrapper<CheckBox>(&m_aCBUseSSL));
|
|
}
|
|
void OLDAPConnectionPageSetup::fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTHelpText));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTHostServer));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTBaseDN));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTPortNumber));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTDefaultPortNumber));
|
|
}
|
|
void OLDAPConnectionPageSetup::implInitControls(const SfxItemSet& _rSet, sal_Bool _bSaveValue)
|
|
{
|
|
// check whether or not the selection is invalid or readonly (invalid implies readonly, but not vice versa)
|
|
sal_Bool bValid, bReadonly;
|
|
getFlags(_rSet, bValid, bReadonly);
|
|
|
|
SFX_ITEMSET_GET(_rSet, pBaseDN, SfxStringItem, DSID_CONN_LDAP_BASEDN, true);
|
|
SFX_ITEMSET_GET(_rSet, pPortNumber, SfxInt32Item, DSID_CONN_LDAP_PORTNUMBER, true);
|
|
|
|
if ( bValid )
|
|
{
|
|
m_aETBaseDN.SetText(pBaseDN->GetValue());
|
|
m_aNFPortNumber.SetValue(pPortNumber->GetValue());
|
|
}
|
|
OGenericAdministrationPage::implInitControls(_rSet, _bSaveValue);
|
|
callModifiedHdl();
|
|
}
|
|
|
|
IMPL_LINK(OLDAPConnectionPageSetup, OnEditModified, Edit*, /*_pEdit*/)
|
|
{
|
|
sal_Bool bRoadmapState = ((!m_aETHostServer.GetText().isEmpty() ) && ( !m_aETBaseDN.GetText().isEmpty() ) && (!m_aFTPortNumber.GetText().isEmpty() ));
|
|
SetRoadmapStateValue(bRoadmapState);
|
|
callModifiedHdl();
|
|
return 0L;
|
|
}
|
|
|
|
OMySQLIntroPageSetup* OMySQLIntroPageSetup::CreateMySQLIntroTabPage( Window* _pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OMySQLIntroPageSetup( _pParent, _rAttrSet) );
|
|
}
|
|
|
|
|
|
OMySQLIntroPageSetup::OMySQLIntroPageSetup( Window* pParent, const SfxItemSet& _rCoreAttrs )
|
|
:OGenericAdministrationPage(pParent, ModuleRes(PAGE_DBWIZARD_MYSQL_INTRO), _rCoreAttrs)
|
|
,m_aRB_ODBCDatabase(this, ModuleRes(RB_CONNECTVIAODBC))
|
|
,m_aRB_JDBCDatabase(this, ModuleRes(RB_CONNECTVIAJDBC))
|
|
,m_aRB_NATIVEDatabase(this, ModuleRes(RB_CONNECTVIANATIVE))
|
|
,m_aFT_ConnectionMode(this, ModuleRes(FT_MYSQLCONNECTIONMODE))
|
|
,m_aFT_Helptext(this, ModuleRes(FT_MYSQL_HELPTEXT))
|
|
,m_aFT_Headertext(this, ModuleRes(FT_MYSQL_HEADERTEXT))
|
|
{
|
|
|
|
SetControlFontWeight(&m_aFT_Headertext);
|
|
m_aRB_ODBCDatabase.SetToggleHdl(LINK(this, OMySQLIntroPageSetup, OnSetupModeSelected));
|
|
m_aRB_JDBCDatabase.SetToggleHdl(LINK(this, OMySQLIntroPageSetup, OnSetupModeSelected));
|
|
m_aRB_NATIVEDatabase.SetToggleHdl(LINK(this, OMySQLIntroPageSetup, OnSetupModeSelected));
|
|
FreeResource();
|
|
}
|
|
|
|
IMPL_LINK(OMySQLIntroPageSetup, OnSetupModeSelected, RadioButton*, /*_pBox*/)
|
|
{
|
|
maClickHdl.Call( this );
|
|
return long(true);
|
|
}
|
|
|
|
OMySQLIntroPageSetup::~OMySQLIntroPageSetup()
|
|
{
|
|
|
|
}
|
|
|
|
void OMySQLIntroPageSetup::implInitControls(const SfxItemSet& _rSet, sal_Bool /*_bSaveValue*/)
|
|
{
|
|
// show the "Connect directly" option only if the driver is installed
|
|
DbuTypeCollectionItem* pCollectionItem = PTR_CAST(DbuTypeCollectionItem, _rSet.GetItem(DSID_TYPECOLLECTION));
|
|
bool bHasMySQLNative = ( pCollectionItem != NULL ) && pCollectionItem->getCollection()->hasDriver( "sdbc:mysqlc:" );
|
|
if ( bHasMySQLNative )
|
|
m_aRB_NATIVEDatabase.Show();
|
|
|
|
// if any of the options is checked, then there's nothing to do
|
|
if ( m_aRB_ODBCDatabase.IsChecked() || m_aRB_JDBCDatabase.IsChecked() || m_aRB_NATIVEDatabase.IsChecked() )
|
|
return;
|
|
|
|
// prefer "native" or "JDBC"
|
|
if ( bHasMySQLNative )
|
|
m_aRB_NATIVEDatabase.Check();
|
|
else
|
|
m_aRB_JDBCDatabase.Check();
|
|
}
|
|
|
|
void OMySQLIntroPageSetup::fillControls(::std::vector< ISaveValueWrapper* >& /*_rControlList*/)
|
|
{
|
|
}
|
|
|
|
void OMySQLIntroPageSetup::fillWindows(::std::vector< ISaveValueWrapper* >& /*_rControlList*/)
|
|
{
|
|
}
|
|
|
|
sal_Bool OMySQLIntroPageSetup::FillItemSet(SfxItemSet& /*_rSet*/)
|
|
{
|
|
OSL_FAIL("Who called me?! Please ask oj for more information.");
|
|
return sal_True;
|
|
}
|
|
|
|
OMySQLIntroPageSetup::ConnectionType OMySQLIntroPageSetup::getMySQLMode()
|
|
{
|
|
if (m_aRB_JDBCDatabase.IsChecked())
|
|
return VIA_JDBC;
|
|
else if (m_aRB_NATIVEDatabase.IsChecked())
|
|
return VIA_NATIVE;
|
|
else
|
|
return VIA_ODBC;
|
|
}
|
|
|
|
// MySQLNativeSetupPage
|
|
MySQLNativeSetupPage::MySQLNativeSetupPage( Window* _pParent, const SfxItemSet& _rCoreAttrs )
|
|
:OGenericAdministrationPage( _pParent, ModuleRes( PAGE_DBWIZARD_MYSQL_NATIVE ), _rCoreAttrs )
|
|
,m_aHeader ( this, ModuleRes( FT_SETUP_WIZARD_HEADER ) )
|
|
,m_aHelpText ( this, ModuleRes( FT_SETUP_WIZARD_HELP ) )
|
|
,m_aMySQLSettings ( *this, getControlModifiedLink() )
|
|
{
|
|
SetControlFontWeight( &m_aHeader );
|
|
|
|
LayoutHelper::positionBelow( m_aHelpText, m_aMySQLSettings, UnrelatedControls, 0 );
|
|
m_aMySQLSettings.Show();
|
|
|
|
SetRoadmapStateValue(sal_False);
|
|
FreeResource();
|
|
}
|
|
|
|
OGenericAdministrationPage* MySQLNativeSetupPage::Create( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return new MySQLNativeSetupPage( pParent, _rAttrSet );
|
|
}
|
|
|
|
void MySQLNativeSetupPage::fillControls( ::std::vector< ISaveValueWrapper* >& _rControlList )
|
|
{
|
|
m_aMySQLSettings.fillControls( _rControlList );
|
|
}
|
|
|
|
void MySQLNativeSetupPage::fillWindows( ::std::vector< ISaveValueWrapper* >& _rControlList )
|
|
{
|
|
_rControlList.push_back( new ODisableWrapper< FixedText >( &m_aHelpText ) );
|
|
m_aMySQLSettings.fillWindows( _rControlList );
|
|
}
|
|
|
|
sal_Bool MySQLNativeSetupPage::FillItemSet( SfxItemSet& _rSet )
|
|
{
|
|
return m_aMySQLSettings.FillItemSet( _rSet );
|
|
}
|
|
|
|
void MySQLNativeSetupPage::implInitControls( const SfxItemSet& _rSet, sal_Bool _bSaveValue )
|
|
{
|
|
m_aMySQLSettings.implInitControls( _rSet );
|
|
|
|
OGenericAdministrationPage::implInitControls( _rSet, _bSaveValue );
|
|
|
|
OnModified( NULL );
|
|
}
|
|
|
|
Link MySQLNativeSetupPage::getControlModifiedLink()
|
|
{
|
|
return LINK( this, MySQLNativeSetupPage, OnModified );
|
|
}
|
|
|
|
IMPL_LINK( MySQLNativeSetupPage, OnModified, Edit*, _pEdit )
|
|
{
|
|
SetRoadmapStateValue( m_aMySQLSettings.canAdvance() );
|
|
|
|
return OGenericAdministrationPage::getControlModifiedLink().Call( _pEdit );
|
|
}
|
|
|
|
// OMySQLJDBCConnectionPageSetup
|
|
OGeneralSpecialJDBCConnectionPageSetup::OGeneralSpecialJDBCConnectionPageSetup( Window* pParent,sal_uInt16 _nResId, const SfxItemSet& _rCoreAttrs ,sal_uInt16 _nPortId, sal_uInt16 _nDefaultPortResId, sal_uInt16 _nHelpTextResId, sal_uInt16 _nHeaderTextResId, sal_uInt16 _nDriverClassId)
|
|
:OGenericAdministrationPage(pParent, ModuleRes(_nResId), _rCoreAttrs)
|
|
,m_aFTHelpText (this, ModuleRes(FT_AUTOWIZARDHELPTEXT))
|
|
,m_aFTDatabasename (this, ModuleRes(FT_AUTODATABASENAME))
|
|
,m_aETDatabasename (this, ModuleRes(ET_AUTODATABASENAME))
|
|
,m_aFTHostname (this, ModuleRes(FT_AUTOHOSTNAME))
|
|
,m_aETHostname (this, ModuleRes(ET_AUTOHOSTNAME))
|
|
,m_aFTPortNumber (this, ModuleRes(FT_AUTOPORTNUMBER))
|
|
,m_aFTDefaultPortNumber (this, ModuleRes(FT_AUTOPORTNUMBERDEFAULT))
|
|
,m_aNFPortNumber (this, ModuleRes(NF_AUTOPORTNUMBER))
|
|
,m_aFTDriverClass (this, ModuleRes(FT_AUTOJDBCDRIVERCLASS))
|
|
,m_aETDriverClass (this, ModuleRes(ET_AUTOJDBCDRIVERCLASS))
|
|
,m_aPBTestJavaDriver (this, ModuleRes(PB_AUTOTESTDRIVERCLASS))
|
|
,m_nPortId(_nPortId)
|
|
{
|
|
m_aFTDriverClass.SetText(OUString(ModuleRes(_nDriverClassId)));
|
|
|
|
m_aFTDefaultPortNumber.SetText(OUString(ModuleRes(_nDefaultPortResId)));
|
|
OUString sHelpText = OUString(ModuleRes(_nHelpTextResId));
|
|
m_aFTHelpText.SetText(sHelpText);
|
|
//TODO this code snippet is redundant
|
|
SetHeaderText(FT_AUTOWIZARDHEADER, _nHeaderTextResId);
|
|
|
|
m_aETDatabasename.SetModifyHdl(getControlModifiedLink());
|
|
m_aETHostname.SetModifyHdl(getControlModifiedLink());
|
|
m_aNFPortNumber.SetModifyHdl(getControlModifiedLink());
|
|
|
|
m_aETDriverClass.SetModifyHdl(LINK(this, OGeneralSpecialJDBCConnectionPageSetup, OnEditModified));
|
|
m_aPBTestJavaDriver.SetClickHdl(LINK(this,OGeneralSpecialJDBCConnectionPageSetup,OnTestJavaClickHdl));
|
|
|
|
SFX_ITEMSET_GET(_rCoreAttrs, pUrlItem, SfxStringItem, DSID_CONNECTURL, true);
|
|
SFX_ITEMSET_GET(_rCoreAttrs, pTypesItem, DbuTypeCollectionItem, DSID_TYPECOLLECTION, true);
|
|
::dbaccess::ODsnTypeCollection* pTypeCollection = pTypesItem ? pTypesItem->getCollection() : NULL;
|
|
if (pTypeCollection && pUrlItem && pUrlItem->GetValue().getLength() )
|
|
{
|
|
m_sDefaultJdbcDriverName = pTypeCollection->getJavaDriverClass(pUrlItem->GetValue());
|
|
}
|
|
|
|
SetRoadmapStateValue(sal_False);
|
|
FreeResource();
|
|
}
|
|
|
|
OGenericAdministrationPage* OGeneralSpecialJDBCConnectionPageSetup::CreateMySQLJDBCTabPage( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OGeneralSpecialJDBCConnectionPageSetup( pParent,
|
|
PAGE_DBWIZARD_MYSQL_JDBC,
|
|
_rAttrSet,
|
|
DSID_MYSQL_PORTNUMBER ,
|
|
STR_MYSQL_DEFAULT,
|
|
STR_MYSQLJDBC_HELPTEXT,
|
|
STR_MYSQLJDBC_HEADERTEXT,
|
|
STR_MYSQL_DRIVERCLASSTEXT) );
|
|
}
|
|
|
|
OGenericAdministrationPage* OGeneralSpecialJDBCConnectionPageSetup::CreateOracleJDBCTabPage( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OGeneralSpecialJDBCConnectionPageSetup( pParent,
|
|
PAGE_DBWIZARD_ORACLE,
|
|
_rAttrSet,
|
|
DSID_ORACLE_PORTNUMBER,
|
|
STR_ORACLE_DEFAULT,
|
|
STR_ORACLE_HELPTEXT,
|
|
STR_ORACLE_HEADERTEXT,
|
|
STR_ORACLE_DRIVERCLASSTEXT) );
|
|
}
|
|
|
|
void OGeneralSpecialJDBCConnectionPageSetup::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aETDatabasename));
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aETDriverClass));
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aETHostname));
|
|
_rControlList.push_back(new OSaveValueWrapper<NumericField>(&m_aNFPortNumber));
|
|
}
|
|
void OGeneralSpecialJDBCConnectionPageSetup::fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTHelpText));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTDatabasename));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTHostname));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTPortNumber));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTDefaultPortNumber));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTDriverClass));
|
|
}
|
|
|
|
sal_Bool OGeneralSpecialJDBCConnectionPageSetup::FillItemSet( SfxItemSet& _rSet )
|
|
{
|
|
sal_Bool bChangedSomething = sal_False;
|
|
fillString(_rSet,&m_aETDriverClass,DSID_JDBCDRIVERCLASS,bChangedSomething);
|
|
fillString(_rSet,&m_aETHostname,DSID_CONN_HOSTNAME,bChangedSomething);
|
|
fillString(_rSet,&m_aETDatabasename,DSID_DATABASENAME,bChangedSomething);
|
|
fillInt32(_rSet,&m_aNFPortNumber,m_nPortId,bChangedSomething );
|
|
return bChangedSomething;
|
|
}
|
|
|
|
void OGeneralSpecialJDBCConnectionPageSetup::implInitControls(const SfxItemSet& _rSet, sal_Bool _bSaveValue)
|
|
{
|
|
// check whether or not the selection is invalid or readonly (invalid implies readonly, but not vice versa)
|
|
sal_Bool bValid, bReadonly;
|
|
getFlags(_rSet, bValid, bReadonly);
|
|
|
|
SFX_ITEMSET_GET(_rSet, pDatabaseName, SfxStringItem, DSID_DATABASENAME, true);
|
|
SFX_ITEMSET_GET(_rSet, pDrvItem, SfxStringItem, DSID_JDBCDRIVERCLASS, true);
|
|
SFX_ITEMSET_GET(_rSet, pHostName, SfxStringItem, DSID_CONN_HOSTNAME, true);
|
|
SFX_ITEMSET_GET(_rSet, pPortNumber, SfxInt32Item, m_nPortId, true);
|
|
|
|
if ( bValid )
|
|
{
|
|
m_aETDatabasename.SetText(pDatabaseName->GetValue());
|
|
m_aETDatabasename.ClearModifyFlag();
|
|
|
|
m_aETDriverClass.SetText(pDrvItem->GetValue());
|
|
m_aETDriverClass.ClearModifyFlag();
|
|
|
|
m_aETHostname.SetText(pHostName->GetValue());
|
|
m_aETHostname.ClearModifyFlag();
|
|
|
|
m_aNFPortNumber.SetValue(pPortNumber->GetValue());
|
|
m_aNFPortNumber.ClearModifyFlag();
|
|
}
|
|
OGenericAdministrationPage::implInitControls(_rSet, _bSaveValue);
|
|
|
|
// to get the correct value when saveValue was called by base class
|
|
if ( m_aETDriverClass.GetText().isEmpty() )
|
|
{
|
|
m_aETDriverClass.SetText(m_sDefaultJdbcDriverName);
|
|
m_aETDriverClass.SetModifyFlag();
|
|
}
|
|
callModifiedHdl();
|
|
|
|
sal_Bool bRoadmapState = ((!m_aETDatabasename.GetText().isEmpty() ) && (!m_aETHostname.GetText().isEmpty()) && (!m_aNFPortNumber.GetText().isEmpty() ) && ( !m_aETDriverClass.GetText().isEmpty() ));
|
|
SetRoadmapStateValue(bRoadmapState);
|
|
}
|
|
|
|
IMPL_LINK(OGeneralSpecialJDBCConnectionPageSetup, OnTestJavaClickHdl, PushButton*, /*_pButton*/)
|
|
{
|
|
OSL_ENSURE(m_pAdminDialog,"No Admin dialog set! ->GPF");
|
|
|
|
sal_Bool bSuccess = sal_False;
|
|
#if HAVE_FEATURE_JAVA
|
|
try
|
|
{
|
|
if ( !m_aETDriverClass.GetText().isEmpty() )
|
|
{
|
|
// TODO change jvmaccess
|
|
::rtl::Reference< jvmaccess::VirtualMachine > xJVM = ::connectivity::getJavaVM( m_pAdminDialog->getORB() );
|
|
bSuccess = ::connectivity::existsJavaClassByName(xJVM,m_aETDriverClass.GetText());
|
|
}
|
|
}
|
|
catch(::com::sun::star::uno::Exception&)
|
|
{
|
|
}
|
|
#endif
|
|
const sal_uInt16 nMessage = bSuccess ? STR_JDBCDRIVER_SUCCESS : STR_JDBCDRIVER_NO_SUCCESS;
|
|
const OSQLMessageBox::MessageType mt = bSuccess ? OSQLMessageBox::Info : OSQLMessageBox::Error;
|
|
OSQLMessageBox aMsg( this, OUString( ModuleRes( nMessage ) ), OUString(), WB_OK | WB_DEF_OK, mt );
|
|
aMsg.Execute();
|
|
return 0L;
|
|
}
|
|
|
|
IMPL_LINK(OGeneralSpecialJDBCConnectionPageSetup, OnEditModified, Edit*, _pEdit)
|
|
{
|
|
if ( _pEdit == &m_aETDriverClass )
|
|
m_aPBTestJavaDriver.Enable( !m_aETDriverClass.GetText().isEmpty() );
|
|
sal_Bool bRoadmapState = ((!m_aETDatabasename.GetText().isEmpty() ) && ( !m_aETHostname.GetText().isEmpty() ) && (!m_aNFPortNumber.GetText().isEmpty() ) && ( !m_aETDriverClass.GetText().isEmpty() ));
|
|
SetRoadmapStateValue(bRoadmapState);
|
|
callModifiedHdl();
|
|
return 0L;
|
|
}
|
|
|
|
OGenericAdministrationPage* OJDBCConnectionPageSetup::CreateJDBCTabPage( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OJDBCConnectionPageSetup( pParent, _rAttrSet));
|
|
}
|
|
|
|
// OMySQLJDBCConnectionPageSetup
|
|
OJDBCConnectionPageSetup::OJDBCConnectionPageSetup( Window* pParent, const SfxItemSet& _rCoreAttrs)
|
|
:OConnectionTabPageSetup(pParent, PAGE_DBWIZARD_JDBC, _rCoreAttrs, STR_JDBC_HELPTEXT, STR_JDBC_HEADERTEXT, STR_COMMONURL)
|
|
,m_aFTDriverClass (this, ModuleRes(FT_AUTOJDBCDRIVERCLASS))
|
|
,m_aETDriverClass (this, ModuleRes(ET_AUTOJDBCDRIVERCLASS))
|
|
,m_aPBTestJavaDriver (this, ModuleRes(PB_AUTOTESTDRIVERCLASS))
|
|
{
|
|
m_aETDriverClass.SetModifyHdl(LINK(this, OJDBCConnectionPageSetup, OnEditModified));
|
|
m_aPBTestJavaDriver.SetClickHdl(LINK(this,OJDBCConnectionPageSetup,OnTestJavaClickHdl));
|
|
FreeResource();
|
|
}
|
|
|
|
void OJDBCConnectionPageSetup::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aETDriverClass));
|
|
}
|
|
|
|
void OJDBCConnectionPageSetup::fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTDriverClass));
|
|
}
|
|
|
|
sal_Bool OJDBCConnectionPageSetup::FillItemSet( SfxItemSet& _rSet )
|
|
{
|
|
sal_Bool bChangedSomething = OConnectionTabPageSetup::FillItemSet(_rSet);
|
|
fillString(_rSet,&m_aETDriverClass,DSID_JDBCDRIVERCLASS,bChangedSomething);
|
|
return bChangedSomething;
|
|
}
|
|
|
|
void OJDBCConnectionPageSetup::implInitControls(const SfxItemSet& _rSet, sal_Bool _bSaveValue)
|
|
{
|
|
// check whether or not the selection is invalid or readonly (invalid implies readonly, but not vice versa)
|
|
sal_Bool bValid, bReadonly;
|
|
getFlags(_rSet, bValid, bReadonly);
|
|
|
|
SFX_ITEMSET_GET(_rSet, pDrvItem, SfxStringItem, DSID_JDBCDRIVERCLASS, true);
|
|
|
|
if ( bValid )
|
|
{
|
|
if ( !pDrvItem->GetValue().getLength() )
|
|
{
|
|
OUString sDefaultJdbcDriverName = m_pCollection->getJavaDriverClass(m_eType);
|
|
if ( !sDefaultJdbcDriverName.isEmpty() )
|
|
{
|
|
m_aETDriverClass.SetText(sDefaultJdbcDriverName);
|
|
m_aETDriverClass.SetModifyFlag();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
m_aETDriverClass.SetText(pDrvItem->GetValue());
|
|
m_aETDriverClass.ClearModifyFlag();
|
|
}
|
|
}
|
|
sal_Bool bEnable = pDrvItem->GetValue().getLength() != 0;
|
|
m_aPBTestJavaDriver.Enable(bEnable);
|
|
OConnectionTabPageSetup::implInitControls(_rSet, _bSaveValue);
|
|
|
|
SetRoadmapStateValue(checkTestConnection());
|
|
}
|
|
|
|
bool OJDBCConnectionPageSetup::checkTestConnection()
|
|
{
|
|
OSL_ENSURE(m_pAdminDialog,"No Admin dialog set! ->GPF");
|
|
sal_Bool bEnableTestConnection = !m_aConnectionURL.IsVisible() || !m_aConnectionURL.GetTextNoPrefix().isEmpty();
|
|
bEnableTestConnection = bEnableTestConnection && (!m_aETDriverClass.GetText().isEmpty());
|
|
return bEnableTestConnection;
|
|
}
|
|
|
|
IMPL_LINK(OJDBCConnectionPageSetup, OnTestJavaClickHdl, PushButton*, /*_pButton*/)
|
|
{
|
|
OSL_ENSURE(m_pAdminDialog,"No Admin dialog set! ->GPF");
|
|
sal_Bool bSuccess = sal_False;
|
|
#if HAVE_FEATURE_JAVA
|
|
try
|
|
{
|
|
if ( !m_aETDriverClass.GetText().isEmpty() )
|
|
{
|
|
// TODO change jvmaccess
|
|
::rtl::Reference< jvmaccess::VirtualMachine > xJVM = ::connectivity::getJavaVM( m_pAdminDialog->getORB() );
|
|
bSuccess = xJVM.is() && ::connectivity::existsJavaClassByName(xJVM,m_aETDriverClass.GetText());
|
|
}
|
|
}
|
|
catch(::com::sun::star::uno::Exception&)
|
|
{
|
|
}
|
|
#endif
|
|
sal_uInt16 nMessage = bSuccess ? STR_JDBCDRIVER_SUCCESS : STR_JDBCDRIVER_NO_SUCCESS;
|
|
OSQLMessageBox aMsg( this, OUString( ModuleRes( nMessage ) ), OUString() );
|
|
aMsg.Execute();
|
|
return 0L;
|
|
}
|
|
|
|
IMPL_LINK(OJDBCConnectionPageSetup, OnEditModified, Edit*, _pEdit)
|
|
{
|
|
if ( _pEdit == &m_aETDriverClass )
|
|
m_aPBTestJavaDriver.Enable( !m_aETDriverClass.GetText().isEmpty() );
|
|
SetRoadmapStateValue(checkTestConnection());
|
|
// tell the listener we were modified
|
|
callModifiedHdl();
|
|
return 0L;
|
|
}
|
|
|
|
OGenericAdministrationPage* OSpreadSheetConnectionPageSetup::CreateSpreadSheetTabPage( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OSpreadSheetConnectionPageSetup( pParent, _rAttrSet ) );
|
|
}
|
|
|
|
|
|
OSpreadSheetConnectionPageSetup::OSpreadSheetConnectionPageSetup( Window* pParent, const SfxItemSet& _rCoreAttrs )
|
|
:OConnectionTabPageSetup(pParent, PAGE_DBWIZARD_SPREADSHEET, _rCoreAttrs, STR_SPREADSHEET_HELPTEXT, STR_SPREADSHEET_HEADERTEXT, STR_SPREADSHEETPATH)
|
|
, m_aCBPasswordrequired(this, ModuleRes(CB_SPREADSHEETPASSWORDREQUIRED))
|
|
{
|
|
|
|
m_aCBPasswordrequired.SetToggleHdl(getControlModifiedLink());
|
|
FreeResource();
|
|
}
|
|
|
|
OSpreadSheetConnectionPageSetup::~OSpreadSheetConnectionPageSetup()
|
|
{
|
|
|
|
}
|
|
|
|
void OSpreadSheetConnectionPageSetup::fillWindows(::std::vector< ISaveValueWrapper* >& /*_rControlList*/)
|
|
{
|
|
}
|
|
|
|
void OSpreadSheetConnectionPageSetup::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
OConnectionTabPageSetup::fillControls(_rControlList);
|
|
_rControlList.push_back(new OSaveValueWrapper<CheckBox>(&m_aCBPasswordrequired));
|
|
|
|
}
|
|
|
|
void OSpreadSheetConnectionPageSetup::implInitControls(const SfxItemSet& _rSet, sal_Bool _bSaveValue)
|
|
{
|
|
OConnectionTabPageSetup::implInitControls(_rSet, _bSaveValue);
|
|
}
|
|
|
|
sal_Bool OSpreadSheetConnectionPageSetup::FillItemSet( SfxItemSet& _rSet )
|
|
{
|
|
sal_Bool bChangedSomething = OConnectionTabPageSetup::FillItemSet(_rSet);
|
|
fillBool(_rSet,&m_aCBPasswordrequired,DSID_PASSWORDREQUIRED,bChangedSomething);
|
|
return bChangedSomething;
|
|
}
|
|
|
|
OGenericAdministrationPage* OAuthentificationPageSetup::CreateAuthentificationTabPage( Window* pParent, const SfxItemSet& _rAttrSet )
|
|
{
|
|
return ( new OAuthentificationPageSetup( pParent, _rAttrSet) );
|
|
}
|
|
|
|
|
|
OAuthentificationPageSetup::OAuthentificationPageSetup( Window* pParent, const SfxItemSet& _rCoreAttrs )
|
|
:OGenericAdministrationPage(pParent, ModuleRes(PAGE_DBWIZARD_AUTHENTIFICATION), _rCoreAttrs )
|
|
, m_aFTHelpText (this, ModuleRes(FT_AUTHENTIFICATIONHELPTEXT))
|
|
, m_aFTHeaderText (this, ModuleRes(FT_AUTHENTIFICATIONHEADERTEXT))
|
|
, m_aFTUserName (this, ModuleRes(FT_GENERALUSERNAME))
|
|
, m_aETUserName (this, ModuleRes(ET_GENERALUSERNAME))
|
|
, m_aCBPasswordRequired (this, ModuleRes(CB_GENERALPASSWORDREQUIRED))
|
|
, m_aPBTestConnection (this, ModuleRes(PB_TESTCONNECTION))
|
|
{
|
|
|
|
SetControlFontWeight(&m_aFTHeaderText);
|
|
m_aETUserName.SetModifyHdl(getControlModifiedLink());
|
|
m_aCBPasswordRequired.SetClickHdl(getControlModifiedLink());
|
|
m_aPBTestConnection.SetClickHdl(LINK(this,OGenericAdministrationPage,OnTestConnectionClickHdl));
|
|
FreeResource();
|
|
|
|
LayoutHelper::fitSizeRightAligned( m_aPBTestConnection );
|
|
}
|
|
|
|
OAuthentificationPageSetup::~OAuthentificationPageSetup()
|
|
{
|
|
|
|
}
|
|
|
|
void OAuthentificationPageSetup::fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTHelpText));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(&m_aFTUserName));
|
|
_rControlList.push_back(new ODisableWrapper<PushButton>(&m_aPBTestConnection));
|
|
}
|
|
|
|
void OAuthentificationPageSetup::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new OSaveValueWrapper<Edit>(&m_aETUserName));
|
|
_rControlList.push_back(new OSaveValueWrapper<CheckBox>(&m_aCBPasswordRequired));
|
|
}
|
|
|
|
void OAuthentificationPageSetup::implInitControls(const SfxItemSet& _rSet, sal_Bool /*_bSaveValue*/)
|
|
{
|
|
// check whether or not the selection is invalid or readonly (invalid implies readonly, but not vice versa)
|
|
sal_Bool bValid, bReadonly;
|
|
getFlags(_rSet, bValid, bReadonly);
|
|
SFX_ITEMSET_GET(_rSet, pUidItem, SfxStringItem, DSID_USER, true);
|
|
SFX_ITEMSET_GET(_rSet, pAllowEmptyPwd, SfxBoolItem, DSID_PASSWORDREQUIRED, true);
|
|
|
|
m_aETUserName.SetText(pUidItem->GetValue());
|
|
m_aCBPasswordRequired.Check(pAllowEmptyPwd->GetValue());
|
|
|
|
m_aETUserName.ClearModifyFlag();
|
|
}
|
|
|
|
sal_Bool OAuthentificationPageSetup::FillItemSet( SfxItemSet& _rSet )
|
|
{
|
|
sal_Bool bChangedSomething = sal_False;
|
|
|
|
if (m_aETUserName.GetText() != m_aETUserName.GetSavedValue())
|
|
{
|
|
_rSet.Put(SfxStringItem(DSID_USER, m_aETUserName.GetText()));
|
|
_rSet.Put(SfxStringItem(DSID_PASSWORD, OUString()));
|
|
bChangedSomething = sal_True;
|
|
}
|
|
fillBool(_rSet,&m_aCBPasswordRequired,DSID_PASSWORDREQUIRED,bChangedSomething);
|
|
return bChangedSomething;
|
|
}
|
|
|
|
OGenericAdministrationPage* OFinalDBPageSetup::CreateFinalDBTabPageSetup( Window* pParent, const SfxItemSet& _rAttrSet)
|
|
{
|
|
return ( new OFinalDBPageSetup( pParent, _rAttrSet) );
|
|
}
|
|
|
|
|
|
OFinalDBPageSetup::OFinalDBPageSetup(Window* pParent, const SfxItemSet& _rCoreAttrs)
|
|
: OGenericAdministrationPage(pParent, "PageFinal",
|
|
"dbaccess/ui/finalpagewizard.ui", _rCoreAttrs)
|
|
{
|
|
get(m_pFTFinalHeader, "headerText");
|
|
get(m_pFTFinalHelpText, "helpText");
|
|
get(m_pRBRegisterDataSource, "yesregister");
|
|
get(m_pRBDontregisterDataSource, "noregister");
|
|
get(m_pFTAdditionalSettings, "additionalText");
|
|
get(m_pCBOpenAfterwards, "openediting");
|
|
get(m_pCBStartTableWizard, "usewizard");
|
|
get(m_pFTFinalText, "finishText");
|
|
|
|
m_pCBOpenAfterwards->SetClickHdl(LINK(this, OFinalDBPageSetup, OnOpenSelected));
|
|
m_pCBStartTableWizard->SetClickHdl(getControlModifiedLink());
|
|
m_pRBRegisterDataSource->SetState(true);
|
|
}
|
|
|
|
OFinalDBPageSetup::~OFinalDBPageSetup()
|
|
{
|
|
|
|
}
|
|
|
|
sal_Bool OFinalDBPageSetup::IsDatabaseDocumentToBeRegistered()
|
|
{
|
|
return m_pRBRegisterDataSource->IsChecked() && m_pRBRegisterDataSource->IsEnabled();
|
|
}
|
|
|
|
sal_Bool OFinalDBPageSetup::IsDatabaseDocumentToBeOpened()
|
|
{
|
|
return m_pCBOpenAfterwards->IsChecked() && m_pCBOpenAfterwards->IsEnabled();
|
|
}
|
|
|
|
sal_Bool OFinalDBPageSetup::IsTableWizardToBeStarted()
|
|
{
|
|
return m_pCBStartTableWizard->IsChecked() && m_pCBStartTableWizard->IsEnabled();
|
|
}
|
|
|
|
void OFinalDBPageSetup::fillWindows(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(m_pFTFinalHeader));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(m_pFTFinalHelpText));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(m_pFTAdditionalSettings));
|
|
_rControlList.push_back(new ODisableWrapper<FixedText>(m_pFTFinalText));
|
|
}
|
|
|
|
void OFinalDBPageSetup::fillControls(::std::vector< ISaveValueWrapper* >& _rControlList)
|
|
{
|
|
_rControlList.push_back(new OSaveValueWrapper<CheckBox>(m_pCBOpenAfterwards));
|
|
_rControlList.push_back(new OSaveValueWrapper<CheckBox>(m_pCBStartTableWizard));
|
|
_rControlList.push_back(new OSaveValueWrapper<RadioButton>(m_pRBRegisterDataSource));
|
|
_rControlList.push_back(new OSaveValueWrapper<RadioButton>(m_pRBDontregisterDataSource));
|
|
}
|
|
|
|
void OFinalDBPageSetup::implInitControls(const SfxItemSet& /*_rSet*/, sal_Bool /*_bSaveValue*/)
|
|
{
|
|
m_pCBOpenAfterwards->Check();
|
|
}
|
|
|
|
void OFinalDBPageSetup::enableTableWizardCheckBox( sal_Bool _bSupportsTableCreation)
|
|
{
|
|
m_pCBStartTableWizard->Enable(_bSupportsTableCreation);
|
|
}
|
|
|
|
sal_Bool OFinalDBPageSetup::FillItemSet( SfxItemSet& /*_rSet*/ )
|
|
{
|
|
return sal_True;
|
|
}
|
|
IMPL_LINK(OFinalDBPageSetup, OnOpenSelected, CheckBox*, _pBox)
|
|
{
|
|
m_pCBStartTableWizard->Enable( _pBox->IsEnabled() && _pBox->IsChecked() );
|
|
callModifiedHdl();
|
|
// outta here
|
|
return 0L;
|
|
}
|
|
}
|
|
|
|
// namespace dbaui
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|