Code sync
[apps/native/starter.git] / test / get_theme.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 <stdio.h>
20 #include <X11/Xlib.h>
21 #include <X11/Xatom.h>
22 #include <X11/Xutil.h>
23
24 int main(int argc, char *argv[])
25 {
26         XTextProperty xtp;
27         Display *d;
28         Atom a_e17;
29         Status r;
30
31         d = XOpenDisplay(NULL);
32         if (d == NULL) {
33                 printf("Display open error\n");
34                 return 1;
35         }
36
37         a_e17 = XInternAtom(d, "ENLIGHTENMENT_THEME", False);
38         if (a_e17 == None) {
39                 printf("XInternAtom error\n");
40                 goto exit;
41         }
42
43         r = XGetTextProperty(d, DefaultRootWindow(d), &xtp, a_e17);
44         if (!r) {
45                 printf("XGetTextProperty error\n");
46                 goto exit;
47         }
48
49         printf("THEME: [%s]\n", (char *)xtp.value);
50
51         XFree(xtp.value);
52
53  exit:
54         XCloseDisplay(d);
55         return 0;
56 }