2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-14 17:39:53 +01:00
|
|
|
/*
|
|
|
|
* 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 .
|
|
|
|
*/
|
2006-09-17 06:00:36 +00:00
|
|
|
|
2001-03-14 06:36:48 +00:00
|
|
|
#include "SqlNameEdit.hxx"
|
|
|
|
namespace dbaui
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
sal_Bool isCharOk(sal_Unicode _cChar,sal_Bool _bFirstChar,sal_Bool _bUpperCase,const OUString& _sAllowedChars)
|
2001-03-14 06:36:48 +00:00
|
|
|
{
|
2008-12-11 07:05:03 +00:00
|
|
|
return (
|
|
|
|
(_cChar >= 'A' && _cChar <= 'Z') ||
|
|
|
|
_cChar == '_' ||
|
|
|
|
_sAllowedChars.indexOf(_cChar) != -1 ||
|
2001-03-27 12:05:17 +00:00
|
|
|
(!_bFirstChar && (_cChar >= '0' && _cChar <= '9')) ||
|
2008-12-11 07:05:03 +00:00
|
|
|
(!_bUpperCase && (_cChar >= 'a' && _cChar <= 'z'))
|
|
|
|
);
|
2001-03-27 12:05:17 +00:00
|
|
|
}
|
2013-04-07 12:06:47 +02:00
|
|
|
sal_Bool OSQLNameChecker::checkString(const OUString& _sToCheck,
|
|
|
|
OUString& _rsCorrected)
|
2001-03-27 12:05:17 +00:00
|
|
|
{
|
2001-07-16 06:56:28 +00:00
|
|
|
sal_Bool bCorrected = sal_False;
|
2001-12-14 14:04:08 +00:00
|
|
|
if ( m_bCheck )
|
2001-03-14 06:36:48 +00:00
|
|
|
{
|
2013-08-12 20:13:49 +01:00
|
|
|
OUString sText = _sToCheck;
|
|
|
|
sal_Int32 nMatch = 0;
|
|
|
|
for (sal_Int32 i = nMatch; i < sText.getLength(); ++i)
|
2001-03-14 06:36:48 +00:00
|
|
|
{
|
2013-08-12 20:13:49 +01:00
|
|
|
if ( !isCharOk( sText[i], i == 0, m_bOnlyUpperCase, m_sAllowedChars ) )
|
2001-07-06 08:01:35 +00:00
|
|
|
{
|
2013-08-12 20:13:49 +01:00
|
|
|
_rsCorrected += sText.copy(nMatch, i - nMatch);
|
2001-07-16 06:56:28 +00:00
|
|
|
bCorrected = sal_True;
|
2001-12-14 14:04:08 +00:00
|
|
|
nMatch = i + 1;
|
2001-07-06 08:01:35 +00:00
|
|
|
}
|
2001-03-14 06:36:48 +00:00
|
|
|
}
|
2013-08-12 20:13:49 +01:00
|
|
|
_rsCorrected += sText.copy( nMatch, sText.getLength() - nMatch );
|
2001-03-14 06:36:48 +00:00
|
|
|
}
|
2001-07-16 06:56:28 +00:00
|
|
|
return bCorrected;
|
|
|
|
}
|
|
|
|
void OSQLNameEdit::Modify()
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sCorrected;
|
2013-02-25 02:01:54 +01:00
|
|
|
if ( checkString( GetText(),sCorrected ) )
|
2001-12-14 14:04:08 +00:00
|
|
|
{
|
|
|
|
Selection aSel = GetSelection();
|
|
|
|
aSel.setMax( aSel.getMin() );
|
|
|
|
SetText( sCorrected, aSel );
|
|
|
|
|
|
|
|
SaveValue();
|
|
|
|
}
|
2001-03-27 12:05:17 +00:00
|
|
|
Edit::Modify();
|
2001-03-14 06:36:48 +00:00
|
|
|
}
|
2001-07-16 06:56:28 +00:00
|
|
|
void OSQLNameComboBox::Modify()
|
|
|
|
{
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sCorrected;
|
2013-02-25 02:01:54 +01:00
|
|
|
if ( checkString( GetText(),sCorrected ) )
|
2001-07-16 06:56:28 +00:00
|
|
|
{
|
2001-12-14 14:04:08 +00:00
|
|
|
Selection aSel = GetSelection();
|
|
|
|
aSel.setMax( aSel.getMin() );
|
|
|
|
SetText( sCorrected );
|
|
|
|
|
2001-07-16 06:56:28 +00:00
|
|
|
SaveValue();
|
|
|
|
}
|
|
|
|
ComboBox::Modify();
|
|
|
|
}
|
2001-03-14 06:36:48 +00:00
|
|
|
}
|
|
|
|
|
2010-10-12 15:59:03 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|