kmobiletools
connectionsPage.cpp
Go to the documentation of this file.00001 /*************************************************************************** 00002 Copyright (C) 2007 00003 by Marco Gulino <marco@kmobiletools.org> 00004 00005 This program is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation; either version 2 of the License, or 00008 (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the 00017 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 Boston, MA 02110-1301, USA. 00019 ***************************************************************************/ 00020 #include "connectionsPage.h" 00021 #include "ui_connectionsPage.h" 00022 00023 class ConnectionsPagePrivate { 00024 public: 00025 ConnectionsPagePrivate() {} 00026 Ui::connectionsPage *wizPage; 00027 }; 00028 00029 ConnectionsPage::ConnectionsPage( QWidget * parent ) 00030 : QWizardPage(parent), d(new ConnectionsPagePrivate) 00031 { 00032 d->wizPage=new Ui::connectionsPage; 00033 d->wizPage->setupUi(this); 00034 } 00035 00036 QListWidget *ConnectionsPage::connections() 00037 { 00038 return d->wizPage->lv_connections; 00039 } 00040 00041 QTabWidget *ConnectionsPage::details() { 00042 return d->wizPage->detailsTab; 00043 } 00044 00045 00046 #include "connectionsPage.moc" 00047 00048
KDE 4.2 API Reference