4 * Copyright (C) 2004 Andraz Tori
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 "bcdisplayinfo.h"
23 #include "editpanel.h"
25 #include "manualgoto.h"
27 #include "mwindowgui.h"
30 ManualGoto::ManualGoto(MWindow *mwindow, EditPanel *panel)
33 this->mwindow = mwindow;
38 ManualGoto::~ManualGoto()
43 BC_Window *ManualGoto::new_gui()
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();
56 void ManualGoto::handle_done_event(int result)
59 double current_position = panel->get_position();
60 double new_position = gotowindow->get_new_position();
61 char modifier = gotowindow->signtitle->get_text()[0];
63 case '+': new_position = current_position + new_position; break;
64 case '-': new_position = current_position - new_position; break;
67 panel->set_position(new_position);
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)
78 ManualGotoWindow::~ManualGotoWindow()
82 void ManualGotoWindow::reset_data(double position)
85 update_position(position);
86 signtitle->update("=");
90 double ManualGotoWindow::get_new_position()
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());
97 double seconds = ((((hh * 60) + mm) * 60) + ss) + (1.0 * ms) / 1000;
101 void ManualGotoWindow::update_position(double position)
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;
110 hours->update((int)hour);
111 minutes->update(minute);
112 seconds->update(second);
113 msecs->update(thousandths);
116 void ManualGotoWindow::create_objects()
118 lock_window("ManualGotoWindow::create_objects");
121 BC_Title *title = new BC_Title(x - 2, y, _("hour min sec msec"), SMALLFONT);
122 add_subwindow(title); y += title->get_h() + 3;
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;
136 add_subwindow(new BC_OKButton(this));
137 add_subwindow(new BC_CancelButton(this));
142 ManualGotoNumber::ManualGotoNumber(ManualGotoWindow *window, int x, int y, int w,
143 int max, const char *format)
144 : BC_TextBox(x, y, w, 1, "")
146 this->window = window;
148 this->format = format;
151 int ManualGotoNumber::handle_event()
156 void ManualGotoNumber::update(int64_t v)
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);
165 int ManualGotoNumber::keypress_event()
167 int key = get_keypress();
168 if( key == '+' || key == '-' || key == '=' ) {
169 window->signtitle->update(key);
172 if( key == '.' || key == TAB ) {
173 window->cycle_textboxes(1);
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);