-
Notifications
You must be signed in to change notification settings - Fork 3
/
misc.h
51 lines (40 loc) · 1.79 KB
/
misc.h
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
// misc.h - miscellaneous functions for lualock
// Copyright ©2011 Guff <[email protected]>
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
// MA 02110-1301, USA.
//
#ifndef MISC_H
#define MISC_H
#include <gdk/gdk.h>
#include "lualock.h"
cairo_surface_t* create_surface(gint width, gint height);
layer_t* create_layer(gint width, gint height);
void add_layer(layer_t *layer);
void remove_layer(layer_t *layer);
void replace_layer(layer_t *old_layer, layer_t *new_layer);
void layer_destroy(layer_t *layer);
void parse_color(const gchar *hex, gdouble *r, gdouble *g, gdouble *b, gdouble *a);
gchar* get_password_mask(void);
void get_abs_pos(gdouble rel_x, gdouble rel_y, gdouble *x, gdouble *y);
void get_abs_pos_for_dims(gdouble dim_w, gdouble dim_h, gdouble rel_w,
gdouble rel_h, gdouble *w, gdouble *h);
void add_timer(guint id);
void remove_timer(guint id);
void clear_timers(void);
void register_update(gdouble x, gdouble y, gdouble w, gdouble h);
void register_update_for_layer(layer_t *layer);
void clear_updates(void);
void update_screen(void);
#endif