diff options
Diffstat (limited to 'src/altcontroller.cpp')
| -rw-r--r-- | src/altcontroller.cpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/altcontroller.cpp b/src/altcontroller.cpp new file mode 100644 index 0000000..3aae52a --- /dev/null +++ b/src/altcontroller.cpp @@ -0,0 +1,53 @@ +/*************************************************************************** + * Copyright (C) 2004 by Mario Bensi * + * nef@ipsquad.net * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program 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 General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Steet, Fifth Floor, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "altcontroller.h" +#include "altitemelement.h" +#include "treeitemelement.h" + +AltController::AltController() +{ + m_altItemslist = new AltItemList; +} + +AltController::~AltController() +{ + if(m_altItemslist) delete m_altItemslist; +} + + +void AltController::setBoutonOnOff(KListView *list, AltItemElement *altItem) +{ + QListViewItemIterator it( list ); + AltItemElement *alt; + while ( it.current() ) + { + if((alt = dynamic_cast<AltItemElement *>(it.current()))) + { + if((alt!=altItem) && alt->isOn()) + { + alt->setState(QCheckListItem::Off); + } + } + ++it; + } + +} +//#include "altcontroller.moc" |
