4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include "confirmquit.h"
26 #include "mwindowgui.h"
32 ConfirmQuitWindow::ConfirmQuitWindow(MWindow *mwindow)
33 : BC_Window(_(PROGRAM_NAME ": Confirm Quit"),
34 mwindow->gui->get_abs_cursor_x(1),
35 mwindow->gui->get_abs_cursor_y(1),
39 this->mwindow = mwindow;
42 ConfirmQuitWindow::~ConfirmQuitWindow()
46 void ConfirmQuitWindow::create_objects(char *string)
51 lock_window("ConfirmQuitWindow::create_objects");
52 add_subwindow(title = new BC_Title(x, y, string));
54 add_subwindow(title = new BC_Title(x, y, _("( Answering \"No\" will destroy changes )")));
56 add_subwindow(new ConfirmQuitYesButton(mwindow, this));
57 add_subwindow(new ConfirmQuitNoButton(mwindow, this));
58 add_subwindow(new ConfirmQuitCancelButton(mwindow, this));
63 ConfirmQuitYesButton::ConfirmQuitYesButton(MWindow *mwindow,
64 ConfirmQuitWindow *gui)
65 : BC_GenericButton(10,
66 gui->get_h() - BC_GenericButton::calculate_h() - 10,
72 int ConfirmQuitYesButton::handle_event()
78 int ConfirmQuitYesButton::keypress_event()
80 if(get_keypress() == 'y') return handle_event();
84 ConfirmQuitNoButton::ConfirmQuitNoButton(MWindow *mwindow,
85 ConfirmQuitWindow *gui)
86 : BC_GenericButton(gui->get_w() / 2 - BC_GenericButton::calculate_w(gui, _("No")) / 2,
87 gui->get_h() - BC_GenericButton::calculate_h() - 10,
93 int ConfirmQuitNoButton::handle_event()
99 int ConfirmQuitNoButton::keypress_event()
101 if(get_keypress() == 'n') return handle_event();
105 ConfirmQuitCancelButton::ConfirmQuitCancelButton(MWindow *mwindow,
106 ConfirmQuitWindow *gui)
107 : BC_GenericButton(gui->get_w() - BC_GenericButton::calculate_w(gui, _("Cancel")) - 10,
108 gui->get_h() - BC_GenericButton::calculate_h() - 10,
113 int ConfirmQuitCancelButton::handle_event()
119 int ConfirmQuitCancelButton::keypress_event()
121 if(get_keypress() == ESC) return handle_event();