284 lines
11 KiB
C++
284 lines
11 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 "admincontrols.hxx"
|
|
#include "admincontrols.hrc"
|
|
#include "dbu_dlg.hrc"
|
|
#include "dsitems.hxx"
|
|
#include "moduledbu.hxx"
|
|
|
|
#include <svl/eitem.hxx>
|
|
#include <svl/stritem.hxx>
|
|
#include <svl/intitem.hxx>
|
|
|
|
namespace dbaui
|
|
{
|
|
|
|
// TextResetOperatorEventFilter
|
|
class TextResetOperatorEventFilter : public ::svt::IWindowEventFilter
|
|
{
|
|
public:
|
|
TextResetOperatorEventFilter()
|
|
{
|
|
}
|
|
|
|
// IWindowEventFilter
|
|
virtual bool payAttentionTo( const VclWindowEvent& _rEvent ) const
|
|
{
|
|
return ( _rEvent.GetId() == VCLEVENT_WINDOW_ENABLED )
|
|
|| ( _rEvent.GetId() == VCLEVENT_WINDOW_DISABLED )
|
|
|| ( _rEvent.GetId() == VCLEVENT_EDIT_MODIFY );
|
|
}
|
|
};
|
|
|
|
// TextResetOperator
|
|
class TextResetOperator :public ::svt::IWindowOperator
|
|
{
|
|
public:
|
|
TextResetOperator( const OUString& _rDisabledText )
|
|
:m_sDisabledText( _rDisabledText )
|
|
{
|
|
}
|
|
|
|
// IWindowOperator
|
|
virtual void operateOn( const VclWindowEvent& _rTrigger, Window& _rOperateOn ) const;
|
|
|
|
private:
|
|
const OUString m_sDisabledText;
|
|
OUString m_sUserText;
|
|
};
|
|
|
|
void TextResetOperator::operateOn( const VclWindowEvent& _rTrigger, Window& _rOperateOn ) const
|
|
{
|
|
OSL_ENSURE( _rTrigger.GetWindow() == &_rOperateOn, "TextResetOperator::operateOn: you're misusing this implementation!" );
|
|
|
|
switch ( _rTrigger.GetId() )
|
|
{
|
|
case 0:
|
|
// initial call
|
|
const_cast< TextResetOperator* >( this )->m_sUserText = _rTrigger.GetWindow()->GetText();
|
|
break;
|
|
|
|
case VCLEVENT_EDIT_MODIFY:
|
|
if ( _rTrigger.GetWindow()->IsEnabled() )
|
|
const_cast< TextResetOperator* >( this )->m_sUserText = _rTrigger.GetWindow()->GetText();
|
|
break;
|
|
|
|
case VCLEVENT_WINDOW_ENABLED:
|
|
_rOperateOn.SetText( m_sUserText );
|
|
break;
|
|
|
|
case VCLEVENT_WINDOW_DISABLED:
|
|
_rOperateOn.SetText( m_sDisabledText );
|
|
break;
|
|
|
|
default:
|
|
OSL_FAIL( "TextResetOperator::operateOn: unexpected event ID!" );
|
|
// all those IDs should have been filtered out by payAttentionTo
|
|
break;
|
|
}
|
|
}
|
|
|
|
// TextResetOperatorController
|
|
class TextResetOperatorController_Base
|
|
{
|
|
protected:
|
|
TextResetOperatorController_Base( const OUString& _rDisabledText )
|
|
:m_pEventFilter( new TextResetOperatorEventFilter )
|
|
,m_pOperator( new TextResetOperator( _rDisabledText ) )
|
|
{
|
|
}
|
|
|
|
inline ::svt::PWindowEventFilter getEventFilter() const { return m_pEventFilter; }
|
|
inline ::svt::PWindowOperator getOperator() const { return m_pOperator; }
|
|
|
|
private:
|
|
::svt::PWindowEventFilter m_pEventFilter;
|
|
::svt::PWindowOperator m_pOperator;
|
|
};
|
|
|
|
class TextResetOperatorController :public TextResetOperatorController_Base
|
|
,public ::svt::DialogController
|
|
{
|
|
public:
|
|
TextResetOperatorController( Window& _rObservee, const OUString& _rDisabledText )
|
|
:TextResetOperatorController_Base( _rDisabledText )
|
|
,::svt::DialogController( _rObservee, getEventFilter(), getOperator() )
|
|
{
|
|
addDependentWindow( _rObservee );
|
|
}
|
|
};
|
|
|
|
// MySQLNativeSettings
|
|
MySQLNativeSettings::MySQLNativeSettings( Window& _rParent, const Link& _rControlModificationLink )
|
|
:Control( &_rParent, ModuleRes( RID_MYSQL_NATIVE_SETTINGS ).SetAutoRelease( false ) )
|
|
,m_aDatabaseNameLabel ( this, ModuleRes( FT_MYSQL_DATABASE_NAME ) )
|
|
,m_aDatabaseName ( this, ModuleRes( ED_MYSQL_DATABASE_NAME ) )
|
|
,m_aHostPortRadio ( this, ModuleRes( RB_MYSQL_HOST_PORT ) )
|
|
,m_aSocketRadio ( this, ModuleRes( RB_MYSQL_SOCKET ) )
|
|
,m_aNamedPipeRadio ( this, ModuleRes( RB_MYSQL_NAMED_PIPE ) )
|
|
,m_aHostNameLabel ( this, ModuleRes( FT_COMMON_HOST_NAME ) )
|
|
,m_aHostName ( this, ModuleRes( ED_COMMON_HOST_NAME ) )
|
|
,m_aPortLabel ( this, ModuleRes( FT_COMMON_PORT ) )
|
|
,m_aPort ( this, ModuleRes( NF_COMMON_PORT ) )
|
|
,m_aDefaultPort ( this, ModuleRes( FT_COMMON_PORT_DEFAULT ) )
|
|
,m_aSocket ( this, ModuleRes( ED_MYSQL_SOCKET ) )
|
|
,m_aNamedPipe ( this, ModuleRes( ED_MYSQL_NAMED_PIPE ) )
|
|
{
|
|
FreeResource();
|
|
|
|
m_aDatabaseName.SetModifyHdl( _rControlModificationLink );
|
|
m_aHostName.SetModifyHdl( _rControlModificationLink );
|
|
m_aPort.SetModifyHdl( _rControlModificationLink );
|
|
m_aSocket.SetModifyHdl( _rControlModificationLink );
|
|
m_aNamedPipe.SetModifyHdl( _rControlModificationLink );
|
|
m_aSocketRadio.SetToggleHdl( _rControlModificationLink );
|
|
m_aNamedPipeRadio.SetToggleHdl( _rControlModificationLink );
|
|
|
|
m_aControlDependencies.enableOnRadioCheck( m_aHostPortRadio, m_aHostNameLabel, m_aHostName, m_aPortLabel, m_aPort, m_aDefaultPort );
|
|
m_aControlDependencies.enableOnRadioCheck( m_aSocketRadio, m_aSocket );
|
|
m_aControlDependencies.enableOnRadioCheck( m_aNamedPipeRadio, m_aNamedPipe );
|
|
|
|
m_aControlDependencies.addController( ::svt::PDialogController(
|
|
new TextResetOperatorController( m_aHostName, OUString("localhost") )
|
|
) );
|
|
|
|
// sockets are available on Unix systems only, named pipes only on Windows
|
|
#ifdef UNX
|
|
m_aNamedPipeRadio.Hide();
|
|
m_aNamedPipe.Hide();
|
|
#else
|
|
m_aSocketRadio.Hide();
|
|
m_aSocket.Hide();
|
|
#endif
|
|
}
|
|
|
|
MySQLNativeSettings::~MySQLNativeSettings()
|
|
{
|
|
}
|
|
|
|
void MySQLNativeSettings::fillControls( ::std::vector< ISaveValueWrapper* >& _rControlList )
|
|
{
|
|
_rControlList.push_back( new OSaveValueWrapper< Edit >( &m_aDatabaseName ) );
|
|
_rControlList.push_back( new OSaveValueWrapper< Edit >( &m_aHostName ) );
|
|
_rControlList.push_back( new OSaveValueWrapper< Edit >( &m_aPort ) );
|
|
_rControlList.push_back( new OSaveValueWrapper< Edit >( &m_aSocket ) );
|
|
_rControlList.push_back( new OSaveValueWrapper< Edit >( &m_aNamedPipe ) );
|
|
}
|
|
|
|
void MySQLNativeSettings::fillWindows( ::std::vector< ISaveValueWrapper* >& _rControlList )
|
|
{
|
|
_rControlList.push_back( new ODisableWrapper< FixedText >( &m_aDatabaseNameLabel ) );
|
|
_rControlList.push_back( new ODisableWrapper< FixedText >( &m_aHostNameLabel ) );
|
|
_rControlList.push_back( new ODisableWrapper< FixedText >( &m_aPortLabel ) );
|
|
_rControlList.push_back( new ODisableWrapper< FixedText >( &m_aDefaultPort ) );
|
|
_rControlList.push_back( new ODisableWrapper< RadioButton >( &m_aSocketRadio ) );
|
|
_rControlList.push_back( new ODisableWrapper< RadioButton >( &m_aNamedPipeRadio ) );
|
|
}
|
|
|
|
sal_Bool MySQLNativeSettings::FillItemSet( SfxItemSet& _rSet )
|
|
{
|
|
sal_Bool bChangedSomething = sal_False;
|
|
|
|
OGenericAdministrationPage::fillString( _rSet, &m_aHostName, DSID_CONN_HOSTNAME, bChangedSomething );
|
|
OGenericAdministrationPage::fillString( _rSet, &m_aDatabaseName, DSID_DATABASENAME, bChangedSomething );
|
|
OGenericAdministrationPage::fillInt32 ( _rSet, &m_aPort, DSID_MYSQL_PORTNUMBER, bChangedSomething );
|
|
#ifdef UNX
|
|
OGenericAdministrationPage::fillString( _rSet, &m_aSocket, DSID_CONN_SOCKET, bChangedSomething );
|
|
#else
|
|
OGenericAdministrationPage::fillString( _rSet, &m_aNamedPipe, DSID_NAMED_PIPE, bChangedSomething );
|
|
#endif
|
|
|
|
return bChangedSomething;
|
|
}
|
|
|
|
void MySQLNativeSettings::implInitControls(const SfxItemSet& _rSet )
|
|
{
|
|
SFX_ITEMSET_GET( _rSet, pInvalid, SfxBoolItem, DSID_INVALID_SELECTION, true );
|
|
bool bValid = !pInvalid || !pInvalid->GetValue();
|
|
if ( !bValid )
|
|
return;
|
|
|
|
SFX_ITEMSET_GET( _rSet, pDatabaseName, SfxStringItem, DSID_DATABASENAME, true );
|
|
SFX_ITEMSET_GET( _rSet, pHostName, SfxStringItem, DSID_CONN_HOSTNAME, true );
|
|
SFX_ITEMSET_GET( _rSet, pPortNumber, SfxInt32Item, DSID_MYSQL_PORTNUMBER, true );
|
|
SFX_ITEMSET_GET( _rSet, pSocket, SfxStringItem, DSID_CONN_SOCKET, true );
|
|
SFX_ITEMSET_GET( _rSet, pNamedPipe, SfxStringItem, DSID_NAMED_PIPE, true );
|
|
|
|
m_aDatabaseName.SetText( pDatabaseName->GetValue() );
|
|
m_aDatabaseName.ClearModifyFlag();
|
|
|
|
m_aHostName.SetText( pHostName->GetValue() );
|
|
m_aHostName.ClearModifyFlag();
|
|
|
|
m_aPort.SetValue( pPortNumber->GetValue() );
|
|
m_aPort.ClearModifyFlag();
|
|
|
|
m_aSocket.SetText( pSocket->GetValue() );
|
|
m_aSocket.ClearModifyFlag();
|
|
|
|
m_aNamedPipe.SetText( pNamedPipe->GetValue() );
|
|
m_aNamedPipe.ClearModifyFlag();
|
|
|
|
// if a socket (on Unix) or a pipe name (on Windows) is given, this is preferred over
|
|
// the port
|
|
#ifdef UNX
|
|
RadioButton& rSocketPipeRadio = m_aSocketRadio;
|
|
const SfxStringItem* pSocketPipeItem = pSocket;
|
|
#else
|
|
RadioButton& rSocketPipeRadio = m_aNamedPipeRadio;
|
|
const SfxStringItem* pSocketPipeItem = pNamedPipe;
|
|
#endif
|
|
OUString sSocketPipe( pSocketPipeItem->GetValue() );
|
|
if ( !sSocketPipe.isEmpty() )
|
|
rSocketPipeRadio.Check();
|
|
else
|
|
m_aHostPortRadio.Check();
|
|
}
|
|
|
|
bool MySQLNativeSettings::canAdvance() const
|
|
{
|
|
if ( m_aDatabaseName.GetText().isEmpty() )
|
|
return false;
|
|
|
|
if ( m_aHostPortRadio.IsChecked()
|
|
&& ( ( m_aHostName.GetText().isEmpty() )
|
|
|| ( m_aPort.GetText().isEmpty() )
|
|
)
|
|
)
|
|
return false;
|
|
|
|
#ifdef UNX
|
|
if ( ( m_aSocketRadio.IsChecked() )
|
|
&& ( m_aSocket.GetText().isEmpty() )
|
|
)
|
|
#else
|
|
if ( ( m_aNamedPipeRadio.IsChecked() )
|
|
&& ( m_aNamedPipe.GetText().isEmpty() )
|
|
)
|
|
#endif
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace dbaui
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|