~oem-solutions-group/network-manager/network-mananger-applet-hardy

« back to all changes in this revision

Viewing changes to src/connection-editor/page-mobile.h

  • Committer: Neil Jagdish Patel
  • Date: 2008-11-19 16:42:12 UTC
  • Revision ID: neil.patel@canonical.com-20081119164212-0v212d4hpst66ish
* Initial import
  - Source from https://edge.launchpad.net/%7Enetwork-manager/+archive/+files/network-manager-applet_0.7~~svn20081012t133407.orig.tar.gz

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
 
2
/* NetworkManager Connection editor -- Connection editor for NetworkManager
 
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 along
 
17
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
18
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
19
 *
 
20
 * (C) Copyright 2008 Red Hat, Inc.
 
21
 */
 
22
 
 
23
#ifndef __PAGE_MOBILE_H__
 
24
#define __PAGE_MOBILE_H__
 
25
 
 
26
#include <nm-connection.h>
 
27
 
 
28
#include <glib/gtypes.h>
 
29
#include <glib-object.h>
 
30
 
 
31
#include "ce-page.h"
 
32
 
 
33
#define CE_TYPE_PAGE_MOBILE            (ce_page_mobile_get_type ())
 
34
#define CE_PAGE_MOBILE(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CE_TYPE_PAGE_MOBILE, CEPageMobile))
 
35
#define CE_PAGE_MOBILE_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CE_TYPE_PAGE_MOBILE, CEPageMobileClass))
 
36
#define CE_IS_PAGE_MOBILE(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CE_TYPE_PAGE_MOBILE))
 
37
#define CE_IS_PAGE_MOBILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), CE_TYPE_PAGE_MOBILE))
 
38
#define CE_PAGE_MOBILE_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), CE_TYPE_PAGE_MOBILE, CEPageMobileClass))
 
39
 
 
40
typedef struct {
 
41
        CEPage parent;
 
42
} CEPageMobile;
 
43
 
 
44
typedef struct {
 
45
        CEPageClass parent;
 
46
} CEPageMobileClass;
 
47
 
 
48
GType ce_page_mobile_get_type (void);
 
49
 
 
50
CEPageMobile *ce_page_mobile_new (NMConnection *connection);
 
51
 
 
52
#endif  /* __PAGE_MOBILE_H__ */