forked from multirom-dev/multirom
-
Notifications
You must be signed in to change notification settings - Fork 12
/
multirom_ui_themes.c
71 lines (58 loc) · 1.89 KB
/
multirom_ui_themes.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
/*
* This file is part of MultiROM.
*
* MultiROM 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 3 of the License, or
* (at your option) any later version.
*
* MultiROM 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 MultiROM. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include "multirom_ui.h"
#include "multirom_ui_themes.h"
#include "multirom.h"
#include "lib/util.h"
#include "lib/log.h"
multirom_themes_info *multirom_ui_init_themes(void)
{
multirom_themes_info *i = mzalloc(sizeof(multirom_themes_info));
i->data = mzalloc(sizeof(multirom_theme_data));
#define ADD_THEME(RES) \
extern struct multirom_theme theme_info_ ## RES; \
list_add(&i->themes, &theme_info_ ## RES);
// universal themes which scale according to DPI_MUL
ADD_THEME(landscape);
ADD_THEME(portrait);
return i;
}
void multirom_ui_free_themes(multirom_themes_info *i)
{
list_clear(&i->themes, NULL);
free(i->data);
free(i);
}
multirom_theme *multirom_ui_select_theme(multirom_themes_info *i, int w, int h)
{
if(i->themes == NULL)
return NULL;
multirom_theme *universal = NULL;
const int uni_type = (w > h) ? TH_LANDSCAPE : TH_PORTRAIT;
multirom_theme **itr;
for(itr = i->themes; *itr; ++itr)
{
if((*itr)->width == w && (*itr)->height == h)
return *itr;
if((*itr)->width == uni_type)
universal = *itr;
}
if(universal)
INFO("Using universal theme (%d)\n", uni_type);
return universal;
}