KissCount/src/view/PasswordDialog.cpp

92 lines
3.0 KiB
C++
Raw Normal View History

2010-07-10 16:34:30 +02:00
/*
Copyright 2010-2011 Grégory Soutadé
2010-07-10 16:34:30 +02:00
This file is part of KissCount.
2010-07-10 16:34:30 +02:00
KissCount 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 3 of the License, or
(at your option) any later version.
2010-07-10 16:34:30 +02:00
KissCount 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.
2010-07-10 16:34:30 +02:00
You should have received a copy of the GNU General Public License
along with KissCount. If not, see <http://www.gnu.org/licenses/>.
2010-07-10 16:34:30 +02:00
*/
2010-06-27 21:40:33 +02:00
#include "PasswordDialog.h"
enum {BUTTON_OK_ID=1, BUTTON_CANCEL_ID, OLD_PASSWORD_ID, NEW_PASSWORD_ID, CONFIRM_PASSWORD_ID};
BEGIN_EVENT_TABLE(PasswordDialog, wxDialog)
EVT_BUTTON(BUTTON_OK_ID, PasswordDialog::OnOK)
EVT_BUTTON(BUTTON_CANCEL_ID, PasswordDialog::OnCancel)
END_EVENT_TABLE()
PasswordDialog::PasswordDialog(KissCount* kiss, wxUI *parent) : wxDialog(&(*parent), wxID_ANY, _("Change password")), _kiss(kiss), _wxUI(parent)
2010-06-27 21:40:33 +02:00
{
wxGridBagSizer *gridBagSizer;
wxStaticText* label;
2010-06-27 21:40:33 +02:00
gridBagSizer = new wxGridBagSizer(5, 3);
2010-06-27 21:40:33 +02:00
label = new wxStaticText(this, wxID_ANY, _("Old password "));
gridBagSizer->Add(label, wxGBPosition(0, 0));
_oldPassword = new wxTextCtrl(this, OLD_PASSWORD_ID);
gridBagSizer->Add(_oldPassword, wxGBPosition(0, 1));
2010-06-27 21:40:33 +02:00
label = new wxStaticText(this, wxID_ANY, _("New password "));
gridBagSizer->Add(label, wxGBPosition(1, 0));
_newPassword = new wxTextCtrl(this, NEW_PASSWORD_ID);
gridBagSizer->Add(_newPassword, wxGBPosition(1, 1));
2010-06-27 21:40:33 +02:00
label = new wxStaticText(this, wxID_ANY, _("Confirm password "));
gridBagSizer->Add(label, wxGBPosition(2, 0));
_confirmPassword = new wxTextCtrl(this, CONFIRM_PASSWORD_ID);
gridBagSizer->Add(_confirmPassword, wxGBPosition(2, 1));
2010-06-27 21:40:33 +02:00
_oldPassword->SetWindowStyle(wxTE_PASSWORD);
_newPassword->SetWindowStyle(wxTE_PASSWORD);
_confirmPassword->SetWindowStyle(wxTE_PASSWORD);
2010-06-27 21:40:33 +02:00
wxButton* ok = new wxButton(this, BUTTON_OK_ID, _("OK"));
wxButton* cancel = new wxButton(this, BUTTON_CANCEL_ID, _("Cancel"));
gridBagSizer->Add(ok, wxGBPosition(4, 1));
gridBagSizer->Add(cancel, wxGBPosition(4, 2));
2010-06-27 21:40:33 +02:00
SetSizer(gridBagSizer);
2010-06-27 21:40:33 +02:00
Layout();
Center();
2010-06-27 21:40:33 +02:00
}
void PasswordDialog::OnOK(wxCommandEvent& event)
{
User* user = _kiss->GetUser();
2010-06-27 21:40:33 +02:00
if (!_kiss->IsValidUser(user->_name, _oldPassword->GetLineText(0)))
2010-06-27 21:40:33 +02:00
{
wxMessageBox(_("Invalid old password"), _("Error"), wxICON_ERROR | wxOK);
return;
2010-06-27 21:40:33 +02:00
}
if (_newPassword->GetLineText(0) != _confirmPassword->GetLineText(0))
2010-06-27 21:40:33 +02:00
{
wxMessageBox(_("Please retype new password"), _("Error"), wxICON_ERROR | wxOK);
return;
2010-06-27 21:40:33 +02:00
}
_kiss->ChangePassword(_newPassword->GetLineText(0));
2010-06-27 21:40:33 +02:00
wxMessageBox(_("Password changed"), wxT("KissCount"), wxICON_INFORMATION | wxOK);
Close();
2010-06-27 21:40:33 +02:00
}
void PasswordDialog::OnCancel(wxCommandEvent& event)
{
Close();
2010-06-27 21:40:33 +02:00
}