summaryrefslogtreecommitdiff
path: root/xfce4-session/xfsm-client.h
blob: a06387d9149f05cac4caf996deebc3b4ddcbb932 (plain)
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
/* $Id$ */
/*-
 * Copyright (c) 2003-2004 Benedikt Meurer <benny@xfce.org>
 * All rights reserved.
 *
 * 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, 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 __XFSM_CLIENT_H__
#define __XFSM_CLIENT_H__

#include <xfce4-session/xfsm-properties.h>

typedef struct _XfsmClient XfsmClient;

typedef enum
{
  XFSM_CLIENT_IDLE,
  XFSM_CLIENT_INTERACTING,
  XFSM_CLIENT_SAVEDONE,
  XFSM_CLIENT_SAVING,
  XFSM_CLIENT_SAVINGLOCAL,
  XFSM_CLIENT_WAITFORINTERACT,
  XFSM_CLIENT_WAITFORPHASE2,
  XFSM_CLIENT_DISCONNECTED,
} XfsmClientState;
  

struct _XfsmClient
{
  XfsmClientState state;
  const gchar    *id;
  XfsmProperties *properties;
  SmsConn sms_conn;
  guint save_timeout_id;
  gpointer manager;  /* (XfsmManager *) */
};


#define XFSM_CLIENT(c) ((XfsmClient *) (c))


XfsmClient *xfsm_client_new (SmsConn sms_conn);

void xfsm_client_free (XfsmClient *client);

void xfsm_client_set_initial_properties (XfsmClient     *client,
                                         XfsmProperties *properties);

#endif /* !__XFSM_CLIENT_H__ */