Code sync
[apps/native/starter.git] / src / x11.c
1  /*
2   * Copyright 2012  Samsung Electronics Co., Ltd
3   *
4   * Licensed under the Flora License, Version 1.0 (the "License");
5   * you may not use this file except in compliance with the License.
6   * You may obtain a copy of the License at
7   *
8   *     http://www.tizenopensource.org/license
9   *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16
17
18
19 #include <string.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22
23 #include <X11/Xlib.h>
24 #include <X11/Xatom.h>
25 #include <X11/Xutil.h>
26
27 #define DEFAULT_WINDOW_H 1280
28
29 void prop_string_set(const char *name, const char *value)
30 {
31         Display *d;
32         Atom a_name;
33         Atom a_UTF8;
34         XTextProperty xtp;
35
36         if (name == NULL || value == NULL || value[0] == '\0')
37                 return;
38
39         d = XOpenDisplay(NULL);
40         if (d == NULL)
41                 return;
42
43         a_name = XInternAtom(d, name, False);
44         if (a_name == None)
45                 goto exit;
46
47         a_UTF8 = XInternAtom(d, "UTF8_STRING", False);
48         if (a_UTF8 == None)
49                 goto exit;
50
51         xtp.value = (unsigned char *)value;
52         xtp.format = 8;
53         xtp.encoding = a_UTF8;
54         xtp.nitems = strlen(value);
55
56         XSetTextProperty(d, DefaultRootWindow(d), &xtp, a_name);
57
58  exit:
59         XCloseDisplay(d);
60 }
61
62 void prop_int_set(const char *name, unsigned int val)
63 {
64         Display *d;
65         Atom a_name;
66
67         if (name == NULL)
68                 return;
69
70         d = XOpenDisplay(NULL);
71         if (d == NULL)
72                 return;
73
74         a_name = XInternAtom(d, name, False);
75         if (a_name == None)
76                 goto exit;
77
78         XChangeProperty(d, DefaultRootWindow(d), a_name, XA_CARDINAL, 32,
79                         PropModeReplace, (unsigned char *)&val, 1);
80
81  exit:
82         XCloseDisplay(d);
83 }
84
85 void set_window_scale(void)
86 {
87         double root_width = 0.0, root_height = 0.0;
88         char buf[128] = { 0, };
89         Display *disp;
90         int screen_num;
91
92         disp = XOpenDisplay(NULL);
93         if (disp == NULL)
94                 return;
95
96         screen_num = DefaultScreen(disp);
97
98         root_width = DisplayWidth(disp, screen_num);
99         root_height = DisplayHeight(disp, screen_num);
100
101         XCloseDisplay(disp);
102
103         snprintf(buf, sizeof(buf), "%lf", root_height / DEFAULT_WINDOW_H);
104
105         if (root_width == 800 && root_height == 1280) {
106                 snprintf(buf, sizeof(buf), "0.71");
107         }
108
109         setenv("ELM_SCALE", buf, 1);
110         setenv("SCALE_FACTOR", buf, 1);
111 }