confirm prefs update, fix bg_pixmap sz, plugin layout tweaks
[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         xS(375), yS(160))
37 {
38         this->mwindow = mwindow;
39 }
40
41 ConfirmQuitWindow::~ConfirmQuitWindow()
42 {
43 }
44
45 void ConfirmQuitWindow::create_objects(char *string)
46 {
47         int x = xS(10), y = yS(10);
48         BC_Title *title;
49
50         lock_window("ConfirmQuitWindow::create_objects");
51         add_subwindow(title = new BC_Title(x, y, string));
52         y += title->get_h();
53         add_subwindow(title = new BC_Title(x, y, _("( Answering \"No\" will destroy changes )")));
54
55         add_subwindow(new ConfirmQuitYesButton(mwindow, this));
56         add_subwindow(new ConfirmQuitNoButton(mwindow, this));
57         add_subwindow(new ConfirmQuitCancelButton(mwindow, this));
58         show_window(1);
59         unlock_window();
60 }
61
62 ConfirmQuitYesButton::ConfirmQuitYesButton(MWindow *mwindow,
63         ConfirmQuitWindow *gui)
64  : BC_GenericButton(xS(10),
65         gui->get_h() - BC_GenericButton::calculate_h() - yS(10),
66         _("Yes"))
67 {
68         set_underline(0);
69 }
70
71 int ConfirmQuitYesButton::handle_event()
72 {
73         set_done(2);
74         return 1;
75 }
76
77 int ConfirmQuitYesButton::keypress_event()
78 {
79         if( toupper(get_keypress()) == *get_text() )
80                 return handle_event();
81         return 0;
82 }
83
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() - yS(10),
88         _("No"))
89 {
90         set_underline(0);
91 }
92
93 int ConfirmQuitNoButton::handle_event()
94 {
95         set_done(0);
96         return 1;
97 }
98
99 int ConfirmQuitNoButton::keypress_event()
100 {
101         if( toupper(get_keypress()) == *get_text() )
102                 return handle_event();
103         return 0;
104 }
105
106 ConfirmQuitCancelButton::ConfirmQuitCancelButton(MWindow *mwindow,
107         ConfirmQuitWindow *gui)
108  : BC_GenericButton(gui->get_w() - BC_GenericButton::calculate_w(gui, _("Cancel")) - xS(10),
109         gui->get_h() - BC_GenericButton::calculate_h() - yS(10),
110         _("Cancel"))
111 {
112 }
113
114 int ConfirmQuitCancelButton::handle_event()
115 {
116         set_done(1);
117         return 1;
118 }
119
120 int ConfirmQuitCancelButton::keypress_event()
121 {
122         if(get_keypress() == ESC) return handle_event();
123         return 0;
124 }
125