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()
120 BC_Title *title = new BC_Title(x - 2, y, _("hour min sec msec"), SMALLFONT);
121 add_subwindow(title); y += title->get_h() + 3;
123 signtitle = new BC_Title(x - 17, y, "=", LARGEFONT);
124 add_subwindow(signtitle);
125 hours = new ManualGotoNumber(this, x, y, 16, 9, "%i");
126 add_subwindow(hours); x += hours->get_w() + 4;
127 minutes = new ManualGotoNumber(this, x, y, 26, 59, "%02i");
128 add_subwindow(minutes); x += minutes->get_w() + 4;
129 seconds = new ManualGotoNumber(this, x, y, 26, 59, "%02i");
130 add_subwindow(seconds); x += seconds->get_w() + 4;
131 msecs = new ManualGotoNumber(this, x, y, 34, 999, "%03i");
132 add_subwindow(msecs);
133 y += hours->get_h() + 10;
135 add_subwindow(new BC_OKButton(this));
136 add_subwindow(new BC_CancelButton(this));
140 ManualGotoNumber::ManualGotoNumber(ManualGotoWindow *window, int x, int y, int w,
141 int max, const char *format)
142 : BC_TextBox(x, y, w, 1, "")
144 this->window = window;
146 this->format = format;
149 int ManualGotoNumber::handle_event()
154 void ManualGotoNumber::update(int64_t v)
156 char text[BCTEXTLEN];
157 if( v < 0 ) v = atoll(get_text());
158 if( v > max ) v = max;
159 sprintf(text, format, v);
160 BC_TextBox::update(text);
163 int ManualGotoNumber::keypress_event()
165 int key = get_keypress();
166 if( key == '+' || key == '-' || key == '=' ) {
167 window->signtitle->update(key);
170 if( key == '.' || key == TAB ) {
171 window->cycle_textboxes(1);
175 int chars = 1, m = max;
176 while( (m /= 10) > 0 ) ++chars;
177 int in_textlen = strlen(get_text());
178 if( in_textlen >= chars )
179 BC_TextBox::update("");
180 int result = BC_TextBox::keypress_event();
181 int out_textlen = strlen(get_text());
182 if( out_textlen >= chars && get_ibeam_letter() >= chars )
183 window->cycle_textboxes(1);