File: pixmap.c

package info (click to toggle)
evms 1.0.0-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 9,168 kB
  • ctags: 5,853
  • sloc: ansic: 87,317; makefile: 691; sh: 238
file content (343 lines) | stat: -rw-r--r-- 12,419 bytes parent folder | download
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
/*
 *
 *   Copyright (c) International Business Machines  Corp., 2001
 *
 *   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
 *
 * Module: pixmap.c
 */

#include <frontend.h>

#include <gtk/gtk.h>

#include "pixmap.h"
#include "xpm/unchecked.xpm"
#include "xpm/checkmark.xpm"
#include "xpm/red_checkmark.xpm"
#include "xpm/disk.xpm"
#include "xpm/partition.xpm"
#include "xpm/container.xpm"
#include "xpm/region.xpm"
#include "xpm/object.xpm"
#include "xpm/volume.xpm"
#include "xpm/volume_open.xpm"
#include "xpm/plugin.xpm"
#include "xpm/refresh.xpm"
#include "xpm/info.xpm"
#include "xpm/error.xpm"
#include "xpm/warning.xpm"
#include "xpm/question.xpm"
#include "xpm/topmost.xpm"
#include "logging.h"

static GdkPixmap *unchecked_pixmap;
static GdkBitmap *unchecked_pixmap_mask;
static GdkPixmap *checkmark_pixmap;
static GdkBitmap *checkmark_pixmap_mask;
static GdkPixmap *red_checkmark_pixmap;
static GdkBitmap *red_checkmark_pixmap_mask;
static GdkPixmap *disk_pixmap;
static GdkBitmap *disk_pixmap_mask;
static GdkPixmap *partition_pixmap;
static GdkBitmap *partition_pixmap_mask;
static GdkPixmap *container_pixmap;
static GdkBitmap *container_pixmap_mask;
static GdkPixmap *region_pixmap;
static GdkBitmap *region_pixmap_mask;
static GdkPixmap *object_pixmap;
static GdkBitmap *object_pixmap_mask;
static GdkPixmap *volume_pixmap;
static GdkBitmap *volume_pixmap_mask;
static GdkPixmap *volume_open_pixmap;
static GdkBitmap *volume_open_pixmap_mask;
static GdkPixmap *plugin_pixmap;
static GdkBitmap *plugin_pixmap_mask;
static GdkPixmap *info_pixmap;
static GdkBitmap *info_pixmap_mask;
static GdkPixmap *error_pixmap;
static GdkBitmap *error_pixmap_mask;
static GdkPixmap *warning_pixmap;
static GdkBitmap *warning_pixmap_mask;
static GdkPixmap *question_pixmap;
static GdkBitmap *question_pixmap_mask;
static GdkPixmap *refresh_pixmap;
static GdkBitmap *refresh_pixmap_mask;
static GdkPixmap *topmost_pixmap;
static GdkBitmap *topmost_pixmap_mask;

/*
 *
 *   void create_standard_pixmaps (GtkWidget *)
 *
 *   Description:
 *      This routine creates some of the often seen and used
 *      GdkPixmaps. This routine should be called once from
 *      either main() or an init routine called by main().
 *      The GdkPixmap and GdkBitmap pointers should be accessed
 *      through one of the get functions from this file.
 * 
 *   Entry:
 *      widget - used to provide colormap to
 *               gdk_pixmap_colormap_create_from_xpm_d().
 *
 *   Exit:
 *      Creates the GdkPixmaps and saves the pointers in the file
 *      scope static variables defined above.
 *
 */
void create_standard_pixmaps (GtkWidget *widget)
{
    GdkColormap *colormap;
    
    colormap = gtk_widget_get_colormap (widget);

    unchecked_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, 
                                                              &unchecked_pixmap_mask,
                                                              NULL, unchecked_xpm);
    
    unchecked_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, 
                                                              &unchecked_pixmap_mask,
                                                              NULL, unchecked_xpm);
    
    checkmark_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                              &checkmark_pixmap_mask, 
                                                              NULL, checkmark_xpm);

    red_checkmark_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, 
                                                                  &red_checkmark_pixmap_mask, 
                                                                  NULL, red_checkmark_xpm);

    disk_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, 
                                                         &disk_pixmap_mask, 
                                                         NULL, disk_xpm);

    partition_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap, 
                                                              &partition_pixmap_mask, 
                                                              NULL, partition_xpm);

    container_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                              &container_pixmap_mask, 
                                                              NULL, container_xpm);

    region_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                           &region_pixmap_mask, 
                                                           NULL, region_xpm);

    object_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                           &object_pixmap_mask, 
                                                           NULL, object_xpm);

    volume_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                           &volume_pixmap_mask, 
                                                           NULL, volume_xpm);

    volume_open_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                                &volume_open_pixmap_mask, 
                                                                NULL, volume_open_xpm);

    plugin_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                           &plugin_pixmap_mask, 
                                                           NULL, plugin_xpm);
                                                           
    refresh_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                            &refresh_pixmap_mask, 
                                                            NULL, refresh_xpm);
                                                            
    info_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                         &info_pixmap_mask, 
                                                         NULL, info_xpm);
                                                            
    error_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                          &error_pixmap_mask, 
                                                          NULL, error_xpm);
                                                            
    warning_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                            &warning_pixmap_mask,
                                                            NULL, warning_xpm);
                                                            
    question_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                             &question_pixmap_mask,
                                                             NULL, question_xpm);
                                                             
    topmost_pixmap = gdk_pixmap_colormap_create_from_xpm_d (NULL, colormap,
                                                            &topmost_pixmap_mask,
                                                            NULL, topmost_xpm);
}

