mailtransport
transportmanagementwidget.h
00001 /* 00002 Copyright (c) 2006 - 2007 Volker Krause <vkrause@kde.org> 00003 00004 Based on KMail code by: 00005 Copyright (C) 2001-2003 Marc Mutz <mutz@kde.org> 00006 00007 This library is free software; you can redistribute it and/or modify it 00008 under the terms of the GNU Library General Public License as published by 00009 the Free Software Foundation; either version 2 of the License, or (at your 00010 option) any later version. 00011 00012 This library is distributed in the hope that it will be useful, but WITHOUT 00013 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00014 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public 00015 License for more details. 00016 00017 You should have received a copy of the GNU Library General Public License 00018 along with this library; see the file COPYING.LIB. If not, write to the 00019 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00020 02110-1301, USA. 00021 */ 00022 00023 #ifndef MAILTRANSPORT_TRANSPORTMANAGEMENTWIDGET_H 00024 #define MAILTRANSPORT_TRANSPORTMANAGEMENTWIDGET_H 00025 00026 #include <mailtransport/mailtransport_export.h> 00027 00028 #include <QtGui/QWidget> 00029 00030 namespace MailTransport { 00031 00035 class MAILTRANSPORT_EXPORT TransportManagementWidget : public QWidget 00036 { 00037 Q_OBJECT 00038 00039 public: 00044 TransportManagementWidget( QWidget *parent = 0 ); 00045 00049 virtual ~TransportManagementWidget(); 00050 00051 private: 00052 class Private; 00053 Private * const d; 00054 Q_PRIVATE_SLOT( d, void defaultClicked() ) 00055 Q_PRIVATE_SLOT( d, void removeClicked() ) 00056 Q_PRIVATE_SLOT( d, void renameClicked() ) 00057 Q_PRIVATE_SLOT( d, void editClicked() ) 00058 Q_PRIVATE_SLOT( d, void addClicked() ) 00059 Q_PRIVATE_SLOT( d, void updateButtonState() ) 00060 }; 00061 00062 } // namespace MailTransport 00063 00064 #endif // MAILTRANSPORT_TRANSPORTMANAGEMENTWIDGET_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Aug 27 2012 22:09:04 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Mon Aug 27 2012 22:09:04 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.