mask xy scale, mask boundary only overlay, fix 8 char mask nm bug, rework maskgui...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / confirmquit.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #include "confirmquit.h"
23 #include "keys.h"
24 #include "language.h"
25 #include "mwindow.h"
26 #include "mwindowgui.h"
27 #include "theme.h"
28
29 #include <ctype.h>
30
31
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),
36         375,
37         160)
38 {
39         this->mwindow = mwindow;
40 }
41
42 ConfirmQuitWindow::~ConfirmQuitWindow()
43 {
44 }
45
46 void ConfirmQuitWindow::create_objects(char *string)
47 {
48         int x = 10, y = 10;
49         BC_Title *title;
50
51         lock_window("ConfirmQuitWindow::create_objects");
52         add_subwindow(title = new BC_Title(x, y, string));
53         y += title->get_h();
54         add_subwindow(title = new BC_Title(x, y, _("( Answering \"No\" will destroy changes )")));
55
56         add_subwindow(new ConfirmQuitYesButton(mwindow, this));
57         add_subwindow(new ConfirmQuitNoButton(mwindow, this));
58         add_subwindow(new ConfirmQuitCancelButton(mwindow, this));
59         show_window(1);
60         unlock_window();
61 }
62
63 ConfirmQuitYesButton::ConfirmQuitYesButton(MWindow *mwindow,
64         ConfirmQuitWindow *gui)
65  : BC_GenericButton(10,
66         gui->get_h() - BC_GenericButton::calculate_h() - 10,
67         _("Yes"))
68 {
69         set_underline(0);
70 }
71
72 int ConfirmQuitYesButton::handle_event()
73 {
74         set_done(2);
75         return 1;
76 }
77
78 int ConfirmQuitYesButton::keypress_event()
79 {
80         if( toupper(get_keypress()) == *get_text() )
81                 return handle_event();
82         return 0;
83 }
84
85 ConfirmQuitNoButton::ConfirmQuitNoButton(MWindow *mwindow,
86         ConfirmQuitWindow *gui)
87  : BC_GenericButton(gui->get_w() / 2 - BC_GenericButton::calculate_w(gui, _("No")) / 2,
88         gui->get_h() - BC_GenericButton::calculate_h() - 10,
89         _("No"))
90 {
91         set_underline(0);
92 }
93
94 int ConfirmQuitNoButton::handle_event()
95 {
96         set_done(0);
97         return 1;
98 }
99
100 int ConfirmQuitNoButton::keypress_event()
101 {
102         if( toupper(get_keypress()) == *get_text() )
103                 return handle_event();
104         return 0;
105 }
106
107 ConfirmQuitCancelButton::ConfirmQuitCancelButton(MWindow *mwindow,
108         ConfirmQuitWindow *gui)
109  : BC_GenericButton(gui->get_w() - BC_GenericButton::calculate_w(gui, _("Cancel")) - 10,
110         gui->get_h() - BC_GenericButton::calculate_h() - 10,
111         _("Cancel"))
112 {
113 }
114
115 int ConfirmQuitCancelButton::handle_event()
116 {
117         set_done(1);
118         return 1;
119 }
120
121 int ConfirmQuitCancelButton::keypress_event()
122 {
123         if(get_keypress() == ESC) return handle_event();
124         return 0;
125 }
126