Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste/recent-files/egg-recent-view.h
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2007-10-26 15:29:32 (GMT)
committer Carlos Garcia Campos <carlosgc@src.gnome.org>2007-10-26 15:29:32 (GMT)
commitf75f5694d713ead3d2942127ad0dfeb7259a0357 (patch)
tree038a48e5fede4b57e0e7d49f849fc9929d605142 /cut-n-paste/recent-files/egg-recent-view.h
parentf7e355c8f2621f8026a9461a25ee4e1d60b28bb7 (diff)
Removed
2007-10-26 Carlos Garcia Campos <carlosgc@gnome.org> * configure.ac: * cut-n-paste/Makefile.am: * cut-n-paste/recent-files/*: Removed * help/reference/Makefile.am: * shell/Makefile.am: * shell/ev-application.[ch]: (ev_application_shutdown), (ev_application_init): * shell/ev-window.c: (ev_window_add_recent), (ev_window_setup_recent), (ev_window_dispose), (ev_window_init): Bump requirements to gtk+ 2.10.0 and remove egg-recent code. svn path=/trunk/; revision=2722
Diffstat (limited to 'cut-n-paste/recent-files/egg-recent-view.h')
-rw-r--r--cut-n-paste/recent-files/egg-recent-view.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/cut-n-paste/recent-files/egg-recent-view.h b/cut-n-paste/recent-files/egg-recent-view.h
deleted file mode 100644
index 79f0346..0000000
--- a/cut-n-paste/recent-files/egg-recent-view.h
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef __EGG_RECENT_VIEW_H__
-#define __EGG_RECENT_VIEW_H__
-
-
-#include <gdk/gdk.h>
-#include <gtk/gtkwidget.h>
-#include "egg-recent-model.h"
-#include "egg-recent-item.h"
-
-G_BEGIN_DECLS
-
-#define EGG_TYPE_RECENT_VIEW (egg_recent_view_get_type ())
-#define EGG_RECENT_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_RECENT_VIEW, EggRecentView))
-#define EGG_RECENT_VIEW_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), EGG_TYPE_RECENT_VIEW, EggRecentViewClass))
-#define EGG_IS_RECENT_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_RECENT_VIEW))
-#define EGG_IS_RECENT_VIEW_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), EGG_TYPE_RECENT_VIEW))
-#define EGG_RECENT_VIEW_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EGG_TYPE_RECENT_VIEW, EggRecentViewClass))
-
-
-typedef struct _EggRecentView EggRecentView;
-typedef struct _EggRecentViewClass EggRecentViewClass;
-
-struct _EggRecentViewClass
-{
- GTypeInterface base_iface;
-
- /* vtable, not signals */
- void (* do_set_model) (EggRecentView *view,
- EggRecentModel *model);
- EggRecentModel * (* do_get_model) (EggRecentView *view);
-};
-
-GtkType egg_recent_view_get_type (void) G_GNUC_CONST;
-void egg_recent_view_set_list (EggRecentView *view,
- GSList *list);
-void egg_recent_view_clear (EggRecentView *view);
-EggRecentModel *egg_recent_view_get_model (EggRecentView *view);
-void egg_recent_view_set_model (EggRecentView *view,
- EggRecentModel *model);
-
-G_END_DECLS
-
-#endif /* __EGG_RECENT_VIEW_H__ */