~ubuntu-branches/ubuntu/hardy/network-manager-applet/hardy

« back to all changes in this revision

Viewing changes to src/applet-dbus-info.h

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Mercatante
  • Date: 2007-06-15 12:46:22 UTC
  • Revision ID: james.westby@ubuntu.com-20070615124622-01cyrnf0uxxun4lz
Tags: upstream-0.6.5
ImportĀ upstreamĀ versionĀ 0.6.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */
 
2
/* NetworkManager Wireless Applet -- Display wireless access points and allow user control
 
3
 *
 
4
 * Dan Williams <dcbw@redhat.com>
 
5
 *
 
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.
 
10
 *
 
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.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the Free Software
 
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
19
 *
 
20
 * (C) Copyright 2004-2005 Red Hat, Inc.
 
21
 */
 
22
 
 
23
#ifndef APPLET_DBUS_INFO_H
 
24
#define APPLET_DBUS_INFO_H
 
25
 
 
26
#include <dbus/dbus.h>
 
27
#include "nm-device.h"
 
28
#include "wireless-network.h"
 
29
#include "NetworkManager.h"
 
30
#include "nm-gconf-wso.h"
 
31
 
 
32
DBusHandlerResult       nmi_dbus_info_message_handler                   (DBusConnection *connection, DBusMessage *message, void *user_data);
 
33
 
 
34
void                            nmi_dbus_return_user_key                                (DBusConnection *connection, DBusMessage *message, NMGConfWSO *security);
 
35
 
 
36
void                            nmi_dbus_signal_update_network          (DBusConnection *connection, const char *network, NMNetworkType type);
 
37
 
 
38
void                            nmi_dbus_signal_update_vpn_connection   (DBusConnection *connection, const char *name);
 
39
 
 
40
void                            nmi_dbus_signal_user_interface_activated        (DBusConnection *connection);
 
41
 
 
42
DBusMethodDispatcher *  nmi_dbus_nmi_methods_setup              (void);
 
43
 
 
44
#endif