/*
 *
 *   void get_pixmap_for_object_type (object_type_t, GdkPixmap **, GdkBitmap **)
 *   
 *   Description:
 *      This routine returns the GdkPixmap * and GdkBitmap *
 *      corresponding to the pixmap and mask for the icon
 *      representing the given object type.
 * 
 *   Entry:
 *      type   - the object type, e.g. DISK, SEGMENT, or REGION
 *      pixmap - the address of where to store the pointer to the pixmap
 *      mask   - the address of where to store the pointer to the mask
 *
 *   Exit:
 *      The pointers are set with the proper pixmap and mask pointers
 *      allocated at init time.
 *
 */
void get_pixmap_for_object_type (object_type_t type, GdkPixmap **pixmap, GdkBitmap **mask)
{
    switch (type)
    {
        case VOLUME:
            *pixmap = volume_pixmap;
            *mask   = volume_pixmap_mask;
            break;

        case EVMS_OBJECT:
            *pixmap = object_pixmap; 
            *mask   = object_pixmap_mask;
            break;

        case REGION:
            *pixmap = region_pixmap;
            *mask   = region_pixmap_mask;
            break;

        case CONTAINER:
            *pixmap = container_pixmap; 
            *mask   = container_pixmap_mask;
            break;

        case SEGMENT:
            *pixmap = partition_pixmap;
            *mask   = partition_pixmap_mask;
            break;

        case DISK:
            *pixmap = disk_pixmap;
            *mask   = disk_pixmap_mask;
            break;

        case PLUGIN:
            *pixmap = plugin_pixmap;
            *mask   = plugin_pixmap_mask;
            break;

        default:
            *pixmap = NULL;
            *mask   = NULL;
            log_warning ("%s: Unknown type %d.\n", __FUNCTION__, type);
            break;
    }
}

/*
 *
 *   void get_dialog_pixmap (dialog_pixmap_type_t, GdkPixmap **, GdkBitmap **)
 *   
 *   Description:
 *      This routine returns the GdkPixmap * and GdkBitmap *
 *      for a given dialog pixmap type.
 * 
 *   Entry:
 *      type   - INFO_PIXMAP, ERROR_PIXMAP, WARNING_PIXMAP, or QUESTION_PIXMAP
 *      pixmap - the address of where to store the pointer to the pixmap
 *      mask   - the address of where to store the pointer to the mask
 *
 *   Exit:
 *      The pointers are set with the proper pixmap and mask pointers
 *      allocated at init time.
 *
 */
void get_dialog_pixmap (dialog_pixmap_type_t type, GdkPixmap **pixmap, GdkBitmap **mask)
{
    switch (type)
    {
        case INFO_PIXMAP:
            *pixmap = info_pixmap;
            *mask   = info_pixmap_mask;
            break;

        case WARNING_PIXMAP:
            *pixmap = warning_pixmap; 
            *mask   = warning_pixmap_mask;
            break;

        case ERROR_PIXMAP:
            *pixmap = error_pixmap;
            *mask   = error_pixmap_mask;
            break;

        case QUESTION_PIXMAP:
            *pixmap = question_pixmap; 
            *mask   = question_pixmap_mask;
            break;

        default:
            *pixmap = NULL;
            *mask   = NULL;
            log_warning ("%s: Unknown type %d.\n", __FUNCTION__, type);
            break;
    }
}

void get_checkmark_box_pixmap (gboolean critical, gboolean checked, GdkPixmap **pixmap, GdkBitmap **mask)
{
    if (checked)
    {
        if (critical)
        {
            *pixmap = red_checkmark_pixmap;
            *mask   = red_checkmark_pixmap_mask;
        }
        else
        {
            *pixmap = checkmark_pixmap;
            *mask   = checkmark_pixmap_mask;
        }
    }
    else
    {
        *pixmap = unchecked_pixmap;
        *mask   = unchecked_pixmap_mask;
    }
}

void get_open_volume_pixmap (GdkPixmap **pixmap, GdkBitmap **mask)
{
    *pixmap = volume_open_pixmap;
    *mask   = volume_open_pixmap_mask;
}

void get_refresh_pixmap (GdkPixmap **pixmap, GdkBitmap **mask)
{
    *pixmap = refresh_pixmap;
    *mask   = refresh_pixmap_mask;
}

void get_topmost_pixmap (GdkPixmap **pixmap, GdkBitmap **mask)
{
    *pixmap = topmost_pixmap;
    *mask   = topmost_pixmap_mask;
}

void set_clist_row_pixmap (GtkCList *clist, gint row, object_type_t type)
{
    GdkBitmap *mask;
    GdkPixmap *pixmap;

    get_pixmap_for_object_type (type, &pixmap, &mask);
    gtk_clist_set_pixmap (clist, row, 0, pixmap, mask);
}