forked from lse/i3lock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
unlock_indicator.c
598 lines (515 loc) · 21.5 KB
/
unlock_indicator.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
/*
* vim:ts=4:sw=4:expandtab
*
* © 2010 Michael Stapelberg
*
* See LICENSE for licensing information
*
*/
#include <stdbool.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <xcb/xcb.h>
#include <xkbcommon/xkbcommon.h>
#include <ev.h>
#include <cairo.h>
#include <cairo/cairo-xcb.h>
#include <unistd.h>
#include <time.h>
#include <pwd.h>
#include "i3lock.h"
#include "xcb.h"
#include "unlock_indicator.h"
#include "randr.h"
#include "dpi.h"
#define BUTTON_RADIUS 90
#define BUTTON_SPACE (BUTTON_RADIUS + 5)
#define BUTTON_CENTER (BUTTON_RADIUS + 5)
#define BUTTON_DIAMETER (2 * BUTTON_SPACE)
#define INFO_MAXLENGTH 100
#define INFO_MARGIN 12
/*******************************************************************************
* Variables defined in i3lock.c.
******************************************************************************/
extern bool debug_mode;
/* The current position in the input buffer. Useful to determine if any
* characters of the password have already been entered or not. */
extern int input_position;
/* The lock window. */
extern xcb_window_t win;
/* The current resolution of the X11 root window. */
extern uint32_t last_resolution[2];
/* Whether the unlock indicator is enabled (defaults to true). */
extern bool unlock_indicator;
/* List of pressed modifiers, or NULL if none are pressed. */
extern char *modifier_string;
/* A Cairo surface containing the specified image (-i), if any. */
extern cairo_surface_t *img;
/* Whether the image should be tiled. */
extern bool tile;
/* The background color to use (in hex). */
extern char color[7];
/* Whether the failed attempts should be displayed. */
extern bool show_failed_attempts;
/* Number of failed unlock attempts. */
extern int failed_attempts;
extern struct xkb_keymap *xkb_keymap;
extern struct xkb_state *xkb_state;
/* When was the computer locked. */
extern time_t lock_time;
/* tick for timer */
static struct ev_periodic *time_redraw_tick;
/* Login */
extern char *login;
/*******************************************************************************
* Variables defined in xcb.c.
******************************************************************************/
/* The root screen, to determine the DPI. */
extern xcb_screen_t *screen;
/*******************************************************************************
* Local variables.
******************************************************************************/
/* Cache the screen’s visual, necessary for creating a Cairo context. */
static xcb_visualtype_t *vistype;
/* Maintain the current unlock/PAM state to draw the appropriate unlock
* indicator. */
unlock_state_t unlock_state;
auth_state_t auth_state;
/* check_modifier_keys describes the currently active modifiers (Caps Lock, Alt,
Num Lock or Super) in the modifier_string variable. */
static void check_modifier_keys(void) {
xkb_mod_index_t idx, num_mods;
const char *mod_name;
num_mods = xkb_keymap_num_mods(xkb_keymap);
for (idx = 0; idx < num_mods; idx++) {
if (!xkb_state_mod_index_is_active(xkb_state, idx, XKB_STATE_MODS_EFFECTIVE))
continue;
mod_name = xkb_keymap_mod_get_name(xkb_keymap, idx);
if (mod_name == NULL)
continue;
/* Replace certain xkb names with nicer, human-readable ones. */
if (strcmp(mod_name, XKB_MOD_NAME_CAPS) == 0) {
mod_name = "Caps Lock";
} else if (strcmp(mod_name, XKB_MOD_NAME_NUM) == 0) {
mod_name = "Num Lock";
} else {
/* Show only Caps Lock and Num Lock, other modifiers (e.g. Shift)
* leak state about the password. */
continue;
}
char *tmp;
if (modifier_string == NULL) {
if (asprintf(&tmp, "%s", mod_name) != -1)
modifier_string = tmp;
} else if (asprintf(&tmp, "%s, %s", modifier_string, mod_name) != -1) {
free(modifier_string);
modifier_string = tmp;
}
}
}
static char *get_login(void) {
uid_t uid = getuid();
struct passwd *pwd = getpwuid(uid);
return pwd ? pwd->pw_name : NULL;
}
/*
* Draws global image with fill color onto a pixmap with the given
* resolution and returns it.
*
*/
void draw_image(xcb_pixmap_t bg_pixmap, uint32_t *resolution) {
const double scaling_factor = get_dpi_value() / 96.0;
int button_diameter_physical = ceil(scaling_factor * BUTTON_DIAMETER);
DEBUG("scaling_factor is %.f, physical diameter is %d px\n",
scaling_factor, button_diameter_physical);
if (!vistype)
vistype = get_root_visual_type(screen);
/* Initialize cairo: Create one in-memory surface to render the unlock
* indicator on, create one XCB surface to actually draw (one or more,
* depending on the amount of screens) unlock indicators on. */
cairo_surface_t *output = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, button_diameter_physical, button_diameter_physical);
cairo_t *ctx = cairo_create(output);
cairo_surface_t *xcb_output = cairo_xcb_surface_create(conn, bg_pixmap, vistype, resolution[0], resolution[1]);
cairo_t *xcb_ctx = cairo_create(xcb_output);
/* After the first iteration, the pixmap will still contain the previous
* contents. Explicitly clear the entire pixmap with the background color
* first to get back into a defined state: */
char strgroups[3][3] = {{color[0], color[1], '\0'},
{color[2], color[3], '\0'},
{color[4], color[5], '\0'}};
uint32_t rgb16[3] = {(strtol(strgroups[0], NULL, 16)),
(strtol(strgroups[1], NULL, 16)),
(strtol(strgroups[2], NULL, 16))};
cairo_set_source_rgb(xcb_ctx, rgb16[0] / 255.0, rgb16[1] / 255.0, rgb16[2] / 255.0);
cairo_rectangle(xcb_ctx, 0, 0, resolution[0], resolution[1]);
cairo_fill(xcb_ctx);
if (img) {
if (!tile) {
cairo_set_source_surface(xcb_ctx, img, 0, 0);
cairo_paint(xcb_ctx);
} else {
/* create a pattern and fill a rectangle as big as the screen */
cairo_pattern_t *pattern;
pattern = cairo_pattern_create_for_surface(img);
cairo_set_source(xcb_ctx, pattern);
cairo_pattern_set_extend(pattern, CAIRO_EXTEND_REPEAT);
cairo_rectangle(xcb_ctx, 0, 0, resolution[0], resolution[1]);
cairo_fill(xcb_ctx);
cairo_pattern_destroy(pattern);
}
}
/* Compute the locked_time */
time_t curtime = time(NULL);
time_t locked_time = difftime(curtime, lock_time) / 60;
// We always want the circle to be displayed
if (unlock_indicator) {
cairo_scale(ctx, scaling_factor, scaling_factor);
/* Draw a (centered) circle with transparent background. */
cairo_set_line_width(ctx, 10.0);
cairo_arc(ctx,
BUTTON_CENTER /* x */,
BUTTON_CENTER /* y */,
BUTTON_RADIUS /* radius */,
0 /* start */,
2 * M_PI /* end */);
/* Display some useful information. */
/* Time (centered) */
char buf[INFO_MAXLENGTH];
memset(buf, 0, sizeof(buf));
char *text = buf;
/* Use the appropriate color for the different PAM states
* (currently verifying, wrong password, or default) */
switch (auth_state) {
case STATE_AUTH_VERIFY:
case STATE_AUTH_LOCK:
cairo_set_source_rgba(ctx, 0, 114.0 / 255, 255.0 / 255, 0.75);
break;
case STATE_AUTH_WRONG:
case STATE_I3LOCK_LOCK_FAILED:
cairo_set_source_rgba(ctx, 250.0 / 255, 0, 0, 0.75);
break;
default:
if (unlock_state == STATE_NOTHING_TO_DELETE) {
cairo_set_source_rgba(ctx, 250.0 / 255, 0, 0, 0.75);
break;
}
cairo_set_source_rgba(ctx, 0, 0, 0, 0.75);
break;
}
/* Special color for unauthorized */
if (locked_time >= AUTHORIZED_LOCK_TIME)
cairo_set_source_rgba(ctx, 250.0 / 255, 0, 0, 0.75);
cairo_fill_preserve(ctx);
switch (auth_state) {
case STATE_AUTH_VERIFY:
case STATE_AUTH_LOCK:
cairo_set_source_rgb(ctx, 51.0 / 255, 0, 250.0 / 255);
break;
case STATE_AUTH_WRONG:
case STATE_I3LOCK_LOCK_FAILED:
cairo_set_source_rgb(ctx, 125.0 / 255, 51.0 / 255, 0);
break;
case STATE_AUTH_IDLE:
if (unlock_state == STATE_NOTHING_TO_DELETE) {
cairo_set_source_rgb(ctx, 125.0 / 255, 51.0 / 255, 0);
break;
}
cairo_set_source_rgb(ctx, 160.0 / 255, 160.0 / 255, 160.0 / 255);
break;
}
if (locked_time >= AUTHORIZED_LOCK_TIME)
cairo_set_source_rgb(ctx, 125.0 / 255, 51.0 / 255, 0);
cairo_stroke(ctx);
/* set time display */
snprintf(text, INFO_MAXLENGTH - 1, "%.2lu:%.2lu", locked_time / 60, locked_time % 60);
cairo_set_source_rgb(ctx, 255, 255, 255);
cairo_set_font_size(ctx, 32.0);
cairo_text_extents_t time_extents;
double time_x, time_y;
cairo_text_extents(ctx, text, &time_extents);
time_x = BUTTON_CENTER - ((time_extents.width / 2) + time_extents.x_bearing);
time_y = BUTTON_CENTER - ((time_extents.height / 2) + time_extents.y_bearing);
cairo_move_to(ctx, time_x, time_y);
cairo_show_text(ctx, text);
cairo_close_path(ctx);
double x, y;
cairo_text_extents_t extents;
cairo_set_font_size(ctx, 14.0);
int has_special_state = true;
switch (auth_state) {
case STATE_AUTH_VERIFY:
text = "Verifying...";
break;
case STATE_AUTH_LOCK:
text = "Locking...";
break;
case STATE_AUTH_WRONG:
text = "Wrong!";
break;
case STATE_I3LOCK_LOCK_FAILED:
text = "Lock failed!";
break;
default:
if (unlock_state == STATE_NOTHING_TO_DELETE) {
text = "No input";
break;
}
/* Failed attempts (below) */
if (show_failed_attempts && failed_attempts > 0) {
if (failed_attempts == 1) {
text = "1 failed attempt";
} else {
snprintf(text, INFO_MAXLENGTH - 1, "%i failed attempts", failed_attempts);
}
break;
}
has_special_state = false;
break;
}
if (has_special_state) {
cairo_text_extents(ctx, text, &extents);
x = BUTTON_CENTER - ((extents.width / 2) + extents.x_bearing);
y = time_y - extents.y_bearing + INFO_MARGIN;
cairo_move_to(ctx, x, y);
cairo_show_text(ctx, text);
cairo_close_path(ctx);
}
if (login != NULL)
{
cairo_text_extents(ctx, login, &extents);
x = BUTTON_CENTER - ((extents.width / 2) + extents.x_bearing);
if (has_special_state) {
y = time_y - time_extents.y_bearing + INFO_MARGIN * 2;
} else {
y = time_y - extents.y_bearing + INFO_MARGIN;
}
cairo_move_to(ctx, x, y);
cairo_show_text(ctx, login);
cairo_close_path(ctx);
}
/* Lock time (above) */
text = "Locked for";
cairo_text_extents(ctx, text, &extents);
x = BUTTON_CENTER - ((extents.width / 2) + extents.x_bearing);
y = time_y + time_extents.y_bearing - INFO_MARGIN;
cairo_move_to(ctx, x, y);
cairo_show_text(ctx, text);
cairo_close_path(ctx);
cairo_move_to(ctx, BUTTON_CENTER + BUTTON_RADIUS - 5, y - time_extents.y_bearing);
/* Draw an inner seperator line. */
cairo_set_source_rgb(ctx, 0, 0, 0);
cairo_set_line_width(ctx, 2.0);
cairo_arc(ctx,
BUTTON_CENTER /* x */,
BUTTON_CENTER /* y */,
BUTTON_RADIUS - 5 /* radius */,
0,
2 * M_PI);
cairo_stroke(ctx);
cairo_set_line_width(ctx, 10.0);
/* After the user pressed any valid key or the backspace key, we
* highlight a random part of the unlock indicator to confirm this
* keypress. */
if (unlock_state == STATE_KEY_ACTIVE ||
unlock_state == STATE_BACKSPACE_ACTIVE) {
cairo_new_sub_path(ctx);
double highlight_start = (rand() % (int)(2 * M_PI * 100)) / 100.0;
cairo_arc(ctx,
BUTTON_CENTER /* x */,
BUTTON_CENTER /* y */,
BUTTON_RADIUS /* radius */,
highlight_start,
highlight_start + (M_PI / 3.0));
if (unlock_state == STATE_KEY_ACTIVE) {
/* For normal keys, we use a lighter green. */
cairo_set_source_rgb(ctx, 1, 1, 1);
} else {
/* For backspace, we use black. */
cairo_set_source_rgb(ctx, 0, 0, 0);
}
cairo_stroke(ctx);
/* Draw two little separators for the highlighted part of the
* unlock indicator. */
cairo_set_source_rgb(ctx, 0, 0, 0);
cairo_arc(ctx,
BUTTON_CENTER /* x */,
BUTTON_CENTER /* y */,
BUTTON_RADIUS /* radius */,
highlight_start /* start */,
highlight_start + (M_PI / 128.0) /* end */);
cairo_stroke(ctx);
cairo_arc(ctx,
BUTTON_CENTER /* x */,
BUTTON_CENTER /* y */,
BUTTON_RADIUS /* radius */,
(highlight_start + (M_PI / 3.0)) - (M_PI / 128.0) /* start */,
highlight_start + (M_PI / 3.0) /* end */);
cairo_stroke(ctx);
}
}
if (xr_screens > 0) {
/* Composite the unlock indicator in the middle of each screen. */
for (int screen = 0; screen < xr_screens; screen++) {
int x = (xr_resolutions[screen].x + ((xr_resolutions[screen].width / 2) - (button_diameter_physical / 2)));
int y = (xr_resolutions[screen].y + ((xr_resolutions[screen].height / 2) - (button_diameter_physical / 2)));
cairo_set_source_surface(xcb_ctx, output, x, y);
cairo_rectangle(xcb_ctx, x, y, button_diameter_physical, button_diameter_physical);
cairo_fill(xcb_ctx);
}
} else {
/* We have no information about the screen sizes/positions, so we just
* place the unlock indicator in the middle of the X root window and
* hope for the best. */
int x = (last_resolution[0] / 2) - (button_diameter_physical / 2);
int y = (last_resolution[1] / 2) - (button_diameter_physical / 2);
cairo_set_source_surface(xcb_ctx, output, x, y);
cairo_rectangle(xcb_ctx, x, y, button_diameter_physical, button_diameter_physical);
cairo_fill(xcb_ctx);
}
/* Display current modifier */
if (auth_state == STATE_AUTH_WRONG && (modifier_string != NULL)) {
int h = 50;
int w = 300;
int h_scaled = ceil(scaling_factor * h);
int w_scaled = ceil(scaling_factor * w);
cairo_surface_t *output_modifier = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, w_scaled, h_scaled);
cairo_t *ctx_modifier = cairo_create(output_modifier);
cairo_scale(ctx_modifier, scaling_factor, scaling_factor);
cairo_text_extents_t extents;
cairo_set_font_size(ctx_modifier, 14.0);
cairo_text_extents(ctx_modifier, modifier_string, &extents);
int x = w / 2 - ((extents.width / 2) + extents.x_bearing);
int y = h / 2 - ((extents.height / 2) + extents.y_bearing);
cairo_set_source_rgb(ctx_modifier, 250.0 / 255, 0, 0);
cairo_move_to(ctx_modifier, x, y);
cairo_show_text(ctx_modifier, modifier_string);
cairo_close_path(ctx_modifier);
if (xr_screens > 0) {
for (int screen = 0; screen < xr_screens; screen++) {
int x = xr_resolutions[screen].x + (xr_resolutions[screen].width / 2) - (w_scaled / 2);
int y = xr_resolutions[screen].y + (xr_resolutions[screen].height / 2) + h_scaled + 50 ;
cairo_set_source_surface(xcb_ctx, output_modifier, x, y);
cairo_rectangle(xcb_ctx, x, y, w_scaled, h_scaled);
cairo_fill(xcb_ctx);
}
} else {
int x = (last_resolution[0] / 2) - (w_scaled / 2);
int y = (last_resolution[1] / 2) + h_scaled + 100;
cairo_set_source_surface(xcb_ctx, output_modifier, x, y);
cairo_rectangle(xcb_ctx, x, y, w_scaled, h_scaled);
cairo_fill(xcb_ctx);
}
cairo_surface_destroy(output_modifier);
cairo_destroy(ctx_modifier);
}
/* #ifdef LOGOUT_KEYBIND */
if (locked_time >= AUTHORIZED_LOCK_TIME) {
int h = 80;
int w = 450;
int h_scaled = ceil(scaling_factor * h);
int w_scaled = ceil(scaling_factor * w);
cairo_surface_t *output_indicator = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, w_scaled, h_scaled);
cairo_t *ctx_indicator = cairo_create(output_indicator);
cairo_scale(ctx_indicator, scaling_factor, scaling_factor);
/* Bakcground */
cairo_set_source_rgba(ctx_indicator, 250.0 / 255, 0, 0, 0.75);
cairo_rectangle(ctx_indicator, 0, 0, w, h);
cairo_stroke_preserve(ctx_indicator);
cairo_fill(ctx_indicator);
/* Text */
cairo_set_source_rgb(ctx_indicator, 1, 1, 1);
char *text = "Super + Shift + E to logout";
cairo_text_extents_t extents;
cairo_set_font_size(ctx_indicator, 32.0);
cairo_text_extents(ctx_indicator, text, &extents);
int x = w / 2 - ((extents.width / 2) + extents.x_bearing);
int y = h / 2 - ((extents.height / 2) + extents.y_bearing);
cairo_move_to(ctx_indicator, x, y);
cairo_show_text(ctx_indicator, text);
cairo_close_path(ctx_indicator);
if (xr_screens > 0) {
/* Composite the unlock indicator in the middle of each screen. */
for (int screen = 0; screen < xr_screens; screen++) {
int x = xr_resolutions[screen].x + (xr_resolutions[screen].width / 2) - (w_scaled / 2);
int y = xr_resolutions[screen].y + (xr_resolutions[screen].height) - h_scaled - 50;
cairo_set_source_surface(xcb_ctx, output_indicator, x, y);
cairo_rectangle(xcb_ctx, x, y, w_scaled, h_scaled);
cairo_fill(xcb_ctx);
}
} else {
/* We have no information about the screen sizes/positions, so we just
* place the unlock indicator in the middle of the X root window and
* hope for the best. */
int x = (last_resolution[0] / 2) - (w_scaled / 2);
int y = last_resolution[1] - h_scaled - 50 ;
cairo_set_source_surface(xcb_ctx, output_indicator, x, y);
cairo_rectangle(xcb_ctx, x, y, w_scaled, h_scaled);
cairo_fill(xcb_ctx);
}
cairo_surface_destroy(output_indicator);
cairo_destroy(ctx_indicator);
}
/* #endif */
cairo_surface_destroy(xcb_output);
cairo_surface_destroy(output);
cairo_destroy(ctx);
cairo_destroy(xcb_ctx);
}
static xcb_pixmap_t bg_pixmap = XCB_NONE;
/*
* Releases the current background pixmap so that the next redraw_screen() call
* will allocate a new one with the updated resolution.
*
*/
void free_bg_pixmap(void) {
xcb_free_pixmap(conn, bg_pixmap);
bg_pixmap = XCB_NONE;
}
/*
* Calls draw_image on a new pixmap and swaps that with the current pixmap
*
*/
void redraw_screen(void) {
DEBUG("redraw_screen(unlock_state = %d, auth_state = %d)\n", unlock_state, auth_state);
if (modifier_string) {
free(modifier_string);
modifier_string = NULL;
}
check_modifier_keys();
if (bg_pixmap == XCB_NONE) {
DEBUG("allocating pixmap for %d x %d px\n", last_resolution[0], last_resolution[1]);
bg_pixmap = create_bg_pixmap(conn, screen, last_resolution, color);
}
draw_image(bg_pixmap, last_resolution);
xcb_change_window_attributes(conn, win, XCB_CW_BACK_PIXMAP, (uint32_t[1]){bg_pixmap});
/* XXX: Possible optimization: Only update the area in the middle of the
* screen instead of the whole screen. */
xcb_clear_area(conn, 0, win, 0, 0, last_resolution[0], last_resolution[1]);
xcb_flush(conn);
}
/*
* Hides the unlock indicator completely when there is no content in the
* password buffer.
*
*/
void clear_indicator(void) {
unlock_state = STATE_KEY_PRESSED;
redraw_screen();
}
/* Periodic redraw for clock */
static void time_redraw_cb(struct ev_loop *loop, ev_periodic *w, int revents) {
redraw_screen();
}
void start_time_redraw_tick(struct ev_loop* main_loop) {
if (time_redraw_tick) {
ev_periodic_set(time_redraw_tick, 1.0, 60., 0);
ev_periodic_again(main_loop, time_redraw_tick);
} else {
if (!(time_redraw_tick = calloc(sizeof(struct ev_periodic), 1)))
return;
ev_periodic_init(time_redraw_tick,time_redraw_cb, 1.0, 60., 0);
ev_periodic_start(main_loop, time_redraw_tick);
}
}