aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-geometry.c
blob: 531d21a94b9df7a3d3d3e4e99ad459e0131f0be1 (plain) (blame)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2006-2007 Imendio AB
 * Copyright (C) 2007 Collabora Ltd.
 *
 * 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., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Authors: Martyn Russell <martyn@imendio.com>
 *          Xavier Claessens <xclaesse@gmail.com>
 */

#include "config.h"

#include <sys/stat.h>

#include <glib.h>
#include <gdk/gdk.h>

#include <libempathy/empathy-debug.h>

#include "empathy-geometry.h"

#define DEBUG_DOMAIN "Geometry"

#define GEOMETRY_DIR_CREATE_MODE  (S_IRUSR | S_IWUSR | S_IXUSR)
#define GEOMETRY_FILE_CREATE_MODE (S_IRUSR | S_IWUSR)

#define GEOMETRY_KEY_FILENAME     "geometry.ini"
#define GEOMETRY_FORMAT           "%d,%d,%d,%d"
#define GEOMETRY_GROUP_NAME       "geometry"

static gchar *geometry_get_filename (void);

static gchar *
geometry_get_filename (void)
{
    gchar *dir;
    gchar *filename;

    dir = g_build_filename (g_get_home_dir (), ".gnome2", PACKAGE_NAME, NULL);
    if (!g_file_test (dir, G_FILE_TEST_EXISTS | G_FILE_TEST_IS_DIR)) {
        empathy_debug (DEBUG_DOMAIN, "Creating directory:'%s'", dir);
        g_mkdir_with_parents (dir, GEOMETRY_DIR_CREATE_MODE);
    }

    filename = g_build_filename (dir, GEOMETRY_KEY_FILENAME, NULL);
    g_free (dir);

    return filename;
}

void
empathy_geometry_save (const gchar *name,
              gint         x,
              gint         y,
              gint         w,
              gint         h)
{
    GError      *error = NULL;
    GKeyFile    *key_file;
    gchar       *filename;
    GdkScreen   *screen;
    gint         max_width;
    gint         max_height;
    gchar       *content;
    gsize        length;
    gchar       *str;

    empathy_debug (DEBUG_DOMAIN, "Saving window geometry: x:%d, y:%d, w:%d, h:%d\n",
              x, y, w, h);

    screen = gdk_screen_get_default ();
    max_width = gdk_screen_get_width (screen);
    max_height = gdk_screen_get_height (screen);

    w = CLAMP (w, 100, max_width);
    h = CLAMP (h, 100, max_height);

    x = CLAMP (x, 0, max_width - w);
    y = CLAMP (y, 0, max_height - h);

    str = g_strdup_printf (GEOMETRY_FORMAT, x, y, w, h);

    key_file = g_key_file_new ();

    filename = geometry_get_filename ();

    g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, NULL);
    g_key_file_set_string (key_file, GEOMETRY_GROUP_NAME, name, str);

    g_free (str);

    content = g_key_file_to_data (key_file, &length, NULL);
    if (!g_file_set_contents (filename, content, length, &error)) {
        g_warning ("Couldn't save window geometry, error:%d->'%s'",
               error->code, error->message);
        g_error_free (error);
    }

    g_free (content);
    g_free (filename);
    g_key_file_free (key_file);
}

void
empathy_geometry_load (const gchar *name,
              gint        *x,
              gint        *y,
              gint        *w,
              gint        *h)
{
    GKeyFile    *key_file;
    gchar       *filename;
    gchar       *str = NULL;

    if (x) {
        *x = -1;
    }

    if (y) {
        *y = -1;
    }

    if (w) {
        *w = -1;
    }

    if (h) {
        *h = -1;
    }

    key_file = g_key_file_new ();

    filename = geometry_get_filename ();

    if (g_key_file_load_from_file (key_file, filename, G_KEY_FILE_NONE, NULL)) {
        str = g_key_file_get_string (key_file, GEOMETRY_GROUP_NAME, name, NULL);
    }

    if (str) {
        gint tmp_x, tmp_y, tmp_w, tmp_h;

        sscanf (str, GEOMETRY_FORMAT, &tmp_x, &tmp_y, &tmp_w, &tmp_h);

        if (x) {
            *x = tmp_x;
        }

        if (y) {
            *y = tmp_y;
        }

        if (w) {
            *w = tmp_w;
        }

        if (h) {
            *h = tmp_h;
        }

        g_free (str);
    }

    empathy_debug (DEBUG_DOMAIN, "Loading window geometry: x:%d, y:%d, w:%d, h:%d\n",
              x ? *x : -1,
              y ? *y : -1,
              w ? *w : -1,
              h ? *h : -1);

    g_free (filename);
    g_key_file_free (key_file);
}