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

« back to all changes in this revision

Viewing changes to build/src/lm-about-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 <gtk/gtk.h>
 
8
 
 
9
#ifndef __LM_ABOUT_DIALOG_H__
 
10
#define __LM_ABOUT_DIALOG_H__
 
11
 
 
12
#ifdef __cplusplus
 
13
extern "C" {
 
14
#endif /* __cplusplus */
 
15
 
 
16
 
 
17
/*
 
18
 * Type checking and casting macros
 
19
 */
 
20
#define LM_TYPE_ABOUT_DIALOG    (lm_about_dialog_get_type())
 
21
#define LM_ABOUT_DIALOG(obj)    G_TYPE_CHECK_INSTANCE_CAST((obj), lm_about_dialog_get_type(), LMAboutDialog)
 
22
#define LM_ABOUT_DIALOG_CONST(obj)      G_TYPE_CHECK_INSTANCE_CAST((obj), lm_about_dialog_get_type(), LMAboutDialog const)
 
23
#define LM_ABOUT_DIALOG_CLASS(klass)    G_TYPE_CHECK_CLASS_CAST((klass), lm_about_dialog_get_type(), LMAboutDialogClass)
 
24
#define LM_IS_ABOUT_DIALOG(obj) G_TYPE_CHECK_INSTANCE_TYPE((obj), lm_about_dialog_get_type ())
 
25
 
 
26
#define LM_ABOUT_DIALOG_GET_CLASS(obj)  G_TYPE_INSTANCE_GET_CLASS((obj), lm_about_dialog_get_type(), LMAboutDialogClass)
 
27
 
 
28
/*
 
29
 * Main object structure
 
30
 */
 
31
#ifndef __TYPEDEF_LM_ABOUT_DIALOG__
 
32
#define __TYPEDEF_LM_ABOUT_DIALOG__
 
33
typedef struct _LMAboutDialog LMAboutDialog;
 
34
#endif
 
35
struct _LMAboutDialog {
 
36
        GtkAboutDialog __parent__;
 
37
};
 
38
 
 
39
/*
 
40
 * Class definition
 
41
 */
 
42
typedef struct _LMAboutDialogClass LMAboutDialogClass;
 
43
struct _LMAboutDialogClass {
 
44
        GtkAboutDialogClass __parent__;
 
45
};
 
46
 
 
47
 
 
48
/*
 
49
 * Public methods
 
50
 */
 
51
GType   lm_about_dialog_get_type        (void);
 
52
 
 
53
#ifdef __cplusplus
 
54
}
 
55
#endif /* __cplusplus */
 
56
 
 
57
#endif