summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/ppp/PPPIPedit.cpp
blob: 6965e5a879bbc03e578fbd8f0bed1bba08f79db3 (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
#include <qmessagebox.h>
#include <qcheckbox.h>
#include <qradiobutton.h>
#include <qlineedit.h>
#include <GUIUtils.h>
#include "PPPIPedit.h"

PPPIPEdit::PPPIPEdit( QWidget * Parent ) : PPPIPGUI( Parent ){
}

QString PPPIPEdit::acceptable( void ) {
    if( IPFixed_RB->isChecked() ) {
      if( IPAddress_LE->text().isEmpty() )
        return tr("IPAddress needed" );
      if( ! validIP( IPAddress_LE->text() ) )
        return tr("IPAddress not valid" );
      if( IPSubMask_LE->text().isEmpty() )
        return tr("Subnet mask needed" );
      if( ! validIP( IPSubMask_LE->text() ) )
        return tr("Subnet mask not valid" );
    } else if( GWFixed_RB->isChecked() ) {
      if( GWAddress_LE->text().isEmpty() )
        return tr("Gateway address needed" );
      if( ! validIP( GWAddress_LE->text() ) )
        return tr("Gateway address not valid" );
    };

    return QString();
}

bool PPPIPEdit::commit( PPPData_t & D ) {

      bool SM = 0;

      CBM( D.IP.IPAutomatic, IPServerAssigned_RB, SM );
      if( ! D.IP.IPAutomatic ) {
        TXTM( D.IP.IPAddress, IPAddress_LE, SM );
        TXTM( D.IP.IPSubMask, IPSubMask_LE, SM );
      }

      CBM( D.IP.GWAutomatic, GWServerAssigned_RB, SM );
      if( ! D.IP.GWAutomatic ) {
        TXTM( D.IP.GWAddress, GWAddress_LE, SM );
      }

      CBM( D.IP.GWIsDefault, GWIsDefault_CB, SM );
      return SM;
}

void PPPIPEdit::showData( PPPData_t & D ) {
      IPServerAssigned_RB->setChecked( D.IP.IPAutomatic );
      IPAddress_LE->setText( D.IP.IPAddress );
      IPSubMask_LE->setText( D.IP.IPSubMask );
      GWServerAssigned_RB->setChecked( D.IP.GWAutomatic );
      GWAddress_LE->setText( D.IP.GWAddress );
      GWIsDefault_CB->setChecked( D.IP.GWIsDefault );
}