2001-09-15 02:37:02 +00:00
|
|
|
/* msm SmProp utils */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 Havoc Pennington
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MSM_PROPS_H
|
|
|
|
#define MSM_PROPS_H
|
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
#include <X11/ICE/ICElib.h>
|
|
|
|
#include <X11/SM/SMlib.h>
|
|
|
|
|
|
|
|
GList* proplist_find_link_by_name (GList *list,
|
|
|
|
const char *name);
|
|
|
|
SmProp* proplist_find_by_name (GList *list,
|
|
|
|
const char *name);
|
|
|
|
gboolean proplist_find_card8 (GList *list,
|
|
|
|
const char *name,
|
|
|
|
int *result);
|
|
|
|
gboolean proplist_find_string (GList *list,
|
|
|
|
const char *name,
|
|
|
|
char **result);
|
|
|
|
gboolean proplist_find_vector (GList *list,
|
|
|
|
const char *name,
|
|
|
|
int *argcp,
|
|
|
|
char ***argvp);
|
|
|
|
|
2001-09-16 00:30:45 +00:00
|
|
|
GList* proplist_replace (GList *list,
|
|
|
|
SmProp *new_prop);
|
|
|
|
|
|
|
|
GList* proplist_delete (GList *list,
|
|
|
|
const char *name);
|
|
|
|
|
|
|
|
GList* proplist_replace_card8 (GList *list,
|
|
|
|
const char *name,
|
|
|
|
int value);
|
|
|
|
GList* proplist_replace_string (GList *list,
|
|
|
|
const char *name,
|
|
|
|
const char *str,
|
|
|
|
int len);
|
|
|
|
GList* proplist_replace_vector (GList *list,
|
|
|
|
const char *name,
|
|
|
|
int argc,
|
|
|
|
char **argv);
|
|
|
|
|
2001-09-15 02:37:02 +00:00
|
|
|
gboolean smprop_get_card8 (SmProp *prop,
|
|
|
|
int *result);
|
|
|
|
gboolean smprop_get_string (SmProp *prop,
|
|
|
|
char **result);
|
|
|
|
gboolean smprop_get_vector (SmProp *prop,
|
|
|
|
int *argcp,
|
|
|
|
char ***argvp);
|
|
|
|
|
2001-09-16 00:30:45 +00:00
|
|
|
SmProp* smprop_new_card8 (const char *name,
|
|
|
|
int value);
|
|
|
|
SmProp* smprop_new_string (const char *name,
|
|
|
|
const char *str,
|
|
|
|
int len);
|
|
|
|
SmProp* smprop_new_vector (const char *name,
|
|
|
|
int argc,
|
|
|
|
char **argv);
|
|
|
|
|
|
|
|
|
2001-09-15 02:37:02 +00:00
|
|
|
SmProp* smprop_copy (SmProp *prop);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|