2009-08-24 16:12:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2009-09-15 07:12:54 +00:00
|
|
|
// oxygenexception.cpp
|
2010-05-22 05:40:39 +00:00
|
|
|
// window decoration exception
|
2009-08-24 16:12:50 +00:00
|
|
|
// -------------------
|
2009-09-09 00:55:55 +00:00
|
|
|
//
|
2009-08-25 04:15:13 +00:00
|
|
|
// Copyright (c) 2009 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
2009-08-24 16:12:50 +00:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to
|
|
|
|
// deal in the Software without restriction, including without limitation the
|
|
|
|
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
// sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
2009-09-09 00:55:55 +00:00
|
|
|
// IN THE SOFTWARE.
|
2009-08-24 16:12:50 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2009-08-22 08:24:06 +00:00
|
|
|
|
2009-09-16 06:09:31 +00:00
|
|
|
#include "oxygenexception.h"
|
2009-08-24 16:12:50 +00:00
|
|
|
#include <cassert>
|
2009-09-09 06:14:01 +00:00
|
|
|
#include <KLocale>
|
2009-08-22 08:24:06 +00:00
|
|
|
|
2009-09-15 07:12:54 +00:00
|
|
|
namespace Oxygen
|
2009-08-22 08:24:06 +00:00
|
|
|
{
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
//_______________________________________________________
|
2010-05-02 18:34:08 +00:00
|
|
|
Exception::Exception( KConfigGroup group ):
|
|
|
|
Configuration( group )
|
2009-08-22 08:24:06 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
// used to set default values when entries are not found in kconfig
|
2010-05-02 18:34:08 +00:00
|
|
|
Exception default_configuration;
|
2009-08-22 08:24:06 +00:00
|
|
|
|
|
|
|
// exception type
|
2009-09-09 00:55:55 +00:00
|
|
|
setType( type(
|
2009-09-15 07:12:54 +00:00
|
|
|
group.readEntry( OxygenConfig::TYPE,
|
2009-09-09 06:14:01 +00:00
|
|
|
default_configuration.typeName( false ) ), false ) );
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
// exception pattern
|
2009-09-15 07:12:54 +00:00
|
|
|
regExp().setPattern( group.readEntry( OxygenConfig::PATTERN, QString() ) );
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
// enability
|
|
|
|
setEnabled(
|
2009-09-15 07:12:54 +00:00
|
|
|
group.readEntry( OxygenConfig::ENABLED,
|
2009-08-22 08:24:06 +00:00
|
|
|
default_configuration.enabled() ) );
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
// exception mask
|
2009-09-09 00:55:55 +00:00
|
|
|
setMask(
|
2009-09-15 07:12:54 +00:00
|
|
|
group.readEntry( OxygenConfig::MASK,
|
2009-08-22 08:24:06 +00:00
|
|
|
default_configuration.mask() ) );
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
}
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
//_______________________________________________________
|
2010-05-02 18:34:08 +00:00
|
|
|
void Exception::write( KConfigGroup& group ) const
|
2009-08-22 08:24:06 +00:00
|
|
|
{
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2010-05-02 18:34:08 +00:00
|
|
|
Configuration::write( group );
|
2009-09-15 07:12:54 +00:00
|
|
|
group.writeEntry( OxygenConfig::TYPE, typeName( false ) );
|
|
|
|
group.writeEntry( OxygenConfig::PATTERN, regExp().pattern() );
|
|
|
|
group.writeEntry( OxygenConfig::ENABLED, enabled() );
|
|
|
|
group.writeEntry( OxygenConfig::MASK, mask() );
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
}
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
//_______________________________________________________
|
2010-05-02 18:34:08 +00:00
|
|
|
QString Exception::typeName( Type type, bool translated )
|
2009-08-22 08:24:06 +00:00
|
|
|
{
|
|
|
|
switch( type )
|
|
|
|
{
|
2009-09-09 06:14:01 +00:00
|
|
|
case WindowTitle: return translated ? i18n( "Window Title" ):"Window Title";
|
|
|
|
case WindowClassName: return translated ? i18n( "Window Class Name" ):"Window Class Name";
|
2009-08-22 08:24:06 +00:00
|
|
|
default: assert( false );
|
|
|
|
}
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
return QString();
|
|
|
|
}
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
//_______________________________________________________
|
2010-05-02 18:34:08 +00:00
|
|
|
Exception::Type Exception::type( const QString& value, bool translated )
|
2009-08-22 08:24:06 +00:00
|
|
|
{
|
2009-09-09 06:14:01 +00:00
|
|
|
if( value == typeName( WindowTitle, translated ) ) return WindowTitle;
|
|
|
|
else if( value == typeName( WindowClassName, translated ) ) return WindowClassName;
|
2009-08-22 08:24:06 +00:00
|
|
|
else return WindowClassName;
|
|
|
|
}
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-24 06:27:49 +00:00
|
|
|
}
|