edit group selection and cut/copy/paste/del shortcuts, interview mode tweaks
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / manualgoto.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2004 Andraz Tori
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 "bcdisplayinfo.h"
23 #include "editpanel.h"
24 #include "language.h"
25 #include "manualgoto.h"
26 #include "mwindow.h"
27 #include "mwindowgui.h"
28 #include "keys.h"
29
30 ManualGoto::ManualGoto(MWindow *mwindow, EditPanel *panel)
31  : BC_DialogThread()
32 {
33         this->mwindow = mwindow;
34         this->panel = panel;
35         gotowindow = 0;
36 }
37
38 ManualGoto::~ManualGoto()
39 {
40         close_window();
41 }
42
43 BC_Window *ManualGoto::new_gui()
44 {
45         BC_DisplayInfo dpy_info;
46         int x = dpy_info.get_abs_cursor_x() - 250 / 2;
47         int y = dpy_info.get_abs_cursor_y() - 80 / 2;
48         gotowindow = new ManualGotoWindow(this, x, y);
49         gotowindow->create_objects();
50         double position = panel->get_position();
51         gotowindow->reset_data(position);
52         gotowindow->show_window();
53         return gotowindow;
54 }
55
56 void ManualGoto::handle_done_event(int result)
57 {
58         if( result ) return;
59         double current_position = panel->get_position();
60         double new_position = gotowindow->get_new_position();
61         char modifier = gotowindow->signtitle->get_text()[0];
62         switch( modifier ) {
63         case '+':  new_position = current_position + new_position;  break;
64         case '-':  new_position = current_position - new_position;  break;
65         default: break;
66         }
67         panel->set_position(new_position);
68 }
69
70
71 ManualGotoWindow::ManualGotoWindow(ManualGoto *mango, int x, int y)
72  : BC_Window(_(PROGRAM_NAME ": Goto position"), x, y,
73         250, 80, 250, 80, 0, 0, 1)
74 {
75         this->mango = mango;
76 }
77
78 ManualGotoWindow::~ManualGotoWindow()
79 {
80 }
81
82 void ManualGotoWindow::reset_data(double position)
83 {
84         lock_window();
85         update_position(position);
86         signtitle->update("=");
87         unlock_window();
88 }
89
90 double ManualGotoWindow::get_new_position()
91 {
92         int64_t hh = atoi(hours->get_text());
93         int mm = atoi(minutes->get_text());
94         int ss = atoi(seconds->get_text());
95         int ms = atoi(msecs->get_text());
96
97         double seconds = ((((hh * 60) + mm) * 60) + ss) + (1.0 * ms) / 1000;
98         return seconds;
99 }
100
101 void ManualGotoWindow::update_position(double position)
102 {
103         if( position < 0 ) position = 0;
104         int64_t pos = position;
105         int64_t hour = (pos / 3600);
106         int minute = (pos / 60 - hour * 60);
107         int second = pos - hour * 3600 - minute * 60;
108         int thousandths = ((int64_t)(position * 1000)) % 1000;
109
110         hours->update((int)hour);
111         minutes->update(minute);
112         seconds->update(second);
113         msecs->update(thousandths);
114 }
115
116 void ManualGotoWindow::create_objects()
117 {
118         lock_window("ManualGotoWindow::create_objects");
119         int x = 76, y = 5;
120
121         BC_Title *title = new BC_Title(x - 2, y, _("hour  min     sec     msec"), SMALLFONT);
122         add_subwindow(title);  y += title->get_h() + 3;
123
124         signtitle = new BC_Title(x - 17, y, "=", LARGEFONT);
125         add_subwindow(signtitle);
126         hours = new ManualGotoNumber(this, x, y, 16, 9, "%i");
127         add_subwindow(hours);    x += hours->get_w() + 4;
128         minutes = new ManualGotoNumber(this, x, y, 26, 59, "%02i");
129         add_subwindow(minutes);  x += minutes->get_w() + 4;
130         seconds = new ManualGotoNumber(this, x, y, 26, 59, "%02i");
131         add_subwindow(seconds);  x += seconds->get_w() + 4;
132         msecs = new ManualGotoNumber(this, x, y, 34, 999, "%03i");
133         add_subwindow(msecs);
134         y += hours->get_h() + 10;
135
136         add_subwindow(new BC_OKButton(this));
137         add_subwindow(new BC_CancelButton(this));
138         unlock_window();
139 }
140
141
142 ManualGotoNumber::ManualGotoNumber(ManualGotoWindow *window, int x, int y, int w,
143         int max, const char *format)
144  : BC_TextBox(x, y, w, 1, "")
145 {
146         this->window = window;
147         this->max = max;
148         this->format = format;
149 }
150
151 int ManualGotoNumber::handle_event()
152 {
153         return 1;
154 }
155
156 void ManualGotoNumber::update(int64_t v)
157 {
158         char text[BCTEXTLEN];
159         if( v < 0 ) v = atoll(get_text());
160         if( v > max ) v = max;
161         sprintf(text, format, v);
162         BC_TextBox::update(text);
163 }
164
165 int ManualGotoNumber::keypress_event()
166 {
167         int key = get_keypress();
168         if( key == '+' || key == '-' || key == '=' ) {
169                 window->signtitle->update(key);
170                 return 1;
171         }
172         if( key == '.' || key == TAB ) {
173                 window->cycle_textboxes(1);
174                 return 1;
175         }
176
177         int chars = 1, m = max;
178         while( (m /= 10) > 0 ) ++chars;
179         int in_textlen = strlen(get_text());
180         if( in_textlen >= chars )
181                 BC_TextBox::update("");
182         int result = BC_TextBox::keypress_event();
183         int out_textlen = strlen(get_text());
184         if( out_textlen >= chars && get_ibeam_letter() >= chars )
185                 window->cycle_textboxes(1);
186         return result;
187 }
188
189