#include "mainwnd.h" #include "clientwidget.h" #include "proxywidget.h" #include "connectdlg.h" #include "setupproxydlg.h" MainWnd::MainWnd() { setupUi( this ); } MainWnd::~MainWnd() { } void MainWnd::connect() { ConnectDlg dlg( this ); if( dlg.exec() == QDialog::Accepted ) { setCentralWidget( new ClientWidget( this, dlg.getHostname(), dlg.getPort() ) ); } } void MainWnd::proxy() { SetupProxyDlg dlg( this ); if( dlg.exec() == QDialog::Accepted ) { setCentralWidget( new ProxyWidget( this, dlg.getPortIn(), dlg.getHostOut(), dlg.getPortOut() ) ); } } void MainWnd::open() { }