summaryrefslogtreecommitdiffstats
path: root/lanbrowsing/kcmlisa/setupwizard.h
blob: b85d61c4a017f2c4fb048c268b76db17c497b39c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 * main.cpp for lisa,reslisa,kio_lan and kio_rlan kcm module
 *
 *  Copyright (C) 2000 Alexander Neundorf <neundorf@kde.org>
 *
 *  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 Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef LISA_SETUPWIZARD_H
#define LISA_SETUPWIZARD_H

#include "kcmlisa.h"
#include "kcmreslisa.h"
#include "kcmkiolan.h"

#include "findnic.h"

#include <qspinbox.h>
#include <qcheckbox.h>
#include <krestrictedline.h>
#include <qwizard.h>
#include <kglobal.h>
#include <qlayout.h>
#include <qlabel.h>
#include <qlistbox.h>
#include <qvbox.h>

#include <kcmodule.h>


class SetupWizard:public QWizard
{
   Q_OBJECT
   public:
      SetupWizard(QWidget* parent, LisaConfigInfo* configInfo);
      ~SetupWizard();
      virtual void showPage(QWidget* page);
      void clearAll();
   protected slots:
      virtual void next();
      virtual void accept();
      void checkIPAddress(const QString& address);
   protected:
      void applyLisaConfigInfo(LisaConfigInfo& lci);

      void setupPage1();
      void setupNoNicPage();
      void setupMultiNicPage();
      void setupSearchPage();
      void setupAddressesPage();
      void setupAllowedPage();
      void setupBcastPage();
      void setupUpdateIntervalPage();
      void setupAdvancedSettingsPage();
      void setupFinalPage();
      void setupRest();

      QVBox* m_page1;
      QVBox* m_noNicPage;
      QVBox* m_multiNicPage;
      QVBox* m_searchPage;
      QVBox* m_addressesPage;
      QVBox* m_allowedAddressesPage;
      QVBox* m_bcastPage;
      QVBox* m_intervalPage;
      QVBox* m_advancedPage;
      QVBox* m_finalPage;


      QListBox *m_nicListBox;
      QLabel *m_trustedHostsLabel;
      QCheckBox *m_ping;
      QCheckBox *m_nmblookup;
      KRestrictedLine* m_pingAddresses;
      KRestrictedLine* m_allowedAddresses;
      KRestrictedLine* m_bcastAddress;
      KRestrictedLine* m_manualAddress;
      QSpinBox* m_updatePeriod;
      QCheckBox* m_deliverUnnamedHosts;
      QSpinBox* m_firstWait;
      QSpinBox* m_maxPingsAtOnce;
      QCheckBox* m_secondScan;
      QSpinBox* m_secondWait;

      NICList* m_nics;
      LisaConfigInfo* m_configInfo;
};


#endif