2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2000-10-26 17:08:45 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 13:59:50 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2000-10-26 17:08:45 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2000-10-26 17:08:45 +00:00
|
|
|
*
|
2008-04-10 13:59:50 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2000-10-26 17:08:45 +00:00
|
|
|
*
|
2008-04-10 13:59:50 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2000-10-26 17:08:45 +00:00
|
|
|
*
|
2008-04-10 13:59:50 +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.
|
2000-10-26 17:08:45 +00:00
|
|
|
*
|
2008-04-10 13:59:50 +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).
|
2000-10-26 17:08:45 +00:00
|
|
|
*
|
2008-04-10 13:59:50 +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.
|
2000-10-26 17:08:45 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 06:11:07 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_dbaccess.hxx"
|
|
|
|
|
2000-10-26 17:08:45 +00:00
|
|
|
#include "paramdialog.hxx"
|
|
|
|
#include "paramdialog.hrc"
|
2002-08-19 07:01:32 +00:00
|
|
|
#include "dbu_dlg.hrc"
|
2007-07-06 07:18:49 +00:00
|
|
|
#include "commontypes.hxx"
|
2000-10-26 17:08:45 +00:00
|
|
|
#include "moduledbu.hxx"
|
|
|
|
#include <com/sun/star/util/XNumberFormatter.hpp>
|
|
|
|
#include <com/sun/star/sdbc/DataType.hpp>
|
|
|
|
#include <connectivity/dbtools.hxx>
|
2000-10-27 07:07:57 +00:00
|
|
|
#include "dbustrings.hrc"
|
2000-10-26 17:08:45 +00:00
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
2000-10-27 07:07:57 +00:00
|
|
|
#include <tools/debug.hxx>
|
2008-12-01 12:31:27 +00:00
|
|
|
#include <tools/diagnose_ex.h>
|
2000-10-26 17:08:45 +00:00
|
|
|
#include "localresaccess.hxx"
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <unotools/syslocale.hxx>
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
#define EF_VISITED 0x0001
|
|
|
|
#define EF_DIRTY 0x0002
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::com::sun::star::util;
|
|
|
|
using namespace ::connectivity;
|
|
|
|
|
|
|
|
//==================================================================
|
|
|
|
//= OParameterDialog
|
|
|
|
//==================================================================
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
#define INIT_MEMBERS() \
|
2000-10-27 07:07:57 +00:00
|
|
|
:ModalDialog( pParent, ModuleRes(DLG_PARAMETERS)) \
|
2007-04-26 07:00:50 +00:00
|
|
|
,m_aNamesFrame (this, ModuleRes(FL_PARAMS)) \
|
|
|
|
,m_aAllParams (this, ModuleRes(LB_ALLPARAMS)) \
|
|
|
|
,m_aValueFrame (this, ModuleRes(FT_VALUE)) \
|
|
|
|
,m_aParam (this, ModuleRes(ET_PARAM)) \
|
|
|
|
,m_aTravelNext (this, ModuleRes(BT_TRAVELNEXT)) \
|
|
|
|
,m_aOKBtn (this, ModuleRes(BT_OK)) \
|
|
|
|
,m_aCancelBtn (this, ModuleRes(BT_CANCEL)) \
|
2000-10-26 17:08:45 +00:00
|
|
|
,m_nCurrentlySelected(LISTBOX_ENTRY_NOTFOUND) \
|
2002-04-09 13:54:26 +00:00
|
|
|
,m_xConnection(_rxConnection) \
|
|
|
|
,m_aPredicateInput( _rxORB, _rxConnection, getParseContext() ) \
|
2006-06-20 02:09:17 +00:00
|
|
|
,m_bNeedErrorOnCurrent(sal_True) \
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2005-09-23 11:31:50 +00:00
|
|
|
DBG_NAME(OParameterDialog)
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
OParameterDialog::OParameterDialog(
|
|
|
|
Window* pParent, const Reference< XIndexAccess > & rParamContainer,
|
2002-04-09 13:54:26 +00:00
|
|
|
const Reference< XConnection > & _rxConnection, const Reference< XMultiServiceFactory >& _rxORB)
|
2000-10-26 17:08:45 +00:00
|
|
|
INIT_MEMBERS()
|
|
|
|
{
|
2005-09-23 11:31:50 +00:00
|
|
|
DBG_CTOR(OParameterDialog,NULL);
|
|
|
|
|
2000-10-26 17:08:45 +00:00
|
|
|
if (_rxORB.is())
|
|
|
|
m_xFormatter = Reference< XNumberFormatter>(_rxORB->createInstance(
|
|
|
|
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.util.NumberFormatter"))), UNO_QUERY);
|
2008-04-22 14:20:32 +00:00
|
|
|
else {
|
2000-10-26 17:08:45 +00:00
|
|
|
DBG_ERROR("OParameterDialog::OParameterDialog: need a service factory!");
|
2008-04-22 14:20:32 +00:00
|
|
|
}
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
Reference< XNumberFormatsSupplier > xNumberFormats = ::dbtools::getNumberFormats(m_xConnection, sal_True);
|
|
|
|
if (!xNumberFormats.is())
|
|
|
|
::comphelper::disposeComponent(m_xFormatter);
|
|
|
|
else if (m_xFormatter.is())
|
|
|
|
m_xFormatter->attachNumberFormatsSupplier(xNumberFormats);
|
|
|
|
try
|
|
|
|
{
|
|
|
|
DBG_ASSERT(rParamContainer->getCount(), "OParameterDialog::OParameterDialog : can't handle empty containers !");
|
|
|
|
|
|
|
|
m_aFinalValues.realloc(rParamContainer->getCount());
|
|
|
|
PropertyValue* pValues = m_aFinalValues.getArray();
|
|
|
|
|
|
|
|
for (sal_Int32 i = 0, nCount = rParamContainer->getCount(); i<nCount; ++i, ++pValues)
|
|
|
|
{
|
2001-03-13 07:23:17 +00:00
|
|
|
Reference< XPropertySet > xParamAsSet;
|
|
|
|
rParamContainer->getByIndex(i) >>= xParamAsSet;
|
|
|
|
OSL_ENSURE(xParamAsSet.is(),"Parameter is null!");
|
|
|
|
if(!xParamAsSet.is())
|
|
|
|
continue;
|
2000-10-26 17:08:45 +00:00
|
|
|
pValues->Name = ::comphelper::getString(xParamAsSet->getPropertyValue(PROPERTY_NAME));
|
|
|
|
m_aAllParams.InsertEntry(pValues->Name);
|
|
|
|
|
|
|
|
if (!pValues->Value.hasValue())
|
|
|
|
// it won't have a value, 'cause it's default constructed. But may be later we support
|
|
|
|
// initializing this dialog with values
|
|
|
|
pValues->Value = makeAny(::rtl::OUString());
|
|
|
|
// default the values to an empty string
|
|
|
|
|
2006-06-20 02:09:17 +00:00
|
|
|
m_aVisitedParams.push_back(0);
|
2000-10-26 17:08:45 +00:00
|
|
|
// not visited, not dirty
|
|
|
|
}
|
|
|
|
|
|
|
|
m_xParams = rParamContainer;
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
2008-12-01 12:31:27 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2000-10-26 17:08:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Construct();
|
|
|
|
|
|
|
|
m_aResetVisitFlag.SetTimeoutHdl(LINK(this, OParameterDialog, OnVisitedTimeout));
|
|
|
|
|
|
|
|
FreeResource();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
OParameterDialog::~OParameterDialog()
|
|
|
|
{
|
|
|
|
if (m_aResetVisitFlag.IsActive())
|
|
|
|
m_aResetVisitFlag.Stop();
|
|
|
|
|
2005-09-23 11:31:50 +00:00
|
|
|
DBG_DTOR(OParameterDialog,NULL);
|
2000-10-26 17:08:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
void OParameterDialog::Construct()
|
|
|
|
{
|
|
|
|
m_aAllParams.SetSelectHdl(LINK(this, OParameterDialog, OnEntrySelected));
|
|
|
|
m_aParam.SetLoseFocusHdl(LINK(this, OParameterDialog, OnValueLoseFocus));
|
|
|
|
m_aParam.SetModifyHdl(LINK(this, OParameterDialog, OnValueModified));
|
|
|
|
m_aTravelNext.SetClickHdl(LINK(this, OParameterDialog, OnButtonClicked));
|
|
|
|
m_aOKBtn.SetClickHdl(LINK(this, OParameterDialog, OnButtonClicked));
|
|
|
|
m_aCancelBtn.SetClickHdl(LINK(this, OParameterDialog, OnButtonClicked));
|
|
|
|
|
|
|
|
if (m_aAllParams.GetEntryCount())
|
|
|
|
{
|
|
|
|
m_aAllParams.SelectEntryPos(0);
|
|
|
|
LINK(this, OParameterDialog, OnEntrySelected).Call(&m_aAllParams);
|
|
|
|
|
|
|
|
if (m_aAllParams.GetEntryCount() == 1)
|
|
|
|
{
|
|
|
|
m_aTravelNext.Enable(sal_False);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_aAllParams.GetEntryCount() > 1)
|
|
|
|
{
|
|
|
|
m_aOKBtn.SetStyle(m_aOKBtn.GetStyle() & ~WB_DEFBUTTON);
|
|
|
|
m_aTravelNext.SetStyle(m_aTravelNext.GetStyle() | WB_DEFBUTTON);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_aParam.GrabFocus();
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2006-06-20 02:09:17 +00:00
|
|
|
IMPL_LINK(OParameterDialog, OnValueLoseFocus, Control*, /*pSource*/)
|
2000-10-26 17:08:45 +00:00
|
|
|
{
|
|
|
|
if (m_nCurrentlySelected != LISTBOX_ENTRY_NOTFOUND)
|
|
|
|
{
|
2006-06-20 02:09:17 +00:00
|
|
|
if ( ( m_aVisitedParams[ m_nCurrentlySelected ] & EF_DIRTY ) == 0 )
|
2000-10-26 17:08:45 +00:00
|
|
|
// nothing to do, the value isn't dirty
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
// transform the current string according to the param field type
|
2000-10-27 07:07:57 +00:00
|
|
|
::rtl::OUString sTransformedText(m_aParam.GetText());
|
2001-03-13 07:23:17 +00:00
|
|
|
Reference< XPropertySet > xParamAsSet;
|
|
|
|
m_xParams->getByIndex(m_nCurrentlySelected) >>= xParamAsSet;
|
2000-10-26 17:08:45 +00:00
|
|
|
if (xParamAsSet.is())
|
|
|
|
{
|
|
|
|
if (m_xConnection.is() && m_xFormatter.is())
|
|
|
|
{
|
2002-04-09 13:54:26 +00:00
|
|
|
::rtl::OUString sParamValue( m_aParam.GetText() );
|
|
|
|
sal_Bool bValid = m_aPredicateInput.normalizePredicateString( sParamValue, xParamAsSet );
|
|
|
|
m_aParam.SetText( sParamValue );
|
|
|
|
if ( bValid )
|
2000-10-26 17:08:45 +00:00
|
|
|
{
|
|
|
|
// with this the value isn't dirty anymore
|
|
|
|
if (m_nCurrentlySelected != LISTBOX_ENTRY_NOTFOUND)
|
2006-06-20 02:09:17 +00:00
|
|
|
m_aVisitedParams[m_nCurrentlySelected] &= ~EF_DIRTY;
|
2000-10-26 17:08:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!m_bNeedErrorOnCurrent)
|
|
|
|
return 1L;
|
|
|
|
|
|
|
|
m_bNeedErrorOnCurrent = sal_False; // will be reset in OnValueModified
|
|
|
|
|
|
|
|
::rtl::OUString sName;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
sName = ::comphelper::getString(xParamAsSet->getPropertyValue(PROPERTY_NAME));
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
2008-12-01 12:31:27 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2000-10-26 17:08:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
String sMessage;
|
|
|
|
{
|
2006-05-04 07:42:30 +00:00
|
|
|
LocalResourceAccess aDummy(DLG_PARAMETERS, RSC_MODALDIALOG);
|
2007-04-26 07:00:50 +00:00
|
|
|
sMessage = String(ModuleRes(STR_COULD_NOT_CONVERT_PARAM));
|
2000-10-26 17:08:45 +00:00
|
|
|
}
|
|
|
|
sMessage.SearchAndReplaceAll(String::CreateFromAscii("$name$"), sName.getStr());
|
|
|
|
ErrorBox(NULL, WB_OK, sMessage).Execute();
|
|
|
|
m_aParam.GrabFocus();
|
|
|
|
return 1L;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
IMPL_LINK(OParameterDialog, OnButtonClicked, PushButton*, pButton)
|
|
|
|
{
|
|
|
|
if (&m_aCancelBtn == pButton)
|
|
|
|
{
|
|
|
|
// no interpreting of the given values anymore ....
|
|
|
|
m_aParam.SetLoseFocusHdl(Link()); // no direct call from the control anymore ...
|
|
|
|
m_bNeedErrorOnCurrent = sal_False; // in case of any indirect calls -> no error message
|
|
|
|
m_aCancelBtn.SetClickHdl(Link());
|
|
|
|
m_aCancelBtn.Click();
|
|
|
|
}
|
|
|
|
else if (&m_aOKBtn == pButton)
|
|
|
|
{
|
|
|
|
// transfer the current values into the Any
|
|
|
|
if (LINK(this, OParameterDialog, OnEntrySelected).Call(&m_aAllParams) != 0L)
|
|
|
|
{ // there was an error interpreting the current text
|
|
|
|
m_bNeedErrorOnCurrent = sal_True;
|
|
|
|
// we're are out of the complex web :) of direct and indirect calls to OnValueLoseFocus now,
|
|
|
|
// so the next time it is called we need an error message, again ....
|
|
|
|
// (TODO : there surely are better solutions for this ...)
|
|
|
|
return 1L;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_xParams.is())
|
|
|
|
{
|
|
|
|
// write the parameters
|
|
|
|
try
|
|
|
|
{
|
2000-10-27 07:07:57 +00:00
|
|
|
::rtl::OUString sError;
|
2000-10-26 17:08:45 +00:00
|
|
|
PropertyValue* pValues = m_aFinalValues.getArray();
|
|
|
|
for (sal_Int32 i = 0, nCount = m_xParams->getCount(); i<nCount; ++i, ++pValues)
|
|
|
|
{
|
2001-03-13 07:23:17 +00:00
|
|
|
Reference< XPropertySet > xParamAsSet;
|
|
|
|
m_xParams->getByIndex(i) >>= xParamAsSet;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
2002-04-09 13:54:26 +00:00
|
|
|
::rtl::OUString sValue;
|
|
|
|
pValues->Value >>= sValue;
|
|
|
|
pValues->Value <<= ::rtl::OUString( m_aPredicateInput.getPredicateValue( sValue, xParamAsSet, sal_False ) );
|
2000-10-26 17:08:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
catch(Exception&)
|
|
|
|
{
|
2008-12-01 12:31:27 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2000-10-26 17:08:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// to close the dialog (which is more code than a simple EndDialog)
|
|
|
|
m_aOKBtn.SetClickHdl(Link());
|
|
|
|
m_aOKBtn.Click();
|
|
|
|
}
|
|
|
|
else if (&m_aTravelNext == pButton)
|
|
|
|
{
|
|
|
|
sal_uInt16 nCurrent = m_aAllParams.GetSelectEntryPos();
|
|
|
|
sal_uInt16 nCount = m_aAllParams.GetEntryCount();
|
2006-06-20 02:09:17 +00:00
|
|
|
DBG_ASSERT(nCount == m_aVisitedParams.size(), "OParameterDialog::OnButtonClicked : inconsistent lists !");
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
// search the next entry in list we haven't visited yet
|
|
|
|
sal_uInt16 nNext = (nCurrent + 1) % nCount;
|
2006-06-20 02:09:17 +00:00
|
|
|
while ((nNext != nCurrent) && ( m_aVisitedParams[nNext] & EF_VISITED ))
|
2000-10-26 17:08:45 +00:00
|
|
|
nNext = (nNext + 1) % nCount;
|
|
|
|
|
2006-06-20 02:09:17 +00:00
|
|
|
if ( m_aVisitedParams[nNext] & EF_VISITED )
|
2000-10-26 17:08:45 +00:00
|
|
|
// there is no such "not visited yet" entry -> simpy take the next one
|
|
|
|
nNext = (nCurrent + 1) % nCount;
|
|
|
|
|
|
|
|
m_aAllParams.SelectEntryPos(nNext);
|
|
|
|
LINK(this, OParameterDialog, OnEntrySelected).Call(&m_aAllParams);
|
|
|
|
m_bNeedErrorOnCurrent = sal_True;
|
|
|
|
// we're are out of the complex web :) of direct and indirect calls to OnValueLoseFocus now,
|
|
|
|
// so the next time it is called we need an error message, again ....
|
|
|
|
// (TODO : there surely are better solutions for this ...)
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2006-06-20 02:09:17 +00:00
|
|
|
IMPL_LINK(OParameterDialog, OnEntrySelected, ListBox*, /*pList*/)
|
2000-10-26 17:08:45 +00:00
|
|
|
{
|
|
|
|
if (m_aResetVisitFlag.IsActive())
|
|
|
|
{
|
|
|
|
LINK(this, OParameterDialog, OnVisitedTimeout).Call(&m_aResetVisitFlag);
|
|
|
|
m_aResetVisitFlag.Stop();
|
|
|
|
}
|
|
|
|
// save the old values
|
|
|
|
if (m_nCurrentlySelected != LISTBOX_ENTRY_NOTFOUND)
|
|
|
|
{
|
|
|
|
// do the transformation of the current text
|
|
|
|
if (LINK(this, OParameterDialog, OnValueLoseFocus).Call(&m_aParam) != 0L)
|
|
|
|
{ // there was an error interpreting the text
|
|
|
|
m_aAllParams.SelectEntryPos(m_nCurrentlySelected);
|
|
|
|
return 1L;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_aFinalValues[m_nCurrentlySelected].Value <<= ::rtl::OUString(m_aParam.GetText());
|
|
|
|
}
|
|
|
|
|
|
|
|
// initialize the controls with the new values
|
|
|
|
sal_uInt16 nSelected = m_aAllParams.GetSelectEntryPos();
|
|
|
|
DBG_ASSERT(nSelected != LISTBOX_ENTRY_NOTFOUND, "OParameterDialog::OnEntrySelected : no current entry !");
|
|
|
|
|
|
|
|
m_aParam.SetText(::comphelper::getString(m_aFinalValues[nSelected].Value));
|
|
|
|
m_nCurrentlySelected = nSelected;
|
|
|
|
|
|
|
|
// with this the value isn't dirty
|
2006-06-20 02:09:17 +00:00
|
|
|
DBG_ASSERT(m_nCurrentlySelected < m_aVisitedParams.size(), "OParameterDialog::OnEntrySelected : invalid current entry !");
|
|
|
|
m_aVisitedParams[m_nCurrentlySelected] &= ~EF_DIRTY;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
m_aResetVisitFlag.SetTimeout(1000);
|
|
|
|
m_aResetVisitFlag.Start();
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2006-06-20 02:09:17 +00:00
|
|
|
IMPL_LINK(OParameterDialog, OnVisitedTimeout, Timer*, /*pTimer*/)
|
2000-10-26 17:08:45 +00:00
|
|
|
{
|
|
|
|
DBG_ASSERT(m_nCurrentlySelected != LISTBOX_ENTRY_NOTFOUND, "OParameterDialog::OnVisitedTimeout : invalid call !");
|
|
|
|
|
|
|
|
// mark the currently selected entry as visited
|
2006-06-20 02:09:17 +00:00
|
|
|
DBG_ASSERT(m_nCurrentlySelected < m_aVisitedParams.size(), "OParameterDialog::OnVisitedTimeout : invalid entry !");
|
|
|
|
m_aVisitedParams[m_nCurrentlySelected] |= EF_VISITED;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
// was it the last "not visited yet" entry ?
|
|
|
|
ConstByteVectorIterator aIter;
|
2006-06-20 02:09:17 +00:00
|
|
|
for ( aIter = m_aVisitedParams.begin();
|
|
|
|
aIter < m_aVisitedParams.end();
|
2000-10-26 17:08:45 +00:00
|
|
|
++aIter
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (((*aIter) & EF_VISITED) == 0)
|
|
|
|
break;
|
|
|
|
}
|
2006-06-20 02:09:17 +00:00
|
|
|
if (aIter == m_aVisitedParams.end())
|
2000-10-26 17:08:45 +00:00
|
|
|
{ // yes, there isn't another one -> change the "default button"
|
|
|
|
m_aTravelNext.SetStyle(m_aTravelNext.GetStyle() & ~WB_DEFBUTTON);
|
|
|
|
m_aOKBtn.SetStyle(m_aOKBtn.GetStyle() | WB_DEFBUTTON);
|
|
|
|
|
|
|
|
// set to focus to one of the buttons temporary (with this their "default"-state is really updated)
|
|
|
|
Window* pOldFocus = Application::GetFocusWindow();
|
|
|
|
|
|
|
|
// if the old focus window is the value edit do some preparations ...
|
|
|
|
Selection aSel;
|
|
|
|
if (pOldFocus == &m_aParam)
|
|
|
|
{
|
|
|
|
m_aParam.SetLoseFocusHdl(Link());
|
|
|
|
aSel = m_aParam.GetSelection();
|
|
|
|
}
|
|
|
|
m_aTravelNext.GrabFocus();
|
|
|
|
if (pOldFocus)
|
|
|
|
pOldFocus->GrabFocus();
|
|
|
|
|
|
|
|
// restore the settings for the value edit
|
|
|
|
if (pOldFocus == &m_aParam)
|
|
|
|
{
|
|
|
|
m_aParam.SetLoseFocusHdl(LINK(this, OParameterDialog, OnValueLoseFocus));
|
|
|
|
m_aParam.SetSelection(aSel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2006-06-20 02:09:17 +00:00
|
|
|
IMPL_LINK(OParameterDialog, OnValueModified, Control*, /*pBox*/)
|
2000-10-26 17:08:45 +00:00
|
|
|
{
|
|
|
|
// mark the currently selected entry as dirty
|
2006-06-20 02:09:17 +00:00
|
|
|
DBG_ASSERT(m_nCurrentlySelected < m_aVisitedParams.size(), "OParameterDialog::OnValueModified : invalid entry !");
|
|
|
|
m_aVisitedParams[m_nCurrentlySelected] |= EF_DIRTY;
|
2000-10-26 17:08:45 +00:00
|
|
|
|
|
|
|
m_bNeedErrorOnCurrent = sal_True;
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
} // namespace dbaui
|
|
|
|
//.........................................................................
|
2010-10-12 15:59:03 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|