diff options
author | nobody <nobody@localhost> | 2002-05-16 00:19:25 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-05-16 00:19:25 +0800 |
commit | 3f567f3809741b6b846eb55c974d1ffc694753b8 (patch) | |
tree | 9a14849dd3a40bd1667b88d689e2aa7d58d08bce /notes/e-note.h | |
parent | 74f4231f4eb650f0243ff39ab5a085b1df4f7697 (diff) | |
download | gsoc2013-evolution-GEDIT_2_0_4.tar.gz gsoc2013-evolution-GEDIT_2_0_4.tar.zst gsoc2013-evolution-GEDIT_2_0_4.zip |
This commit was manufactured by cvs2svn to create tag 'GEDIT_2_0_4'.GEDIT_2_0_4
svn path=/tags/GEDIT_2_0_4/; revision=16835
Diffstat (limited to 'notes/e-note.h')
-rw-r--r-- | notes/e-note.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/notes/e-note.h b/notes/e-note.h deleted file mode 100644 index d7d4c63b95..0000000000 --- a/notes/e-note.h +++ /dev/null @@ -1,37 +0,0 @@ -/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ - -#ifndef __E_NOTE_H__ -#define __E_NOTE_H__ - -#include <config.h> -#include <gnome.h> -#include "e-bevel-button.h" - -#define E_TYPE_NOTE (e_note_get_type ()) -#define E_NOTE(obj) (GTK_CHECK_CAST ((obj), E_TYPE_NOTE, ENote)) -#define E_NOTE_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_NOTE, ENoteClass)) -#define E_IS_NOTE(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_NOTE)) -#define E_IS_NOTE_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), E_TYPE_NOTE)) - -typedef struct _ENote ENote; -typedef struct _ENotePrivate ENotePrivate; -typedef struct _ENoteClass ENoteClass; - -struct _ENote { - GtkWindow parent; - - ENotePrivate *priv; -}; - -struct _ENoteClass { - GtkWindowClass parent_class; - - void (* text_changed) (ENote *note); -}; - -GtkType e_note_get_type (void); -GtkWidget *e_note_new (void); -void e_note_set_text (ENote *note, gchar *text); -gchar *e_note_get_text (ENote *note); - -#endif /* __E_NOTE_H__ */ |