Files
libreoffice/dbaccess/source/ui/misc/WNameMatch.cxx

451 lines
17 KiB
C++
Raw Normal View History

2001-02-23 14:07:41 +00:00
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2001-02-23 14:07:41 +00:00
*
* Copyright 2008 by Sun Microsystems, Inc.
2001-02-23 14:07:41 +00:00
*
* OpenOffice.org - a multi-platform office productivity suite
2001-02-23 14:07:41 +00:00
*
* $RCSfile: WNameMatch.cxx,v $
* $Revision: 1.26 $
2001-02-23 14:07:41 +00:00
*
* This file is part of OpenOffice.org.
2001-02-23 14:07:41 +00:00
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
2001-02-23 14:07:41 +00:00
*
* OpenOffice.org 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 version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
2001-02-23 14:07:41 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
2001-02-23 14:07:41 +00:00
*
************************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_dbaccess.hxx"
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_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
#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
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 );
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);
// 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
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
aName = m_sDestText;
aName += String(m_pParent->m_sName);
2001-02-23 14:07:41 +00:00
m_FT_TABLE_RIGHT.SetText(aName);
m_CTRL_LEFT.FillListBox(*m_pParent->getSrcVector());
2001-02-23 14:07:41 +00:00
m_CTRL_RIGHT.FillListBox(*m_pParent->getDestVector());
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-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();
m_pParent->m_vColumnPos.clear();
m_pParent->m_vColumnTypes.clear();
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-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!");
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)
;
OSL_ENSURE((nPos) < static_cast<sal_Int32>(m_pParent->m_vColumnPos.size()),"m_pParent->m_vColumnPos: Illegal index for vector");
m_pParent->m_vColumnPos[nPos].first = ++nParamPos;
m_pParent->m_vColumnPos[nPos].second = ::std::distance(pDestColumns->begin(),aDestIter) + 1;
sal_Bool bNotConvert = sal_True;
2003-04-03 10:27:30 +00:00
TOTypeInfoSP pTypeInfo = m_pParent->convertType((*aDestIter)->second->getTypeInfo(),bNotConvert);
sal_Int32 nType = ::com::sun::star::sdbc::DataType::VARCHAR;
if ( pTypeInfo.get() )
nType = pTypeInfo->nType;
m_pParent->m_vColumnTypes[nPos] = nType;
2001-02-23 14:07:41 +00:00
}
else
{
m_pParent->m_vColumnPos[nPos].first = COLUMN_POSITION_NOT_FOUND;
m_pParent->m_vColumnPos[nPos].second = COLUMN_POSITION_NOT_FOUND;
}
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 )
{
SvLBoxEntry* pEntry = m_CTRL_LEFT.FirstSelected();
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 )
{
SvLBoxEntry* pEntry = m_CTRL_RIGHT.FirstSelected();
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;
}
//------------------------------------------------------------------------------
CWS-TOOLING: integrate CWS dba31e 2008-11-19 12:36:23 +0100 msc r263980 : i96104 2008-11-19 12:31:19 +0100 msc r263979 : i96104 2008-11-19 12:21:55 +0100 msc r263977 : i96104 2008-11-19 12:18:53 +0100 msc r263976 : i96104 2008-11-18 09:09:45 +0100 oj r263746 : disable color entry when area is set 2008-11-18 08:37:52 +0100 oj r263741 : #remove sub report entry 2008-11-17 11:20:25 +0100 fs r263708 : #i10000# 2008-11-17 11:06:52 +0100 fs r263706 : minimal version now is 3.1 2008-11-12 22:25:59 +0100 fs r263621 : #i96150# 2008-11-12 22:20:02 +0100 fs r263620 : rebased to m34 2008-11-12 21:39:41 +0100 fs r263618 : MANUAL REBASE: rebase CWS dba31d to DEV300_m34 2008-11-12 13:54:58 +0100 fs r263597 : #i96134# MediaDescriptor.URL is to be preferred over MediaDescriptor.FileName. Nonetheless, ensure both are handled 2008-11-12 13:53:40 +0100 fs r263596 : #i96134# re-enabled the code for #i41897#, a better fix is to come 2008-11-12 12:48:21 +0100 fs r263585 : #i96134# disable saving URLs of file-base databases relatively 2008-11-11 16:11:11 +0100 msc r263566 : #i96104# 2008-11-05 09:09:47 +0100 oj r263342 : #i88727# color noe added 2008-11-05 08:41:43 +0100 oj r263341 : #i77916# zoom added 2008-11-04 21:24:15 +0100 fs r263339 : disposing: call disposeAndClear without own mutex locked - some of our listeners insist on locking the SolarMutex, which sometimes led to deadlocks on the complex test cases 2008-11-04 21:23:15 +0100 fs r263338 : remove SolarMutex locking - this happned in CWS dba31c (in the CVS version), which this CWS was created from, but seems to got lost during resync 2008-11-04 20:49:50 +0100 fs r263335 : docu formatting 2008-11-04 20:06:39 +0100 fs r263334 : #i95826# use m_aMutex, not a DocumentGuard (wrongly resolved merge conflicts) 2008-11-04 17:36:29 +0100 fs r263332 : #i92688# properly revoke as XEventListener from m_xActiveController when disposing 2008-11-04 14:49:34 +0100 fs r263324 : #i92322# enable Input Required if EmptyIsNULL does not exist at the control 2008-10-31 11:10:04 +0100 oj r262857 : merge from cvs to svn 2008-10-31 09:46:45 +0100 oj r262853 : merge from cvs to svn 2008-10-31 08:46:37 +0100 oj r262849 : merge from cvs to svn 2008-10-31 08:44:24 +0100 oj r262848 : merge from cvs to svn 2008-10-31 08:43:33 +0100 oj r262847 : merge from cvs to svn 2008-10-31 08:42:28 +0100 oj r262846 : merge from cvs to svn 2008-10-31 08:41:58 +0100 oj r262845 : merge from cvs to svn 2008-10-31 08:41:32 +0100 oj r262844 : merge from cvs to svn 2008-10-28 12:19:50 +0100 oj r262733 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:42 +0100 oj r262732 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:36 +0100 oj r262731 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:31 +0100 oj r262730 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:22 +0100 oj r262729 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:18 +0100 oj r262728 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:10 +0100 oj r262727 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:06 +0100 oj r262726 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:05 +0100 oj r262725 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:01 +0100 oj r262724 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:50 +0100 oj r262723 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:41 +0100 oj r262722 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:40 +0100 oj r262721 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:27 +0100 oj r262720 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:10 +0100 oj r262719 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:01 +0100 oj r262718 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:17:39 +0100 oj r262717 : #iXXXXX#: migrate CWS dba31e to SVN
2008-12-01 12:31:27 +00:00
IMPL_LINK( OWizNameMatching, TableListClickHdl, void*, /*NOTINTERESTEDIN*/ )
2001-02-23 14:07:41 +00:00
{
SvLBoxEntry* pEntry = m_CTRL_LEFT.FirstSelected();
if(pEntry)
{
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)
{
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;
}
//------------------------------------------------------------------------------
CWS-TOOLING: integrate CWS dba31e 2008-11-19 12:36:23 +0100 msc r263980 : i96104 2008-11-19 12:31:19 +0100 msc r263979 : i96104 2008-11-19 12:21:55 +0100 msc r263977 : i96104 2008-11-19 12:18:53 +0100 msc r263976 : i96104 2008-11-18 09:09:45 +0100 oj r263746 : disable color entry when area is set 2008-11-18 08:37:52 +0100 oj r263741 : #remove sub report entry 2008-11-17 11:20:25 +0100 fs r263708 : #i10000# 2008-11-17 11:06:52 +0100 fs r263706 : minimal version now is 3.1 2008-11-12 22:25:59 +0100 fs r263621 : #i96150# 2008-11-12 22:20:02 +0100 fs r263620 : rebased to m34 2008-11-12 21:39:41 +0100 fs r263618 : MANUAL REBASE: rebase CWS dba31d to DEV300_m34 2008-11-12 13:54:58 +0100 fs r263597 : #i96134# MediaDescriptor.URL is to be preferred over MediaDescriptor.FileName. Nonetheless, ensure both are handled 2008-11-12 13:53:40 +0100 fs r263596 : #i96134# re-enabled the code for #i41897#, a better fix is to come 2008-11-12 12:48:21 +0100 fs r263585 : #i96134# disable saving URLs of file-base databases relatively 2008-11-11 16:11:11 +0100 msc r263566 : #i96104# 2008-11-05 09:09:47 +0100 oj r263342 : #i88727# color noe added 2008-11-05 08:41:43 +0100 oj r263341 : #i77916# zoom added 2008-11-04 21:24:15 +0100 fs r263339 : disposing: call disposeAndClear without own mutex locked - some of our listeners insist on locking the SolarMutex, which sometimes led to deadlocks on the complex test cases 2008-11-04 21:23:15 +0100 fs r263338 : remove SolarMutex locking - this happned in CWS dba31c (in the CVS version), which this CWS was created from, but seems to got lost during resync 2008-11-04 20:49:50 +0100 fs r263335 : docu formatting 2008-11-04 20:06:39 +0100 fs r263334 : #i95826# use m_aMutex, not a DocumentGuard (wrongly resolved merge conflicts) 2008-11-04 17:36:29 +0100 fs r263332 : #i92688# properly revoke as XEventListener from m_xActiveController when disposing 2008-11-04 14:49:34 +0100 fs r263324 : #i92322# enable Input Required if EmptyIsNULL does not exist at the control 2008-10-31 11:10:04 +0100 oj r262857 : merge from cvs to svn 2008-10-31 09:46:45 +0100 oj r262853 : merge from cvs to svn 2008-10-31 08:46:37 +0100 oj r262849 : merge from cvs to svn 2008-10-31 08:44:24 +0100 oj r262848 : merge from cvs to svn 2008-10-31 08:43:33 +0100 oj r262847 : merge from cvs to svn 2008-10-31 08:42:28 +0100 oj r262846 : merge from cvs to svn 2008-10-31 08:41:58 +0100 oj r262845 : merge from cvs to svn 2008-10-31 08:41:32 +0100 oj r262844 : merge from cvs to svn 2008-10-28 12:19:50 +0100 oj r262733 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:42 +0100 oj r262732 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:36 +0100 oj r262731 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:31 +0100 oj r262730 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:22 +0100 oj r262729 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:18 +0100 oj r262728 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:10 +0100 oj r262727 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:06 +0100 oj r262726 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:05 +0100 oj r262725 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:19:01 +0100 oj r262724 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:50 +0100 oj r262723 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:41 +0100 oj r262722 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:40 +0100 oj r262721 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:27 +0100 oj r262720 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:10 +0100 oj r262719 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:18:01 +0100 oj r262718 : #iXXXXX#: migrate CWS dba31e to SVN 2008-10-28 12:17:39 +0100 oj r262717 : #iXXXXX#: migrate CWS dba31e to SVN
2008-12-01 12:31:27 +00:00
IMPL_LINK( OWizNameMatching, TableListRightSelectHdl, void*, /*NOTINTERESTEDIN*/ )
2001-02-23 14:07:41 +00:00
{
SvLBoxEntry* pEntry = m_CTRL_RIGHT.FirstSelected();
if(pEntry)
{
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)
{
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);
}
*/
//------------------------------------------------------------------------
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, const ResId& rResId )
: 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, SvLBoxButtonKind eButtonKind)
2001-02-23 14:07:41 +00:00
{
DBTreeListBox::InitEntry( pEntry, rStr, rImg1, rImg2, eButtonKind );
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))
bSelect = DBTreeListBox::Select( pEntry,bSelect );
2001-02-23 14:07:41 +00:00
}
else
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;
SetCheckButtonState( pEntry, eState );
2001-02-23 14:07:41 +00:00
}
}
// -----------------------------------------------------------------------------