add more spacing
[personal-kdebase.git] / workspace / khotkeys / libkhotkeysprivate / conditions / and_condition.cpp
blobd5d2a37b08c9a60d72cedcdc033c92a59539327a
1 /*
2 Copyright (C) 1999-2001 Lubos Lunak <l.lunak@kde.org>
3 Copyright (C) 2008 Michael Jansen <kde@michael-jansen.biz>
5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public
7 License version 2 as published by the Free Software Foundation.
9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #include "conditions.h"
22 #include <KDE/KConfigGroup>
24 namespace KHotKeys {
26 And_condition::And_condition( KConfigGroup& cfg_P, Condition_list_base* parent_P )
27 : Condition_list_base( cfg_P, parent_P )
29 // CHECKME kontrola poctu ?
32 bool And_condition::match() const
34 for( Iterator it( *this );
35 it;
36 ++it )
37 if( !it.current()->match()) // AND
38 return false;
39 return true; // all true (or empty)
42 void And_condition::cfg_write( KConfigGroup& cfg_P ) const
44 base::cfg_write( cfg_P );
45 cfg_P.writeEntry( "Type", "AND" ); // overwrites value set in base::cfg_write()
48 And_condition* And_condition::copy( Condition_list_base* parent_P ) const
50 And_condition* ret = new And_condition( parent_P );
51 for( Iterator it( *this );
52 it;
53 ++it )
54 ret->append( (*it)->copy( ret ));
55 return ret;
58 const QString And_condition::description() const
60 return i18nc( "And_condition", "And" );
63 } // namespace KHotKeys