1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 obt/ddparse.h for the Openbox window manager
4 Copyright (c) 2009 Dana Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
21 typedef struct _ObtDDParseGroup ObtDDParseGroup
;
26 OBT_DDPARSE_LOCALESTRING
,
28 OBT_DDPARSE_LOCALESTRINGS
,
31 OBT_DDPARSE_ENUM_TYPE
,
32 OBT_DDPARSE_ENVIRONMENTS
,
33 OBT_DDPARSE_NUM_VALUE_TYPES
34 } ObtDDParseValueType
;
36 typedef struct _ObtDDParseValue
{
37 ObtDDParseValueType type
;
38 union _ObtDDParseValueValue
{
40 struct _ObtDDParseValueStrings
{
47 guint environments
; /*!< A mask of flags from ObtLinkEnvMask */
51 /* Returns a hash table where the keys are groups, and the values are
53 GHashTable
* obt_ddparse_file(const gchar
*name
, GSList
*paths
);
55 /* Returns a hash table where the keys are "keys" in the .desktop file,
56 and the values are "values" in the .desktop file, for the group @g. */
57 GHashTable
* obt_ddparse_group_keys(ObtDDParseGroup
*g
);