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>
26 Not_condition::Not_condition( KConfigGroup
& cfg_P
, Condition_list_base
* parent_P
)
27 : Condition_list_base( cfg_P
, parent_P
)
29 // CHECKME kontrola poctu ?
32 bool Not_condition::match() const
34 return condition() ? !condition()->match() : false;
37 void Not_condition::cfg_write( KConfigGroup
& cfg_P
) const
39 base::cfg_write( cfg_P
);
40 cfg_P
.writeEntry( "Type", "NOT" ); // overwrites value set in base::cfg_write()
43 Not_condition
* Not_condition::copy( Condition_list_base
* parent_P
) const
45 Not_condition
* ret
= new Not_condition( parent_P
);
47 ret
->append( condition()->copy( ret
));
51 const QString
Not_condition::description() const
53 return i18nc( "Not_condition", "Not" );
56 bool Not_condition::accepts_children() const
61 } // namespace KHotKeys