aboutsummaryrefslogtreecommitdiffstats
path: root/notes/e-note.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2002-05-16 00:19:25 +0800
committernobody <nobody@localhost>2002-05-16 00:19:25 +0800
commitd27d55fe051d6f3bf5a5670f71ee2e0e9ee1c71e (patch)
tree9a14849dd3a40bd1667b88d689e2aa7d58d08bce /notes/e-note.h
parent74f4231f4eb650f0243ff39ab5a085b1df4f7697 (diff)
downloadgsoc2013-evolution-guikachu-1_2_3.tar
gsoc2013-evolution-guikachu-1_2_3.tar.gz
gsoc2013-evolution-guikachu-1_2_3.tar.bz2
gsoc2013-evolution-guikachu-1_2_3.tar.lz
gsoc2013-evolution-guikachu-1_2_3.tar.xz
gsoc2013-evolution-guikachu-1_2_3.tar.zst
gsoc2013-evolution-guikachu-1_2_3.zip
This commit was manufactured by cvs2svn to create tagguikachu-1_2_3
'guikachu-1_2_3'. svn path=/tags/guikachu-1_2_3/; revision=16902
Diffstat (limited to 'notes/e-note.h')
-rw-r--r--notes/e-note.h37
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__ */