kexi

kexidbdrivercombobox.cpp

00001 /* This file is part of the KDE project
00002    Copyright (C) 2005 Jaroslaw Staniek <js@iidea.pl>
00003 
00004    This library is free software; you can redistribute it and/or
00005    modify it under the terms of the GNU Library General Public
00006    License as published by the Free Software Foundation; either
00007    version 2 of the License, or (at your option) any later version.
00008 
00009    This library is distributed in the hope that it will be useful,
00010    but WITHOUT ANY WARRANTY; without even the implied warranty of
00011    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012    Library General Public License for more details.
00013 
00014    You should have received a copy of the GNU Library General Public License
00015    along with this library; see the file COPYING.LIB.  If not, write to
00016    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00017  * Boston, MA 02110-1301, USA.
00018 */
00019 
00020 #include "kexidbdrivercombobox.h"
00021 
00022 #include <qlistbox.h>
00023 
00024 #include <kiconloader.h>
00025 
00026 KexiDBDriverComboBox::KexiDBDriverComboBox(const KexiDB::Driver::InfoMap& driversInfo, 
00027     bool includeFileBasedDrivers, QWidget* parent, const char* name)
00028  : KComboBox(parent, name)
00029 {
00030     foreach(KexiDB::Driver::InfoMap::ConstIterator, it, driversInfo) {
00031         if (!includeFileBasedDrivers && it.data().fileBased)
00032             continue;
00034         insertItem( SmallIcon("gear"), it.data().caption );
00035         m_driversMap.insert(it.data().caption, it.data().name.lower());
00036     }
00037     if (listBox())
00038         listBox()->sort();
00039 
00040     // Build the names list after sorting
00041     for (int i=0; i<count(); i++)
00042         m_driverNames += m_driversMap[ text(i) ];
00043 }
00044 
00045 KexiDBDriverComboBox::~KexiDBDriverComboBox()
00046 {
00047 }
00048 
00049 QString KexiDBDriverComboBox::selectedDriverName() const
00050 {
00051     QMapConstIterator<QString,QString> it( m_driversMap.find( text( currentItem() ) ) );
00052     if (it==m_driversMap.constEnd())
00053         return QString::null;
00054     return it.data();
00055 }
00056 
00057 void KexiDBDriverComboBox::setDriverName(const QString& driverName)
00058 {
00059     int index = m_driverNames.findIndex( driverName.lower() );
00060     if (index==-1) {
00061         return;
00062     }
00063     setCurrentItem(index);
00064 }
00065 
00066 #include "kexidbdrivercombobox.moc"
KDE Home | KDE Accessibility Home | Description of Access Keys