mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-28 16:01:10 +02:00
Origin commit data
------------------
Commit: af90286a30
Author: vanhofen <vanhofen@gmx.de>
Date: 2015-05-15 (Fri, 15 May 2015)
Origin message was:
------------------
- start_wizard: use a global enum; switch detection from bool to int
134 lines
3.3 KiB
C++
134 lines
3.3 KiB
C++
/*
|
|
$port: network_setup.h,v 1.3 2009/11/22 15:36:52 tuxbox-cvs Exp $
|
|
|
|
network setup implementation - Neutrino-GUI
|
|
|
|
Copyright (C) 2001 Steffen Hehn 'McClean'
|
|
and some other guys
|
|
Homepage: http://dbox.cyberphoria.org/
|
|
|
|
Copyright (C) 2009 T. Graf 'dbt'
|
|
Homepage: http://www.dbox2-tuning.net/
|
|
|
|
License: GPL
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
#ifndef __network_setup__
|
|
#define __network_setup__
|
|
|
|
#include <gui/widget/menue.h>
|
|
|
|
#include <system/setting_helpers.h>
|
|
#include <system/configure_network.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
class CNetworkSetup : public CMenuTarget, CChangeObserver
|
|
{
|
|
private:
|
|
CNetworkConfig *networkConfig;
|
|
|
|
int width;
|
|
int is_wizard;
|
|
|
|
int network_dhcp;
|
|
int network_automatic_start;
|
|
std::string network_address;
|
|
std::string network_netmask;
|
|
std::string network_broadcast;
|
|
std::string network_nameserver;
|
|
std::string network_gateway;
|
|
std::string network_hostname;
|
|
std::string network_ssid;
|
|
std::string network_key;
|
|
std::string mac_addr;
|
|
|
|
int old_network_dhcp;
|
|
int old_network_automatic_start;
|
|
std::string old_network_address;
|
|
std::string old_network_netmask;
|
|
std::string old_network_broadcast;
|
|
std::string old_network_nameserver;
|
|
std::string old_network_gateway;
|
|
std::string old_network_hostname;
|
|
std::string old_ifname;
|
|
std::string old_network_ssid;
|
|
std::string old_network_key;
|
|
std::string old_mac_addr;
|
|
|
|
|
|
CGenericMenuActivate dhcpDisable;
|
|
CGenericMenuActivate wlanEnable;
|
|
|
|
CSectionsdConfigNotifier* sectionsdConfigNotifier;
|
|
|
|
void restoreNetworkSettings();
|
|
void prepareSettings();
|
|
void readNetworkSettings();
|
|
void backupNetworkSettings();
|
|
int showNetworkSetup();
|
|
void showNetworkNTPSetup(CMenuWidget *menu_ntp);
|
|
void showNetworkNFSMounts(CMenuWidget *menu_nfs);
|
|
int saveChangesDialog();
|
|
void applyNetworkSettings();
|
|
void saveNetworkSettings();
|
|
int showWlanList();
|
|
|
|
bool checkIntSettings();
|
|
bool checkStringSettings();
|
|
bool checkForIP();
|
|
bool settingsChanged();
|
|
const char * mypinghost(std::string &host);
|
|
void setBroadcast(void);
|
|
|
|
public:
|
|
enum NETWORK_DHCP_MODE
|
|
{
|
|
NETWORK_DHCP_OFF = 0, //static
|
|
NETWORK_DHCP_ON = 1
|
|
};
|
|
|
|
enum NETWORK_START_MODE
|
|
{
|
|
NETWORK_AUTOSTART_OFF = 0,
|
|
NETWORK_AUTOSTART_ON = 1
|
|
};
|
|
|
|
enum NETWORK_NTP_MODE
|
|
{
|
|
NETWORK_NTP_OFF = 0,
|
|
NETWORK_NTP_ON = 1
|
|
};
|
|
|
|
CNetworkSetup(int wizard_mode = SNeutrinoSettings::WIZARD_OFF);
|
|
~CNetworkSetup();
|
|
|
|
static CNetworkSetup* getInstance();
|
|
|
|
void setWizardMode(int mode) {is_wizard = mode;};
|
|
|
|
int exec(CMenuTarget* parent, const std::string & actionKey);
|
|
virtual bool changeNotify(const neutrino_locale_t, void * Data);
|
|
void showCurrentNetworkSettings();
|
|
void testNetworkSettings();
|
|
};
|
|
|
|
|
|
#endif
|