mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 03:08:36 +12:00
76 lines
2.4 KiB
C++
76 lines
2.4 KiB
C++
#include "stdafx_gui.h"
|
|
|
|
#include "SignInDialog.h"
|
|
|
|
// TODO: Make this look and work more reasonably
|
|
void SignInDialogFrame::Create()
|
|
{
|
|
wxWindow* parent = nullptr; // TODO: align the window better
|
|
|
|
m_dialog = std::make_unique<wxDialog>(parent, wxID_ANY, "Sign in", wxDefaultPosition, wxDefaultSize);
|
|
static const u32 width = 300;
|
|
static const u32 height = 98;
|
|
|
|
wxNotebook* nb_config = new wxNotebook(m_dialog.get(), wxID_ANY, wxPoint(2, 2), wxSize(width, height));
|
|
wxPanel* p_esn = new wxPanel(nb_config, wxID_ANY);
|
|
wxPanel* p_psn = new wxPanel(nb_config, wxID_ANY);
|
|
|
|
wxButton* b_signin = new wxButton(p_esn, wxID_OK, "Fake sign in");
|
|
wxButton* b_cancel = new wxButton(p_esn, wxID_CANCEL, "Cancel");
|
|
|
|
nb_config->AddPage(p_esn, wxT("ESN"));
|
|
nb_config->AddPage(p_psn, wxT("PSN"));
|
|
|
|
wxBoxSizer* s_subpanel_esn = new wxBoxSizer(wxVERTICAL);
|
|
wxBoxSizer* s_subpanel_psn = new wxBoxSizer(wxVERTICAL);
|
|
|
|
wxStaticText* esn_unimplemented = new wxStaticText(p_esn, wxID_ANY, "ESN support is not ready yet.");
|
|
wxStaticText* psn_unimplemented = new wxStaticText(p_psn, wxID_ANY, "PSN support is not yet implemented.");
|
|
|
|
// ESN
|
|
s_subpanel_esn->Add(esn_unimplemented, wxSizerFlags().Centre());
|
|
s_subpanel_esn->Add(b_signin, wxSizerFlags().Left().Border(5).Expand());
|
|
s_subpanel_esn->Add(b_cancel, wxSizerFlags().Right().Border(5).Expand());
|
|
|
|
// PSN
|
|
s_subpanel_psn->Add(psn_unimplemented, wxSizerFlags().Centre());
|
|
|
|
m_dialog->SetSizerAndFit(s_subpanel_esn, false);
|
|
m_dialog->SetSizerAndFit(s_subpanel_psn, false);
|
|
|
|
m_dialog->SetSize(width + 18, height + 42);
|
|
|
|
m_dialog->Centre(wxBOTH);
|
|
m_dialog->Show();
|
|
m_dialog->Enable();
|
|
//m_dialog->ShowModal();
|
|
|
|
b_signin->Bind(wxEVT_BUTTON, [&](wxCommandEvent& event)
|
|
{
|
|
//this->status = CELL_OK;
|
|
this->m_dialog->Hide();
|
|
//this->Close();
|
|
//sysutilSendSystemCommand(CELL_SYSUTIL_NET_CTL_NETSTART_FINISHED, 0);
|
|
});
|
|
|
|
b_cancel->Bind(wxEVT_BUTTON, [&](wxCommandEvent& event)
|
|
{
|
|
//this->status = CELL_NET_CTL_ERROR_DIALOG_CANCELED;
|
|
this->m_dialog->Hide();
|
|
//this->Close();
|
|
//sysutilSendSystemCommand(CELL_SYSUTIL_NET_CTL_NETSTART_FINISHED, 0);
|
|
});
|
|
|
|
m_dialog->Bind(wxEVT_CLOSE_WINDOW, [&](wxCloseEvent& event)
|
|
{
|
|
//this->status = CELL_NET_CTL_ERROR_DIALOG_CANCELED;
|
|
this->m_dialog->Hide();
|
|
//this->Close();
|
|
//sysutilSendSystemCommand(CELL_SYSUTIL_NET_CTL_NETSTART_FINISHED, 0);
|
|
});
|
|
}
|
|
|
|
void SignInDialogFrame::Destroy()
|
|
{
|
|
m_dialog.reset();
|
|
}
|