Files
libreoffice/sc/source/ui/dbgui/validate.cxx

566 lines
18 KiB
C++
Raw Normal View History

2000-09-18 16:07:07 +00:00
/*************************************************************************
*
* $RCSfile: validate.cxx,v $
*
2001-08-03 14:28:32 +00:00
* $Revision: 1.6 $
2000-09-18 16:07:07 +00:00
*
2001-08-03 14:28:32 +00:00
* last change: $Author: tbe $ $Date: 2001-08-03 15:25:40 $
2000-09-18 16:07:07 +00:00
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* 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.
*
* 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.
*
* 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
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (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.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
#ifdef PCH
#include "ui_pch.hxx"
#endif
#pragma hdrstop
#ifndef PCH
#include <svtools/aeitem.hxx>
#include <svtools/stritem.hxx>
#include <svtools/eitem.hxx>
#include <vcl/svapp.hxx>
#include <basic/sbmeth.hxx>
#include <basic/sbstar.hxx>
#include <basic/sbmod.hxx>
#include <tools/urlobj.hxx>
2001-07-25 06:51:32 +00:00
#include <offmgr/app.hxx>
2000-09-18 16:07:07 +00:00
#endif
#include "scresid.hxx"
#include "sc.hrc" // -> Slot IDs
#include "validat.hxx"
#include "validate.hrc"
#define _VALIDATE_CXX
#include "validate.hxx"
#undef _VALIDATE_CXX
// STATIC DATA -----------------------------------------------------------
static USHORT pValueRanges[] =
{
FID_VALID_MODE, FID_VALID_ERRTEXT,
0
};
static USHORT pHelpRanges[] =
{
FID_VALIDATION,
FID_VALIDATION,
0
};
static USHORT pErrorRanges[] =
{
FID_VALIDATION,
FID_VALIDATION,
0
};
//==================================================================
ScValidationDlg::ScValidationDlg( Window* pParent,
const SfxItemSet* pArgSet ) :
SfxTabDialog( pParent,
ScResId( TAB_DLG_VALIDATION ),
pArgSet )
{
AddTabPage( TP_VALIDATION_VALUES, ScTPValidationValue::Create, 0 );
AddTabPage( TP_VALIDATION_INPUTHELP, ScTPValidationHelp::Create, 0 );
AddTabPage( TP_VALIDATION_ERROR, ScTPValidationError::Create, 0 );
FreeResource();
}
// -----------------------------------------------------------------------
__EXPORT ScValidationDlg::~ScValidationDlg()
{
}
//========================================================================
//========================================================================
2001-01-17 18:28:42 +00:00
// Values page
2000-09-18 16:07:07 +00:00
ScTPValidationValue::ScTPValidationValue( Window* pParent,
const SfxItemSet& rArgSet )
: SfxTabPage ( pParent,
ScResId( TP_VALIDATION_VALUES ),
rArgSet ),
aFtAllow ( this, ScResId( FT_ALLOW ) ),
aLbAllow ( this, ScResId( LB_ALLOW ) ),
aTsbAllow ( this, ScResId( TSB_ALLOW_BLANKS ) ),
aFtValue ( this, ScResId( FT_VALUE ) ),
aLbValue ( this, ScResId( LB_VALUE ) ),
aFtMin ( this, ScResId( FT_MIN ) ),
aEdtMin ( this, ScResId( EDT_MIN ) ),
aFtMax ( this, ScResId( FT_MAX ) ),
aEdtMax ( this, ScResId( EDT_MAX ) ),
aStrMin ( ScResId( SCSTR_MINIMUM ) ),
aStrMax ( ScResId( SCSTR_MAXIMUM ) ),
aStrValue ( ScResId( SCSTR_VALUE ) ),
rSet ( rArgSet )
{
Init();
FreeResource();
}
// -----------------------------------------------------------------------
__EXPORT ScTPValidationValue::~ScTPValidationValue()
{
}
// -----------------------------------------------------------------------
void ScTPValidationValue::Init()
{
aLbAllow.SetSelectHdl( LINK( this, ScTPValidationValue, SelectAllowHdl ) );
aLbValue.SetSelectHdl( LINK( this, ScTPValidationValue, SelectValueHdl ) );
aLbAllow.SelectEntryPos( 0 );
aTsbAllow.EnableTriState( FALSE );
aLbValue.SelectEntryPos( 0 );
SelectAllowHdl( NULL );
SelectValueHdl( NULL );
}
//------------------------------------------------------------------------
USHORT* __EXPORT ScTPValidationValue::GetRanges()
{
return pValueRanges;
}
// -----------------------------------------------------------------------
SfxTabPage* __EXPORT ScTPValidationValue::Create( Window* pParent,
const SfxItemSet& rArgSet )
{
return ( new ScTPValidationValue( pParent, rArgSet ) );
}
// -----------------------------------------------------------------------
void __EXPORT ScTPValidationValue::Reset( const SfxItemSet& rArgSet )
{
const SfxPoolItem* pItem;
if ( rArgSet.GetItemState( FID_VALID_MODE, TRUE, &pItem ) == SFX_ITEM_SET )
aLbAllow.SelectEntryPos( ((const SfxAllEnumItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aLbAllow.SelectEntryPos( 0 ); // default: all values
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_CONDMODE, TRUE, &pItem ) == SFX_ITEM_SET )
aLbValue.SelectEntryPos( ((const SfxAllEnumItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aLbValue.SelectEntryPos( 0 ); // default: equal
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_VALUE1, TRUE, &pItem ) == SFX_ITEM_SET )
aEdtMin.SetText( ((const SfxStringItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aEdtMin.SetText( EMPTY_STRING );
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_VALUE2, TRUE, &pItem ) == SFX_ITEM_SET )
aEdtMax.SetText( ((const SfxStringItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aEdtMax.SetText( EMPTY_STRING );
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_BLANK, TRUE, &pItem ) == SFX_ITEM_SET )
aTsbAllow.SetState( ((const SfxBoolItem*)pItem)->GetValue() ? STATE_CHECK : STATE_NOCHECK );
else
2001-01-17 18:28:42 +00:00
aTsbAllow.SetState( STATE_CHECK ); // default: on
2000-09-18 16:07:07 +00:00
SelectAllowHdl( NULL );
SelectValueHdl( NULL );
}
// -----------------------------------------------------------------------
BOOL __EXPORT ScTPValidationValue::FillItemSet( SfxItemSet& rArgSet )
{
rArgSet.Put( SfxAllEnumItem( FID_VALID_MODE, aLbAllow.GetSelectEntryPos() ) );
rArgSet.Put( SfxAllEnumItem( FID_VALID_CONDMODE, aLbValue.GetSelectEntryPos() ) );
rArgSet.Put( SfxStringItem( FID_VALID_VALUE1, aEdtMin.GetText() ) );
rArgSet.Put( SfxStringItem( FID_VALID_VALUE2, aEdtMax.GetText() ) );
rArgSet.Put( SfxBoolItem( FID_VALID_BLANK, aTsbAllow.GetState() == STATE_CHECK ) );
return TRUE;
}
// -----------------------------------------------------------------------
IMPL_LINK( ScTPValidationValue, SelectAllowHdl, ListBox *, pLb )
{
BOOL bEnable = aLbAllow.GetSelectEntryPos() != 0;
aTsbAllow.Enable( bEnable ); // Leerzellen
aFtValue.Enable( bEnable );
aLbValue.Enable( bEnable );
aFtMin.Enable( bEnable );
aEdtMin.Enable( bEnable );
aFtMax.Enable( bEnable );
aEdtMax.Enable( bEnable );
return( 0L );
}
// -----------------------------------------------------------------------
IMPL_LINK( ScTPValidationValue, SelectValueHdl, ListBox *, pLb )
{
USHORT nPos = aLbValue.GetSelectEntryPos();
BOOL bShow = FALSE;
switch( nPos )
{
case 0: // ==
case 5: // !=
aFtMin.SetText( aStrValue );
break;
case 1: // <
case 3: // <=
aFtMin.SetText( aStrMax );
break;
case 6: // zwischen
case 7: // n. zwischen
bShow = TRUE;
case 2: // >
case 4: // >=
aFtMin.SetText( aStrMin );
break;
default:
DBG_ERROR( "Wert ist nicht im Bereich der Stringlist!" );
break;
}
bShow ? aFtMax.Show() : aFtMax.Hide();
bShow ? aEdtMax.Show() : aEdtMax.Hide();
return( 0L );
}
//========================================================================
//========================================================================
2001-01-17 18:28:42 +00:00
// Input Help Page
2000-09-18 16:07:07 +00:00
ScTPValidationHelp::ScTPValidationHelp( Window* pParent,
const SfxItemSet& rArgSet )
: SfxTabPage ( pParent,
ScResId( TP_VALIDATION_INPUTHELP ),
rArgSet ),
aTsbHelp ( this, ScResId( TSB_HELP ) ),
aFtTitle ( this, ScResId( FT_TITLE ) ),
aEdtTitle ( this, ScResId( EDT_TITLE ) ),
aFtInputHelp ( this, ScResId( FT_INPUTHELP ) ),
aEdInputHelp ( this, ScResId( EDT_INPUTHELP ) ),
2001-05-22 11:43:40 +00:00
aFlContent ( this, ScResId( FL_CONTENT ) ),
2000-09-18 16:07:07 +00:00
rSet ( rArgSet )
{
Init();
FreeResource();
}
// -----------------------------------------------------------------------
__EXPORT ScTPValidationHelp::~ScTPValidationHelp()
{
}
// -----------------------------------------------------------------------
void ScTPValidationHelp::Init()
{
//aLb.SetSelectHdl( LINK( this, ScTPValidationHelp, SelectHdl ) );
aTsbHelp.EnableTriState( FALSE );
}
//------------------------------------------------------------------------
USHORT* __EXPORT ScTPValidationHelp::GetRanges()
{
return pValueRanges;
}
// -----------------------------------------------------------------------
SfxTabPage* __EXPORT ScTPValidationHelp::Create( Window* pParent,
const SfxItemSet& rArgSet )
{
return ( new ScTPValidationHelp( pParent, rArgSet ) );
}
// -----------------------------------------------------------------------
void __EXPORT ScTPValidationHelp::Reset( const SfxItemSet& rArgSet )
{
const SfxPoolItem* pItem;
if ( rArgSet.GetItemState( FID_VALID_SHOWHELP, TRUE, &pItem ) == SFX_ITEM_SET )
aTsbHelp.SetState( ((const SfxBoolItem*)pItem)->GetValue() ? STATE_CHECK : STATE_NOCHECK );
2001-01-17 18:28:42 +00:00
else
aTsbHelp.SetState( STATE_NOCHECK );
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_HELPTITLE, TRUE, &pItem ) == SFX_ITEM_SET )
aEdtTitle.SetText( ((const SfxStringItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aEdtTitle.SetText( EMPTY_STRING );
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_HELPTEXT, TRUE, &pItem ) == SFX_ITEM_SET )
aEdInputHelp.SetText( ((const SfxStringItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aEdInputHelp.SetText( EMPTY_STRING );
2000-09-18 16:07:07 +00:00
}
// -----------------------------------------------------------------------
BOOL __EXPORT ScTPValidationHelp::FillItemSet( SfxItemSet& rArgSet )
{
rArgSet.Put( SfxBoolItem( FID_VALID_SHOWHELP, aTsbHelp.GetState() == STATE_CHECK ) );
rArgSet.Put( SfxStringItem( FID_VALID_HELPTITLE, aEdtTitle.GetText() ) );
rArgSet.Put( SfxStringItem( FID_VALID_HELPTEXT, aEdInputHelp.GetText() ) );
return TRUE;
}
//========================================================================
//========================================================================
2001-01-17 18:28:42 +00:00
// Error Alert Page
2000-09-18 16:07:07 +00:00
ScTPValidationError::ScTPValidationError( Window* pParent,
const SfxItemSet& rArgSet )
: SfxTabPage ( pParent,
ScResId( TP_VALIDATION_ERROR ),
rArgSet ),
aTsbShow ( this, ScResId( TSB_SHOW ) ),
aFtAction ( this, ScResId( FT_ACTION ) ),
aLbAction ( this, ScResId( LB_ACTION ) ),
aBtnSearch ( this, ScResId( BTN_SEARCH ) ),
aFtTitle ( this, ScResId( FT_TITLE ) ),
aEdtTitle ( this, ScResId( EDT_TITLE ) ),
aFtError ( this, ScResId( FT_ERROR ) ),
aEdError ( this, ScResId( EDT_ERROR ) ),
2001-05-22 11:43:40 +00:00
aFlContent ( this, ScResId( FL_CONTENT ) ),
2000-09-18 16:07:07 +00:00
rSet ( rArgSet )
{
Init();
FreeResource();
}
// -----------------------------------------------------------------------
__EXPORT ScTPValidationError::~ScTPValidationError()
{
}
// -----------------------------------------------------------------------
void ScTPValidationError::Init()
{
aLbAction.SetSelectHdl( LINK( this, ScTPValidationError, SelectActionHdl ) );
aBtnSearch.SetClickHdl( LINK( this, ScTPValidationError, ClickSearchHdl ) );
aLbAction.SelectEntryPos( 0 );
aTsbShow.EnableTriState( FALSE );
SelectActionHdl( NULL );
}
//------------------------------------------------------------------------
USHORT* __EXPORT ScTPValidationError::GetRanges()
{
return pValueRanges;
}
// -----------------------------------------------------------------------
SfxTabPage* __EXPORT ScTPValidationError::Create( Window* pParent,
const SfxItemSet& rArgSet )
{
return ( new ScTPValidationError( pParent, rArgSet ) );
}
// -----------------------------------------------------------------------
void __EXPORT ScTPValidationError::Reset( const SfxItemSet& rArgSet )
{
const SfxPoolItem* pItem;
if ( rArgSet.GetItemState( FID_VALID_SHOWERR, TRUE, &pItem ) == SFX_ITEM_SET )
aTsbShow.SetState( ((const SfxBoolItem*)pItem)->GetValue() ? STATE_CHECK : STATE_NOCHECK );
2001-01-17 18:28:42 +00:00
else
aTsbShow.SetState( STATE_NOCHECK );
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_ERRSTYLE, TRUE, &pItem ) == SFX_ITEM_SET )
aLbAction.SelectEntryPos( ((const SfxAllEnumItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aLbAction.SelectEntryPos( 0 );
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_ERRTITLE, TRUE, &pItem ) == SFX_ITEM_SET )
aEdtTitle.SetText( ((const SfxStringItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aEdtTitle.SetText( EMPTY_STRING );
2000-09-18 16:07:07 +00:00
if ( rArgSet.GetItemState( FID_VALID_ERRTEXT, TRUE, &pItem ) == SFX_ITEM_SET )
aEdError.SetText( ((const SfxStringItem*)pItem)->GetValue() );
2001-01-17 18:28:42 +00:00
else
aEdError.SetText( EMPTY_STRING );
2000-09-18 16:07:07 +00:00
SelectActionHdl( NULL );
}
// -----------------------------------------------------------------------
BOOL __EXPORT ScTPValidationError::FillItemSet( SfxItemSet& rArgSet )
{
rArgSet.Put( SfxBoolItem( FID_VALID_SHOWERR, aTsbShow.GetState() == STATE_CHECK ) );
rArgSet.Put( SfxAllEnumItem( FID_VALID_ERRSTYLE, aLbAction.GetSelectEntryPos() ) );
rArgSet.Put( SfxStringItem( FID_VALID_ERRTITLE, aEdtTitle.GetText() ) );
rArgSet.Put( SfxStringItem( FID_VALID_ERRTEXT, aEdError.GetText() ) );
return TRUE;
}
// -----------------------------------------------------------------------
IMPL_LINK( ScTPValidationError, SelectActionHdl, ListBox *, pLb )
{
ScValidErrorStyle eStyle = (ScValidErrorStyle) aLbAction.GetSelectEntryPos();
BOOL bMacro = ( eStyle == SC_VALERR_MACRO );
aBtnSearch.Enable( bMacro );
aFtError.Enable( !bMacro );
aEdError.Enable( !bMacro );
return( 0L );
}
// -----------------------------------------------------------------------
IMPL_LINK( ScTPValidationError, ClickSearchHdl, PushButton*, pBtn )
{
Window* pOld = Application::GetDefDialogParent();
Application::SetDefDialogParent( this );
2001-08-03 14:28:32 +00:00
// choose macro dialog
String aScriptURL = OfficeApplication::ChooseMacro(FALSE, TRUE);
Application::SetDefDialogParent( pOld );
2001-08-03 14:28:32 +00:00
// aScriptURL has the following format:
// vnd.sun.star.script:language=[language],macro=[macro],location=[location]
// [language] = StarBasic
// [macro] = libname.modulename.macroname
// [location] = application|document
// e.g. 'vnd.sun.star.script:language=StarBasic,macro=Standard.Module1.Main,location=document'
//
// but for the UI we need this format:
// 'macroname'
2001-08-03 14:28:32 +00:00
if ( aScriptURL.Len() != 0 )
2000-09-18 16:07:07 +00:00
{
2001-08-03 14:28:32 +00:00
// parse script URL
BOOL bFound;
String aValue;
INetURLObject aINetScriptURL( aScriptURL );
// get language
String aLanguage;
bFound = aINetScriptURL.getParameter( String( RTL_CONSTASCII_USTRINGPARAM("language") ), &aValue );
if ( bFound )
aLanguage = aValue;
// get macro
String aMacro;
String aLibName;
String aModuleName;
String aMacroName;
bFound = aINetScriptURL.getParameter( String( RTL_CONSTASCII_USTRINGPARAM("macro") ), &aValue );
if ( bFound )
{
aMacro = aValue;
aLibName = aMacro.GetToken(0, sal_Unicode('.'));
aModuleName = aMacro.GetToken(1, sal_Unicode('.'));
aMacroName = aMacro.GetToken(2, sal_Unicode('.'));
}
// get location
String aLocation;
bFound = aINetScriptURL.getParameter( String( RTL_CONSTASCII_USTRINGPARAM("location") ), &aValue );
if ( bFound )
aLocation = aValue;
2000-09-18 16:07:07 +00:00
aEdtTitle.SetText( aMacroName );
2000-09-18 16:07:07 +00:00
}
return( 0L );
}