forked from notsecure/uTox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.h
427 lines (333 loc) · 11 KB
/
main.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
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
#ifndef MAIN_H
#define MAIN_H
/* Support for large files. */
#define _LARGEFILE_SOURCE
#define _FILE_OFFSET_BITS 64
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <time.h>
#include <string.h>
#include <math.h>
#include <limits.h>
#include <ctype.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <tox/tox.h>
#include <tox/toxav.h>
#include <vpx/vpx_codec.h>
#include <vpx/vpx_image.h>
#ifdef EMOJI_IDS
#include <base_emoji.h>
#endif
#define countof(x) (sizeof(x)/sizeof(*(x)))
// fixes compile with apple headers
#ifndef __OBJC__
#define volatile(x) (*((volatile typeof(x)*)&x))
#endif
// Defaults
#define DEFAULT_NAME "Tox User"
#define DEFAULT_STATUS "Toxing on uTox"
#define DEFAULT_SCALE 2
// Versions
#define TITLE "uTox"
#define SUB_TITLE "(Alpha)"
#define VERSION "0.3.2"
// Limits and sizes
#define MAX_CALLS 16
#define MAX_NUM_FRIENDS 256
#define MAX_BACKLOG_MESSAGES 128
#define MAX_NUM_GROUPS 512
#define TOX_FRIEND_ADDRESS_SIZE TOX_ADDRESS_SIZE
#define UTOX_FILE_NAME_LENGTH 1024
#define isdesktop(x) ((size_t)(x) == 1)
// Structs
typedef struct
{
uint8_t version, scale, enableipv6, disableudp;
uint16_t window_x, window_y, window_width, window_height;
uint16_t proxy_port;
uint8_t proxyenable;
uint8_t logging_enabled : 1;
uint8_t audible_notifications_enabled : 1;
uint8_t filter : 1;
uint8_t audio_filtering_enabled : 1;
uint8_t close_to_tray : 1;
uint8_t start_in_tray : 1;
uint8_t auto_startup : 1;
uint8_t no_typing_notifications : 1;
uint16_t audio_device_in;
uint16_t audio_device_out;
uint8_t theme;
uint8_t nothing;
uint16_t unused[31];
uint8_t proxy_ip[0];
}UTOX_SAVE;
#define SAVE_VERSION 3
typedef struct
{
uint16_t length;
uint8_t id[TOX_FRIEND_ADDRESS_SIZE], msg[0];
}FRIENDREQ;
typedef struct {
// Castless wrapper for lodepng data arguments.
unsigned char png_data[0];
} *UTOX_PNG_IMAGE;
typedef struct edit_change EDIT_CHANGE;
// Enums
enum
{
CURSOR_NONE,
CURSOR_TEXT,
CURSOR_HAND,
CURSOR_SELECT,
CURSOR_ZOOM_IN,
CURSOR_ZOOM_OUT,
};
enum {
FONT_TEXT,
FONT_TITLE,
/*FONT_MSG,
FONT_MSG_NAME,
FONT_MSG_LINK,*/
FONT_SELF_NAME,
FONT_STATUS,
FONT_LIST_NAME,
FONT_MISC,
};
//sysmenu icons
enum {
BM_ONLINE = 1,
BM_AWAY,
BM_BUSY,
BM_OFFLINE,
BM_STATUS_NOTIFY,
BM_ADD,
BM_GROUPS,
BM_TRANSFER,
BM_SETTINGS,
BM_LBUTTON,
BM_SBUTTON,
BM_CONTACT,
BM_GROUP,
BM_FILE,
BM_CALL,
BM_VIDEO,
BM_FT,
BM_FTM,
BM_FTB1,
BM_FTB2,
BM_NO,
BM_PAUSE,
BM_RESUME,
BM_YES,
BM_SCROLLHALFTOP,
BM_SCROLLHALFBOT,
BM_STATUSAREA,
BM_CB1,
BM_CB2,
BM_CHAT_SEND,
BM_CHAT_SEND_OVERLAY,
BM_CI1
};
// µTox includes
#include "unused.h"
#include "png/png.h"
#include "tox.h"
#ifdef __WIN32__
#include "windows/main.h"
#else
#ifdef __ANDROID__
#include "android/main.h"
#else
#ifdef __OBJC__
#include "cocoa/main.h"
#else
#include "xlib/main.h"
#endif
#endif
#endif
#include "sized_string.h"
#include "ui_i18n_decls.h"
#include "ui.h"
#include "svg.h"
#include "avatar.h"
#include "messages.h"
#include "theme.h"
#include "dns.h"
#include "file_transfers.h"
#include "friend.h"
#include "list.h"
#include "edit.h"
#include "scrollable.h"
#include "button.h"
#include "dropdown.h"
#include "contextmenu.h"
#include "tooltip.h"
#include "commands.h"
#include "text.h"
#include "util.h"
#include "ui_dropdown.h"
volatile _Bool tox_thread_init, audio_thread_init, video_thread_init, toxav_thread_init;
volatile _Bool logging_enabled, audible_notifications_enabled, audio_filtering_enabled, close_to_tray, start_in_tray, auto_startup;
volatile uint16_t loaded_audio_in_device, loaded_audio_out_device;
_Bool tox_connected;
_Bool audio_preview, video_preview;
//friends and groups
//note: assumes array size will always be large enough
FRIEND friend[MAX_NUM_FRIENDS];
GROUPCHAT group[MAX_NUM_GROUPS];
uint32_t friends, groups;
//window
int utox_window_width, utox_window_height, utox_window_baseline;
_Bool utox_window_maximized;
uint8_t cursor;
_Bool mdown;
struct {
int x, y;
} mouse;
//fonts
//HFONT font_big, font_big2, font_med, font_med2, font_small, font_msg;
int font_small_lineheight, font_msg_lineheight;
uint16_t video_width, video_height, max_video_width, max_video_height;
char proxy_address[256];
extern struct Tox_Options options;
// inserts/deletes a value into the registry to launch uTox after boot
void launch_at_startup(int is_launch_at_startup);
void drawalpha(int bm, int x, int y, int width, int height, uint32_t color);
void loadalpha(int bm, void *data, int width, int height);
void desktopgrab(_Bool video);
void notify(char_t *title, STRING_IDX title_length, char_t *msg, STRING_IDX msg_length, FRIEND *f);
void setscale(void);
enum {
FILTER_NEAREST, // ugly and quick filtering
FILTER_BILINEAR // prettier and a bit slower filtering
};
/* set filtering method used when resizing given image to one of above enum */
void image_set_filter(UTOX_NATIVE_IMAGE *image, uint8_t filter);
/* set scale of image so that when it's drawn it will be `scale' times as large(2.0 for double size, 0.5 for half, etc.)
* notes: theoretically lowest possible scale is (1.0/65536.0), highest is 65536.0, values outside of this range will create weird issues
* scaling will be rounded to pixels, so it might not be exact
*/
void image_set_scale(UTOX_NATIVE_IMAGE *image, double scale);
/* draws an utox image with or without alpha channel into the rect of (x,y,width,height) on the screen,
* starting at position (imgx,imgy) of the image
* WARNING: Windows can fail to show the image at all if the rect (imgx,imgy,width,height) contains even 1 pixel outside of
* the image's size AFTER SCALING, so be careful.
* TODO: improve this so this function is safer to use */
void draw_image(const UTOX_NATIVE_IMAGE *image, int x, int y, uint32_t width, uint32_t height, uint32_t imgx, uint32_t imgy);
/* converts a png to a UTOX_NATIVE_IMAGE, returns a pointer to it, keeping alpha channel only if keep_alpha is 1 */
UTOX_NATIVE_IMAGE *png_to_image(const UTOX_PNG_IMAGE, size_t size, uint16_t *w, uint16_t *h, _Bool keep_alpha);
/* free an image created by png_to_image */
void image_free(UTOX_NATIVE_IMAGE *image);
void showkeyboard(_Bool show);
void redraw(void);
void update_tray(void);
void force_redraw(void); // TODO: as parameter for redraw()?
int datapath_old(uint8_t *dest);
int datapath(uint8_t *dest);
/* gets a subdirectory of tox's datapath and puts the full pathname in dest,
* returns number of characters written */
int datapath_subdir(uint8_t *dest, const char *subdir);
void flush_file(FILE *file);
int ch_mod(uint8_t *file);
void config_osdefaults(UTOX_SAVE *r);
//me
struct
{
uint8_t status;
STRING_IDX name_length, statusmsg_length;
char_t *statusmsg, name[TOX_MAX_NAME_LENGTH];
char_t id_buffer[TOX_FRIEND_ADDRESS_SIZE * 4];
size_t id_buffer_length;
uint8_t id_binary[TOX_FRIEND_ADDRESS_SIZE];
AVATAR avatar;
unsigned int avatar_format;
uint8_t *avatar_data;
size_t avatar_size;
}self;
//add friend page
uint8_t addfriend_status;
_Bool dont_send_typing_notes; //Stores user's preference about typing notifications
#define BORDER 1
#define CAPTION 26
#define MAIN_WIDTH 800
#define MAIN_HEIGHT 600
#define inrect(x, y, rx, ry, width, height) ((x) >= (rx) && (y) >= (ry) && (x) < ((rx) + (width)) && (y) < ((ry) + (height)))
#define strcmp2(x, y) (memcmp(x, y, sizeof(y) - 1))
#define strcpy2(x, y) (memcpy(x, y, sizeof(y) - 1))
void postmessage(uint32_t msg, uint16_t param1, uint16_t param2, void *data);
/* draw functions*/
void drawtext(int x, int y, char_t *str, STRING_IDX length);
int drawtext_getwidth(int x, int y, char_t *str, STRING_IDX length);
void drawtextwidth(int x, int width, int y, char_t *str, STRING_IDX length);
void drawtextwidth_right(int x, int width, int y, char_t *str, STRING_IDX length);
void drawtextrange(int x, int x2, int y, char_t *str, STRING_IDX length);
void drawtextrangecut(int x, int x2, int y, char_t *str, STRING_IDX length);
int textwidth(char_t *str, STRING_IDX length);
int textfit(char_t *str, STRING_IDX length, int width);
int textfit_near(char_t *str, STRING_IDX length, int width);
//TODO: Seems to be unused. Remove?
int text_drawline(int x, int right, int y, uint8_t *str, int i, int length, int highlight, int hlen, uint16_t lineheight);
void framerect(int x, int y, int right, int bottom, uint32_t color);
void drawrect(int x, int y, int right, int bottom, uint32_t color);
void drawrectw(int x, int y, int width, int height, uint32_t color);
void drawhline(int x, int y, int x2, uint32_t color);
void drawvline(int x, int y, int y2, uint32_t color);
#define drawpixel(x, y, color) drawvline(x, y, (y) + 1, color)
void setfont(int id);
uint32_t setcolor(uint32_t color);
void pushclip(int x, int y, int width, int height);
void popclip(void);
void enddraw(int x, int y, int width, int height);
/* OS interface replacements */
int datapath_old(uint8_t *dest);
int datapath(uint8_t *dest);
int datapath_subdir(uint8_t *dest, const char *subdir);
void flush_file(FILE *file);
int ch_mod(uint8_t *file);
int file_lock(FILE *file, uint64_t start, size_t length);
int file_unlock(FILE *file, uint64_t start, size_t length);
/* OS-specific cleanup function for when edits are defocused. Commit IME state, etc. */
void edit_will_deactivate(void);
/** Creates a tray baloon popup with the message, and flashes the main window
*
* accepts: char_t *title, title length, char_t *msg, msg length;
* returns void;
*/
void notify(char_t *title, STRING_IDX title_length, char_t *msg, STRING_IDX msg_length, FRIEND *f);
/* other */
void thread(void func(void*), void *args);
void yieldcpu(uint32_t ms);
uint64_t get_time(void);
void copy(int value);
void paste(void);
void openurl(char_t *str);
void openfilesend(void);
/* use the file chooser to pick an avatar and set it as the user's */
void openfileavatar(void);
void savefilerecv(uint32_t fid, MSG_FILE *file);
void savefiledata(MSG_FILE *file);
void setselection(char_t *data, STRING_IDX length);
void video_frame(uint32_t id, uint8_t *img_data, uint16_t width, uint16_t height, _Bool resize);
void video_begin(uint32_t id, char_t *name, STRING_IDX name_length, uint16_t width, uint16_t height);
void video_end(uint32_t id);
void* video_detect(void);
_Bool video_init(void *handle);
void video_close(void *handle);
int video_getframe(uint8_t *y, uint8_t *u, uint8_t *v, uint16_t width, uint16_t height);
_Bool video_startread(void);
_Bool video_endread(void);
void audio_detect(void);
_Bool audio_init(void *handle);
_Bool audio_close(void *handle);
_Bool audio_frame(int16_t *buffer);
ToxAv* global_av;
void audio_play(int32_t call_index, const int16_t *data, int length, uint8_t channels);
void audio_begin(int32_t call_index);
void audio_end(int32_t call_index);
#define drawstr(x, y, i) drawtext(x, y, S(i), SLEN(i))
#define drawstr_getwidth(x, y, str) drawtext_getwidth(x, y, (char_t*)str, sizeof(str) - 1)
#define strwidth(x) textwidth((char_t*)x, sizeof(x) - 1)
#endif