~ubuntu-branches/ubuntu/raring/sflphone/raring

« back to all changes in this revision

Viewing changes to sflphone-client-gnome/src/config/addressbook-config.h

  • Committer: Package Import Robot
  • Author(s): Francois Marier
  • Date: 2011-11-25 13:24:12 UTC
  • mfrom: (4.1.10 sid)
  • Revision ID: package-import@ubuntu.com-20111125132412-dc4qvhyosk74cd42
Tags: 1.0.1-4
Don't assume that arch:all packages will get built (closes: #649726)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright (C) 2004, 2005, 2006, 2009, 2008, 2009, 2010, 2011 Savoir-Faire Linux Inc.
3
 
 *  Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
4
 
 *
5
 
 *  This program is free software; you can redistribute it and/or modify
6
 
 *  it under the terms of the GNU General Public License as published by
7
 
 *  the Free Software Foundation; either version 3 of the License, or
8
 
 *  (at your option) any later version.
9
 
 *
10
 
 *  This program is distributed in the hope that it will be useful,
11
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
14
 
 *
15
 
 *  You should have received a copy of the GNU General Public License
16
 
 *  along with this program; if not, write to the Free Software
17
 
 *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
 
 *
19
 
 *  Additional permission under GNU GPL version 3 section 7:
20
 
 *
21
 
 *  If you modify this program, or any covered work, by linking or
22
 
 *  combining it with the OpenSSL project's OpenSSL library (or a
23
 
 *  modified version of that library), containing parts covered by the
24
 
 *  terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
25
 
 *  grants you additional permission to convey the resulting work.
26
 
 *  Corresponding Source for a non-source form of such a combination
27
 
 *  shall include the source code for the parts of OpenSSL used as well
28
 
 *  as that of the covered work.
29
 
 */
30
 
 
31
 
#ifndef _ADDRESS_BOOK_CONFIG
32
 
#define _ADDRESS_BOOK_CONFIG
33
 
 
34
 
#include <gtk/gtk.h>
35
 
#include <glib/gtypes.h>
36
 
 
37
 
#include "actions.h"
38
 
#include <utils.h>
39
 
 
40
 
G_BEGIN_DECLS
41
 
 
42
 
#define ADDRESSBOOK_ENABLE                  "ADDRESSBOOK_ENABLE"
43
 
#define ADDRESSBOOK_MAX_RESULTS             "ADDRESSBOOK_MAX_RESULTS"
44
 
#define ADDRESSBOOK_DISPLAY_CONTACT_PHOTO   "ADDRESSBOOK_DISPLAY_CONTACT_PHOTO"
45
 
#define ADDRESSBOOK_DISPLAY_PHONE_BUSINESS   "ADDRESSBOOK_DISPLAY_PHONE_BUSINESS"
46
 
#define ADDRESSBOOK_DISPLAY_PHONE_HOME       "ADDRESSBOOK_DISPLAY_PHONE_HOME"
47
 
#define ADDRESSBOOK_DISPLAY_PHONE_MOBILE     "ADDRESSBOOK_DISPLAY_PHONE_MOBILE"
48
 
 
49
 
typedef struct _AddressBook_Config {
50
 
    // gint64: a signed integer guaranteed to be 64 bits on all platforms
51
 
    // To print or scan values of this type, use G_GINT64_MODIFIER and/or G_GINT64_FORMAT
52
 
    gint enable;
53
 
    gint max_results;
54
 
    gint display_contact_photo;
55
 
    gint search_phone_home;
56
 
    gint search_phone_business;
57
 
    gint search_phone_mobile;
58
 
} AddressBook_Config;
59
 
 
60
 
/**
61
 
 * Save the parameters through D-BUS
62
 
 */
63
 
void
64
 
addressbook_config_save_parameters (void);
65
 
 
66
 
/**
67
 
 * Initialize the address book structure, and retrieve the saved parameters through D-Bus
68
 
 *
69
 
 * @param settings  The addressbook structure
70
 
 */
71
 
void
72
 
addressbook_config_load_parameters (AddressBook_Config **settings);
73
 
 
74
 
gboolean
75
 
addressbook_display (AddressBook_Config *settings, const gchar *field);
76
 
 
77
 
GtkWidget*
78
 
create_addressbook_settings();
79
 
 
80
 
G_END_DECLS
81
 
 
82
 
#endif // _ADDRESS_BOOK_CONFIG