merge in my changes from soc-krdc branch
[kdenetwork.git] / krdc / hostprofiles.h
blob62f823291e015054854138f25e3872d305602810
1 /***************************************************************************
2 * *
3 * This program is free software; you can redistribute it and/or modify *
4 * it under the terms of the GNU General Public License as published by *
5 * the Free Software Foundation; either version 2 of the License, or *
6 * (at your option) any later version. *
7 * *
8 ***************************************************************************/
10 #ifndef HOSTPROFILES_H
11 #define HOSTPROFILES_H
13 #include "ui_hostprofiles.h"
14 #include <QWidget>
17 Host profiles (options) dialog
19 class HostProfiles : public QWidget, public Ui::HostProfiles
21 Q_OBJECT
23 public:
24 HostProfiles(QWidget* parent = 0);
25 ~HostProfiles();
27 void load();
28 void save();
30 public slots:
31 void removeHost();
32 void removeAllHosts();
33 void selectionChanged();
35 private:
36 HostPrefPtrList deletedHosts;
39 #endif // HOSTPROFILES_H