~ubuntu-branches/debian/sid/link-monitor-applet/sid

« back to all changes in this revision

Viewing changes to build/src/lm-preferences-dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Adriaan Peeters
  • Date: 2008-03-30 22:26:13 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20080330222613-5aubcuo9mgg2n7st
Tags: upstream-3.0
ImportĀ upstreamĀ versionĀ 3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Generated by GOB (v2.0.15)   (do not edit directly) */
 
2
 
 
3
#include <glib.h>
 
4
#include <glib-object.h>
 
5
 
 
6
 
 
7
#include "lm-dialog.h"
 
8
#include "lm-non-linear-range.h"
 
9
 
 
10
#ifndef __LM_PREFERENCES_DIALOG_H__
 
11
#define __LM_PREFERENCES_DIALOG_H__
 
12
 
 
13
#ifdef __cplusplus
 
14
extern "C" {
 
15
#endif /* __cplusplus */
 
16
 
 
17
 
 
18
 
 
19
extern const LMNonLinearRangeBlock lm_preferences_dialog_tooltip_graph_span_blocks[];
 
20
extern const int lm_preferences_dialog_num_tooltip_graph_span_blocks;
 
21
 
 
22
 
 
23
/*
 
24
 * Type checking and casting macros
 
25
 */
 
26
#define LM_TYPE_PREFERENCES_DIALOG      (lm_preferences_dialog_get_type())
 
27
#define LM_PREFERENCES_DIALOG(obj)      G_TYPE_CHECK_INSTANCE_CAST((obj), lm_preferences_dialog_get_type(), LMPreferencesDialog)
 
28
#define LM_PREFERENCES_DIALOG_CONST(obj)        G_TYPE_CHECK_INSTANCE_CAST((obj), lm_preferences_dialog_get_type(), LMPreferencesDialog const)
 
29
#define LM_PREFERENCES_DIALOG_CLASS(klass)      G_TYPE_CHECK_CLASS_CAST((klass), lm_preferences_dialog_get_type(), LMPreferencesDialogClass)
 
30
#define LM_IS_PREFERENCES_DIALOG(obj)   G_TYPE_CHECK_INSTANCE_TYPE((obj), lm_preferences_dialog_get_type ())
 
31
 
 
32
#define LM_PREFERENCES_DIALOG_GET_CLASS(obj)    G_TYPE_INSTANCE_GET_CLASS((obj), lm_preferences_dialog_get_type(), LMPreferencesDialogClass)
 
33
 
 
34
/* Private structure type */
 
35
typedef struct _LMPreferencesDialogPrivate LMPreferencesDialogPrivate;
 
36
 
 
37
/*
 
38
 * Main object structure
 
39
 */
 
40
#ifndef __TYPEDEF_LM_PREFERENCES_DIALOG__
 
41
#define __TYPEDEF_LM_PREFERENCES_DIALOG__
 
42
typedef struct _LMPreferencesDialog LMPreferencesDialog;
 
43
#endif
 
44
struct _LMPreferencesDialog {
 
45
        LMDialog __parent__;
 
46
        /*< private >*/
 
47
        LMPreferencesDialogPrivate *_priv;
 
48
};
 
49
 
 
50
/*
 
51
 * Class definition
 
52
 */
 
53
typedef struct _LMPreferencesDialogClass LMPreferencesDialogClass;
 
54
struct _LMPreferencesDialogClass {
 
55
        LMDialogClass __parent__;
 
56
};
 
57
 
 
58
 
 
59
/*
 
60
 * Public methods
 
61
 */
 
62
GType   lm_preferences_dialog_get_type  (void);
 
63
 
 
64
/*
 
65
 * Argument wrapping macros
 
66
 */
 
67
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 
68
#define LM_PREFERENCES_DIALOG_PROP_APPLET(arg)          "applet", __extension__ ({gpointer z = (arg); z;})
 
69
#define LM_PREFERENCES_DIALOG_GET_PROP_APPLET(arg)      "applet", __extension__ ({gpointer *z = (arg); z;})
 
70
#else /* __GNUC__ && !__STRICT_ANSI__ */
 
71
#define LM_PREFERENCES_DIALOG_PROP_APPLET(arg)          "applet",(gpointer )(arg)
 
72
#define LM_PREFERENCES_DIALOG_GET_PROP_APPLET(arg)      "applet",(gpointer *)(arg)
 
73
#endif /* __GNUC__ && !__STRICT_ANSI__ */
 
74
 
 
75
 
 
76
#ifdef __cplusplus
 
77
}
 
78
#endif /* __cplusplus */
 
79
 
 
80
#endif