delay a few things on startup, such as setting the visibility mode, which ensures...
[personal-kdebase.git] / runtime / knetattach / knetattach.h
blobe9b66d75e42eb2c7f4c3499850851dc69d934e9f
1 /*
2 Copyright (C) 2004 George Staikos <staikos@kde.org>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This program 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 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; see the file COPYING. If not, write to
16 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 Boston, MA 02110-1301, USA.
20 #ifndef KNETATTACH_H
21 #define KNETATTACH_H
23 #include "ui_knetattach.h"
25 class KNetAttach : public Q3Wizard, private Ui_KNetAttach
27 Q_OBJECT
29 public:
30 KNetAttach( QWidget* parent = 0 );
32 public slots:
33 virtual void setInformationText( const QString & type );
35 private:
36 QString _type;
38 bool doConnectionTest( const KUrl & url );
39 bool updateForProtocol( const QString & protocol );
41 private slots:
42 void showPage( QWidget * page );
43 void updateParametersPageStatus();
44 void finished();
45 void updatePort( bool encryption );
46 void updateFinishButtonText( bool save );
47 void slotHelpClicked();
50 #endif