2001-02-23 14:07:41 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-08 15:10:40 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
2005-09-08 15:10:40 +00:00
|
|
|
* $RCSfile: WNameMatch.cxx,v $
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
2006-08-28 14:08:21 +00:00
|
|
|
* $Revision: 1.19 $
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
2006-08-28 14:08:21 +00:00
|
|
|
* last change: $Author: ihi $ $Date: 2006-08-28 15:08:21 $
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
2005-09-08 15:10:40 +00:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
|
|
|
*
|
2005-09-08 15:10:40 +00:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
2005-09-08 15:10:40 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
2005-09-08 15:10:40 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
2005-09-08 15:10:40 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2001-02-23 14:07:41 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
#ifndef DBAUI_WIZ_NAMEMATCHING_HXX
|
|
|
|
#include "WNameMatch.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _TOOLS_DEBUG_HXX
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef _DBAUI_MODULE_DBU_HXX_
|
|
|
|
#include "moduledbu.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_FIELDDESCRIPTIONS_HXX
|
|
|
|
#include "FieldDescriptions.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_WIZ_COPYTABLEDIALOG_HXX
|
|
|
|
#include "WCopyTable.hxx"
|
|
|
|
#endif
|
|
|
|
#ifndef _DBA_DBACCESS_HELPID_HRC_
|
|
|
|
#include "dbaccess_helpid.hrc"
|
|
|
|
#endif
|
2002-08-19 07:01:32 +00:00
|
|
|
#ifndef _DBU_MISC_HRC_
|
|
|
|
#include "dbu_misc.hrc"
|
2001-02-23 14:07:41 +00:00
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_WIZARD_PAGES_HRC
|
|
|
|
#include "WizardPages.hrc"
|
|
|
|
#endif
|
|
|
|
#ifndef _SV_SCRBAR_HXX
|
|
|
|
#include <vcl/scrbar.hxx>
|
|
|
|
#endif
|
|
|
|
#ifndef DBAUI_WIZ_COPYTABLEDIALOG_HXX
|
|
|
|
#include "WCopyTable.hxx"
|
|
|
|
#endif
|
2001-12-07 12:12:29 +00:00
|
|
|
#ifndef _COM_SUN_STAR_SDBC_DATATYPE_HPP_
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
|
|
#endif
|
2001-02-23 14:07:41 +00:00
|
|
|
|
|
|
|
using namespace ::dbaui;
|
|
|
|
//========================================================================
|
|
|
|
// OWizColumnSelect
|
2006-06-20 02:22:22 +00:00
|
|
|
DBG_NAME(OWizNameMatching)
|
2001-02-23 14:07:41 +00:00
|
|
|
//========================================================================
|
|
|
|
OWizNameMatching::OWizNameMatching( Window* pParent)
|
|
|
|
:OWizardPage( pParent, ModuleRes( TAB_WIZ_NAME_MATCHING ) )
|
|
|
|
,m_FT_TABLE_LEFT( this, ModuleRes( FT_TABLE_LEFT ) )
|
|
|
|
,m_FT_TABLE_RIGHT( this, ModuleRes( FT_TABLE_RIGHT ) )
|
|
|
|
,m_CTRL_LEFT( this, ModuleRes( CTRL_LEFT ) )
|
|
|
|
,m_CTRL_RIGHT( this, ModuleRes( CTRL_RIGHT ) )
|
2001-06-21 14:26:43 +00:00
|
|
|
,m_ibColumn_up( this, ModuleRes( IB_COLUMN_UP ) )
|
|
|
|
,m_ibColumn_down( this, ModuleRes( IB_COLUMN_DOWN ) )
|
|
|
|
,m_ibColumn_up_right( this, ModuleRes( IB_COLUMN_UP_RIGHT ) )
|
|
|
|
,m_ibColumn_down_right( this, ModuleRes( IB_COLUMN_DOWN_RIGHT ) )
|
2001-02-23 14:07:41 +00:00
|
|
|
,m_pbAll( this, ModuleRes( PB_ALL ) )
|
|
|
|
,m_pbNone( this, ModuleRes( PB_NONE ) )
|
|
|
|
|
|
|
|
{
|
|
|
|
DBG_CTOR(OWizNameMatching,NULL);
|
|
|
|
|
2001-06-21 14:26:43 +00:00
|
|
|
m_ibColumn_up.SetClickHdl(LINK(this,OWizNameMatching,ButtonClickHdl));
|
|
|
|
m_ibColumn_down.SetClickHdl(LINK(this,OWizNameMatching,ButtonClickHdl));
|
2001-02-23 14:07:41 +00:00
|
|
|
|
2001-06-21 14:26:43 +00:00
|
|
|
m_ibColumn_up_right.SetClickHdl(LINK(this,OWizNameMatching,RightButtonClickHdl));
|
|
|
|
m_ibColumn_down_right.SetClickHdl(LINK(this,OWizNameMatching,RightButtonClickHdl));
|
2001-02-23 14:07:41 +00:00
|
|
|
|
|
|
|
m_pbAll.SetClickHdl(LINK(this,OWizNameMatching,AllNoneClickHdl));
|
|
|
|
m_pbNone.SetClickHdl(LINK(this,OWizNameMatching,AllNoneClickHdl));
|
|
|
|
|
|
|
|
m_CTRL_LEFT.SetSelectHdl(LINK(this,OWizNameMatching,TableListClickHdl));
|
|
|
|
m_CTRL_RIGHT.SetSelectHdl(LINK(this,OWizNameMatching,TableListRightSelectHdl));
|
|
|
|
m_CTRL_RIGHT.EnableCheckButton( NULL );
|
|
|
|
|
|
|
|
m_CTRL_LEFT.SetWindowBits( WB_FORCE_MAKEVISIBLE );
|
|
|
|
m_CTRL_RIGHT.SetWindowBits( WB_FORCE_MAKEVISIBLE );
|
|
|
|
|
2001-08-08 07:24:54 +00:00
|
|
|
m_sSourceText = m_FT_TABLE_LEFT.GetText();
|
|
|
|
m_sSourceText.AppendAscii("\n");
|
|
|
|
m_sDestText = m_FT_TABLE_RIGHT.GetText();
|
|
|
|
m_sDestText.AppendAscii("\n");
|
|
|
|
|
2002-04-29 13:36:01 +00:00
|
|
|
// set hiContrast
|
|
|
|
m_ibColumn_up.SetModeImage(ModuleRes(IMG_SORTUP_H),BMP_COLOR_HIGHCONTRAST);
|
|
|
|
m_ibColumn_down.SetModeImage(ModuleRes(IMG_SORTDOWN_H),BMP_COLOR_HIGHCONTRAST);
|
|
|
|
m_ibColumn_up_right.SetModeImage(ModuleRes(IMG_SORTUP_H),BMP_COLOR_HIGHCONTRAST);
|
|
|
|
m_ibColumn_down_right.SetModeImage(ModuleRes(IMG_SORTDOWN_H),BMP_COLOR_HIGHCONTRAST);
|
|
|
|
|
2001-02-23 14:07:41 +00:00
|
|
|
FreeResource();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
OWizNameMatching::~OWizNameMatching()
|
|
|
|
{
|
|
|
|
DBG_DTOR(OWizNameMatching,NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void OWizNameMatching::Reset()
|
|
|
|
{
|
|
|
|
// urspr"unglichen zustand wiederherstellen
|
|
|
|
DBG_CHKTHIS(OWizNameMatching,NULL);
|
2001-08-08 07:24:54 +00:00
|
|
|
// the left tree contains bitmaps so i need to resize the right one
|
|
|
|
if(m_bFirstTime)
|
|
|
|
{
|
|
|
|
m_CTRL_RIGHT.SetReadOnly(); // sets autoinc to readonly
|
|
|
|
m_CTRL_RIGHT.SetEntryHeight(m_CTRL_LEFT.GetEntryHeight());
|
|
|
|
m_CTRL_RIGHT.SetIndent(m_CTRL_LEFT.GetIndent());
|
|
|
|
m_CTRL_RIGHT.SetSpaceBetweenEntries(m_CTRL_LEFT.GetSpaceBetweenEntries());
|
|
|
|
|
|
|
|
m_bFirstTime = sal_False;
|
|
|
|
}
|
|
|
|
|
|
|
|
// m_CTRL_LEFT.Clear();
|
2001-02-23 14:07:41 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
void OWizNameMatching::ActivatePage( )
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS(OWizNameMatching,NULL);
|
|
|
|
|
|
|
|
// set source table name
|
2001-08-08 07:24:54 +00:00
|
|
|
String aName = m_sSourceText;
|
|
|
|
aName += String(m_pParent->m_sSourceName);
|
2001-02-23 14:07:41 +00:00
|
|
|
|
|
|
|
m_FT_TABLE_LEFT.SetText(aName);
|
|
|
|
|
|
|
|
// set dest table name
|
2001-08-08 07:24:54 +00:00
|
|
|
aName = m_sDestText;
|
|
|
|
aName += String(m_pParent->m_sName);
|
2001-02-23 14:07:41 +00:00
|
|
|
m_FT_TABLE_RIGHT.SetText(aName);
|
|
|
|
|
|
|
|
|
2001-08-08 07:24:54 +00:00
|
|
|
m_CTRL_LEFT.FillListBox(*m_pParent->getSrcVector());
|
2001-02-23 14:07:41 +00:00
|
|
|
m_CTRL_RIGHT.FillListBox(*m_pParent->getDestVector());
|
|
|
|
|
2002-07-11 06:20:17 +00:00
|
|
|
m_ibColumn_up.Enable( m_CTRL_LEFT.GetEntryCount() > 1 );
|
|
|
|
m_ibColumn_down.Enable( m_CTRL_LEFT.GetEntryCount() > 1 );
|
|
|
|
|
|
|
|
m_ibColumn_up_right.Enable( m_CTRL_RIGHT.GetEntryCount() > 1 );
|
|
|
|
m_ibColumn_down_right.Enable( m_CTRL_RIGHT.GetEntryCount() > 1 );
|
|
|
|
|
2001-08-08 07:24:54 +00:00
|
|
|
|
2001-02-23 14:07:41 +00:00
|
|
|
m_pParent->EnableButton(OCopyTableWizard::WIZARD_NEXT,sal_False);
|
|
|
|
m_CTRL_LEFT.GrabFocus();
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
sal_Bool OWizNameMatching::LeavePage()
|
|
|
|
{
|
|
|
|
DBG_CHKTHIS(OWizNameMatching,NULL);
|
|
|
|
|
2002-05-23 10:59:05 +00:00
|
|
|
const ODatabaseExport::TColumnVector* pSrcColumns = m_pParent->getSrcVector();
|
2001-08-08 07:24:54 +00:00
|
|
|
|
|
|
|
m_pParent->m_vColumnPos.clear();
|
|
|
|
m_pParent->m_vColumnTypes.clear();
|
2006-06-20 02:22:22 +00:00
|
|
|
m_pParent->m_vColumnPos.resize( pSrcColumns->size() ,ODatabaseExport::TPositions::value_type( COLUMN_POSITION_NOT_FOUND, COLUMN_POSITION_NOT_FOUND ) );
|
|
|
|
m_pParent->m_vColumnTypes.resize( pSrcColumns->size(), COLUMN_POSITION_NOT_FOUND );
|
2001-08-08 07:24:54 +00:00
|
|
|
|
2001-02-23 14:07:41 +00:00
|
|
|
|
2002-05-23 10:59:05 +00:00
|
|
|
sal_Int32 nParamPos = 0;
|
2001-02-23 14:07:41 +00:00
|
|
|
SvLBoxEntry* pLeftEntry = m_CTRL_LEFT.GetModel()->First();
|
|
|
|
SvLBoxEntry* pRightEntry = m_CTRL_RIGHT.GetModel()->First();
|
|
|
|
while(pLeftEntry && pRightEntry)
|
|
|
|
{
|
|
|
|
OFieldDescription* pSrcField = static_cast<OFieldDescription*>(pLeftEntry->GetUserData());
|
|
|
|
DBG_ASSERT(pSrcField,"OWizNameMatching: OColumn can not be null!");
|
|
|
|
|
2002-05-23 10:59:05 +00:00
|
|
|
ODatabaseExport::TColumnVector::const_iterator aSrcIter = pSrcColumns->begin();
|
|
|
|
for(;aSrcIter != pSrcColumns->end() && (*aSrcIter)->second != pSrcField;++aSrcIter)
|
|
|
|
;
|
|
|
|
sal_Int32 nPos = ::std::distance(pSrcColumns->begin(),aSrcIter);
|
2001-02-23 14:07:41 +00:00
|
|
|
|
2002-05-23 10:59:05 +00:00
|
|
|
// sal_Int32 nPos = m_CTRL_LEFT.GetModel()->GetAbsPos(pLeftEntry);
|
2001-02-23 14:07:41 +00:00
|
|
|
if(m_CTRL_LEFT.GetCheckButtonState(pLeftEntry) == SV_BUTTON_CHECKED)
|
|
|
|
{
|
2002-05-23 10:59:05 +00:00
|
|
|
OFieldDescription* pDestField = static_cast<OFieldDescription*>(pRightEntry->GetUserData());
|
|
|
|
DBG_ASSERT(pDestField,"OWizNameMatching: OColumn can not be null!");
|
2001-08-08 07:24:54 +00:00
|
|
|
const ODatabaseExport::TColumnVector* pDestColumns = m_pParent->getDestVector();
|
2001-02-23 14:07:41 +00:00
|
|
|
ODatabaseExport::TColumnVector::const_iterator aDestIter = pDestColumns->begin();
|
|
|
|
|
2002-05-10 08:46:29 +00:00
|
|
|
for(;aDestIter != pDestColumns->end() && (*aDestIter)->second != pDestField;++aDestIter)
|
|
|
|
;
|
|
|
|
|
2004-06-01 09:13:10 +00:00
|
|
|
m_pParent->m_vColumnPos[nPos].first = ++nParamPos;
|
|
|
|
m_pParent->m_vColumnPos[nPos].second = ::std::distance(pDestColumns->begin(),aDestIter) + 1;
|
2003-04-01 13:30:57 +00:00
|
|
|
sal_Bool bNotConvert = sal_True;
|
2003-04-03 10:27:30 +00:00
|
|
|
TOTypeInfoSP pTypeInfo = m_pParent->convertType((*aDestIter)->second->getTypeInfo(),bNotConvert);
|
2001-12-07 12:12:29 +00:00
|
|
|
sal_Int32 nType = ::com::sun::star::sdbc::DataType::VARCHAR;
|
2003-03-19 16:57:12 +00:00
|
|
|
if ( pTypeInfo.get() )
|
2001-12-07 12:12:29 +00:00
|
|
|
nType = pTypeInfo->nType;
|
|
|
|
m_pParent->m_vColumnTypes[nPos] = nType;
|
2001-02-23 14:07:41 +00:00
|
|
|
}
|
|
|
|
else
|
2004-06-01 09:13:10 +00:00
|
|
|
{
|
2006-06-20 02:22:22 +00:00
|
|
|
m_pParent->m_vColumnPos[nPos].first = COLUMN_POSITION_NOT_FOUND;
|
|
|
|
m_pParent->m_vColumnPos[nPos].second = COLUMN_POSITION_NOT_FOUND;
|
2004-06-01 09:13:10 +00:00
|
|
|
}
|
2001-02-23 14:07:41 +00:00
|
|
|
|
|
|
|
pLeftEntry = m_CTRL_LEFT.GetModel()->Next(pLeftEntry);
|
|
|
|
pRightEntry = m_CTRL_RIGHT.GetModel()->Next(pRightEntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
String OWizNameMatching::GetTitle() const { return String(ModuleRes(STR_WIZ_NAME_MATCHING_TITEL)); }
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
IMPL_LINK( OWizNameMatching, ButtonClickHdl, Button *, pButton )
|
|
|
|
{
|
2006-07-19 15:04:46 +00:00
|
|
|
SvLBoxEntry* pEntry = m_CTRL_LEFT.FirstSelected();
|
2006-08-28 14:08:21 +00:00
|
|
|
if ( pEntry )
|
2001-02-23 14:07:41 +00:00
|
|
|
{
|
2001-02-28 09:11:33 +00:00
|
|
|
sal_Int32 nPos = m_CTRL_LEFT.GetModel()->GetAbsPos(pEntry);
|
2001-06-21 14:26:43 +00:00
|
|
|
if(pButton == &m_ibColumn_up && nPos)
|
2001-02-23 14:07:41 +00:00
|
|
|
--nPos;
|
2001-06-21 14:26:43 +00:00
|
|
|
else if(pButton == &m_ibColumn_down)
|
2001-02-23 14:07:41 +00:00
|
|
|
nPos += 2;
|
|
|
|
|
|
|
|
m_CTRL_LEFT.ModelIsMoving(pEntry,NULL,nPos);
|
|
|
|
m_CTRL_LEFT.GetModel()->Move(pEntry,NULL,nPos);
|
|
|
|
m_CTRL_LEFT.ModelHasMoved(pEntry);
|
|
|
|
|
|
|
|
long nThumbPos = m_CTRL_LEFT.GetVScroll()->GetThumbPos();
|
|
|
|
long nVisibleSize = m_CTRL_LEFT.GetVScroll()->GetVisibleSize();
|
|
|
|
|
2001-06-21 14:26:43 +00:00
|
|
|
if(pButton == &m_ibColumn_down && (nThumbPos+nVisibleSize+1) < nPos)
|
2001-02-23 14:07:41 +00:00
|
|
|
{
|
|
|
|
m_CTRL_LEFT.GetVScroll()->DoScrollAction(SCROLL_LINEDOWN);
|
|
|
|
// m_CTRL_LEFT.MakeVisible(pEntry,sal_True);
|
|
|
|
}
|
|
|
|
|
|
|
|
TableListClickHdl(&m_CTRL_LEFT);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
IMPL_LINK( OWizNameMatching, RightButtonClickHdl, Button *, pButton )
|
|
|
|
{
|
2006-07-19 15:04:46 +00:00
|
|
|
SvLBoxEntry* pEntry = m_CTRL_RIGHT.FirstSelected();
|
2006-08-28 14:08:21 +00:00
|
|
|
if ( pEntry )
|
2001-02-23 14:07:41 +00:00
|
|
|
{
|
2001-02-28 09:11:33 +00:00
|
|
|
sal_Int32 nPos = m_CTRL_RIGHT.GetModel()->GetAbsPos(pEntry);
|
2001-06-21 14:26:43 +00:00
|
|
|
if(pButton == &m_ibColumn_up_right && nPos)
|
2001-02-23 14:07:41 +00:00
|
|
|
--nPos;
|
2001-06-21 14:26:43 +00:00
|
|
|
else if(pButton == &m_ibColumn_down_right)
|
2001-02-23 14:07:41 +00:00
|
|
|
nPos += 2;
|
|
|
|
|
|
|
|
m_CTRL_RIGHT.ModelIsMoving(pEntry,NULL,nPos);
|
|
|
|
m_CTRL_RIGHT.GetModel()->Move(pEntry,NULL,nPos);
|
|
|
|
m_CTRL_RIGHT.ModelHasMoved(pEntry);
|
|
|
|
long nThumbPos = m_CTRL_RIGHT.GetVScroll()->GetThumbPos();
|
|
|
|
long nVisibleSize = m_CTRL_RIGHT.GetVScroll()->GetVisibleSize();
|
|
|
|
|
2001-06-21 14:26:43 +00:00
|
|
|
if(pButton == &m_ibColumn_down_right && (nThumbPos+nVisibleSize+1) < nPos)
|
2001-02-23 14:07:41 +00:00
|
|
|
m_CTRL_RIGHT.GetVScroll()->DoScrollAction(SCROLL_LINEDOWN);
|
|
|
|
TableListRightSelectHdl(&m_CTRL_RIGHT);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
2006-06-20 02:22:22 +00:00
|
|
|
IMPL_LINK( OWizNameMatching, TableListClickHdl, SvTreeListBox *, /*pListBox*/ )
|
2001-02-23 14:07:41 +00:00
|
|
|
{
|
|
|
|
SvLBoxEntry* pEntry = m_CTRL_LEFT.FirstSelected();
|
|
|
|
if(pEntry)
|
|
|
|
{
|
2006-06-20 02:22:22 +00:00
|
|
|
ULONG nPos = m_CTRL_LEFT.GetModel()->GetAbsPos(pEntry);
|
2001-02-23 14:07:41 +00:00
|
|
|
SvLBoxEntry* pOldEntry = m_CTRL_RIGHT.FirstSelected();
|
|
|
|
if(pOldEntry && nPos != m_CTRL_RIGHT.GetModel()->GetAbsPos(pOldEntry))
|
|
|
|
{
|
|
|
|
if(pOldEntry)
|
|
|
|
m_CTRL_RIGHT.Select(pOldEntry,sal_False);
|
|
|
|
pOldEntry = m_CTRL_RIGHT.GetEntry(nPos);
|
|
|
|
if(pOldEntry)
|
|
|
|
{
|
2006-06-20 02:22:22 +00:00
|
|
|
ULONG nNewPos = m_CTRL_LEFT.GetModel()->GetAbsPos(m_CTRL_LEFT.GetFirstEntryInView());
|
|
|
|
if ( nNewPos - nPos == 1 )
|
|
|
|
--nNewPos;
|
2001-02-23 14:07:41 +00:00
|
|
|
m_CTRL_RIGHT.MakeVisible(m_CTRL_RIGHT.GetEntry(nNewPos),sal_True);
|
|
|
|
m_CTRL_RIGHT.Select(pOldEntry,sal_True);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(!pOldEntry)
|
|
|
|
{
|
|
|
|
pOldEntry = m_CTRL_RIGHT.GetEntry(nPos);
|
|
|
|
if(pOldEntry)
|
|
|
|
{
|
|
|
|
m_CTRL_RIGHT.Select(pOldEntry,sal_True);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
2006-06-20 02:22:22 +00:00
|
|
|
IMPL_LINK( OWizNameMatching, TableListRightSelectHdl, SvTreeListBox *, /*pListBox*/ )
|
2001-02-23 14:07:41 +00:00
|
|
|
{
|
|
|
|
SvLBoxEntry* pEntry = m_CTRL_RIGHT.FirstSelected();
|
|
|
|
if(pEntry)
|
|
|
|
{
|
2006-06-20 02:22:22 +00:00
|
|
|
ULONG nPos = m_CTRL_RIGHT.GetModel()->GetAbsPos(pEntry);
|
2001-02-23 14:07:41 +00:00
|
|
|
SvLBoxEntry* pOldEntry = m_CTRL_LEFT.FirstSelected();
|
|
|
|
if(pOldEntry && nPos != m_CTRL_LEFT.GetModel()->GetAbsPos(pOldEntry))
|
|
|
|
{
|
|
|
|
if(pOldEntry)
|
|
|
|
m_CTRL_LEFT.Select(pOldEntry,sal_False);
|
|
|
|
pOldEntry = m_CTRL_LEFT.GetEntry(nPos);
|
|
|
|
if(pOldEntry)
|
|
|
|
{
|
2006-06-20 02:22:22 +00:00
|
|
|
ULONG nNewPos = m_CTRL_RIGHT.GetModel()->GetAbsPos(m_CTRL_RIGHT.GetFirstEntryInView());
|
|
|
|
if ( nNewPos - nPos == 1 )
|
2001-02-23 14:07:41 +00:00
|
|
|
nNewPos--;
|
|
|
|
m_CTRL_LEFT.MakeVisible(m_CTRL_LEFT.GetEntry(nNewPos),sal_True);
|
|
|
|
m_CTRL_LEFT.Select(pOldEntry,sal_True);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(!pOldEntry)
|
|
|
|
{
|
|
|
|
pOldEntry = m_CTRL_LEFT.GetEntry(nPos);
|
|
|
|
if(pOldEntry)
|
|
|
|
{
|
|
|
|
m_CTRL_LEFT.Select(pOldEntry,sal_True);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
IMPL_LINK( OWizNameMatching, AllNoneClickHdl, Button *, pButton )
|
|
|
|
{
|
|
|
|
sal_Bool bAll = pButton == &m_pbAll;
|
|
|
|
SvLBoxEntry* pEntry = m_CTRL_LEFT.First();
|
|
|
|
while(pEntry)
|
|
|
|
{
|
|
|
|
m_CTRL_LEFT.SetCheckButtonState( pEntry, bAll ? SV_BUTTON_CHECKED : SV_BUTTON_UNCHECKED);
|
|
|
|
pEntry = m_CTRL_LEFT.Next(pEntry);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
//========================================================================
|
|
|
|
// class OColumnString
|
|
|
|
//========================================================================
|
|
|
|
class OColumnString : public SvLBoxString
|
|
|
|
{
|
|
|
|
sal_Bool m_bReadOnly;
|
|
|
|
public:
|
|
|
|
OColumnString( SvLBoxEntry* pEntry, sal_uInt16 nFlags, const String& rStr,sal_Bool _RO)
|
|
|
|
:SvLBoxString(pEntry,nFlags,rStr)
|
|
|
|
,m_bReadOnly(_RO)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void Paint(const Point& rPos, SvLBox& rDev, sal_uInt16 nFlags, SvLBoxEntry* pEntry);
|
|
|
|
//virtual void InitViewData( SvLBox* pView,SvLBoxEntry* pEntry, SvViewDataItem* pViewData);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
void OColumnString::InitViewData( SvLBox* pView,SvLBoxEntry* pEntry, SvViewDataItem* pViewData)
|
|
|
|
{
|
|
|
|
SvLBoxString::InitViewData(pView,pEntry,pViewData);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
//------------------------------------------------------------------------
|
2006-06-20 02:22:22 +00:00
|
|
|
void OColumnString::Paint(const Point& rPos, SvLBox& rDev, sal_uInt16 /*nFlags*/, SvLBoxEntry* /*pEntry*/ )
|
2001-02-23 14:07:41 +00:00
|
|
|
{
|
|
|
|
if(m_bReadOnly)
|
|
|
|
{
|
|
|
|
const StyleSettings& rStyleSettings = rDev.GetSettings().GetStyleSettings();
|
|
|
|
rDev.SetTextColor( rStyleSettings.GetDisableColor() );
|
|
|
|
rDev.SetTextFillColor( rStyleSettings.GetFieldColor() );
|
|
|
|
}
|
|
|
|
rDev.DrawText( rPos, GetText() );
|
|
|
|
}
|
|
|
|
//========================================================================
|
|
|
|
OColumnTreeBox::OColumnTreeBox( Window* pParent, WinBits nWinStyle )
|
2004-08-02 15:07:58 +00:00
|
|
|
: OMarkableTreeListBox(pParent,NULL,nWinStyle)
|
2001-02-23 14:07:41 +00:00
|
|
|
{
|
|
|
|
SetDragDropMode( 0 );
|
|
|
|
EnableInplaceEditing( sal_False );
|
|
|
|
SetWindowBits(WB_BORDER | WB_HASBUTTONS | WB_HSCROLL);
|
|
|
|
SetSelectionMode( SINGLE_SELECTION );
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
OColumnTreeBox::OColumnTreeBox( Window* pParent, const ResId& rResId )
|
2004-08-02 15:07:58 +00:00
|
|
|
: OMarkableTreeListBox(pParent,NULL,rResId)
|
2001-02-23 14:07:41 +00:00
|
|
|
{
|
|
|
|
SetDragDropMode( 0 );
|
|
|
|
EnableInplaceEditing( sal_False );
|
|
|
|
SetWindowBits(WB_BORDER | WB_HASBUTTONS | WB_HSCROLL);
|
|
|
|
SetSelectionMode( SINGLE_SELECTION );
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
void OColumnTreeBox::InitEntry(SvLBoxEntry* pEntry, const String& rStr, const Image& rImg1, const Image& rImg2)
|
|
|
|
{
|
2004-08-02 15:07:58 +00:00
|
|
|
DBTreeListBox::InitEntry( pEntry, rStr, rImg1, rImg2 );
|
2001-02-23 14:07:41 +00:00
|
|
|
SvLBoxString* pString = new OColumnString(pEntry, 0, rStr,sal_False);
|
|
|
|
if (pString)
|
|
|
|
pEntry->ReplaceItem( pString, pEntry->ItemCount() - 1 );
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
sal_Bool OColumnTreeBox::Select( SvLBoxEntry* pEntry, sal_Bool bSelect )
|
|
|
|
{
|
|
|
|
if(bSelect)
|
|
|
|
{
|
|
|
|
OFieldDescription* pColumn = static_cast<OFieldDescription*>(pEntry->GetUserData());
|
|
|
|
if(!(pColumn->IsAutoIncrement() && m_bReadOnly))
|
2004-08-02 15:07:58 +00:00
|
|
|
bSelect = DBTreeListBox::Select( pEntry,bSelect );
|
2001-02-23 14:07:41 +00:00
|
|
|
}
|
|
|
|
else
|
2004-08-02 15:07:58 +00:00
|
|
|
bSelect = DBTreeListBox::Select( pEntry,bSelect );
|
2001-02-23 14:07:41 +00:00
|
|
|
return bSelect;
|
|
|
|
}
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
void OColumnTreeBox::FillListBox( const ODatabaseExport::TColumnVector& _rList)
|
|
|
|
{
|
|
|
|
Clear();
|
|
|
|
ODatabaseExport::TColumnVector::const_iterator aIter = _rList.begin();
|
|
|
|
for(;aIter != _rList.end();++aIter)
|
|
|
|
{
|
|
|
|
SvLBoxEntry* pEntry = InsertEntry((*aIter)->first,0,sal_False,LIST_APPEND,(*aIter)->second);
|
|
|
|
SvButtonState eState = !(m_bReadOnly && (*aIter)->second->IsAutoIncrement()) ? SV_BUTTON_CHECKED : SV_BUTTON_UNCHECKED;
|
2006-06-20 02:22:22 +00:00
|
|
|
SetCheckButtonState( pEntry, eState );
|
2001-02-23 14:07:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|