Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste/recent-files/egg-recent-view-gtk.h
diff options
context:
space:
mode:
authorNickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-06-19 17:36:16 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@src.gnome.org>2005-06-19 17:36:16 (GMT)
commitd93ec57b2282ee22ade99eba434e1b13de80bcf3 (patch)
tree4b762f399e98e626e8ad25485ad822f42c43af01 /cut-n-paste/recent-files/egg-recent-view-gtk.h
parentbb5ea194600d5ae09b18a147420f4fc42c0808df (diff)
Removed EggRecentViewGtk
* cut-n-paste/recent-files/Makefile.am: * cut-n-paste/recent-files/egg-recent-view-gtk.c: * cut-n-paste/recent-files/egg-recent-view-gtk.h: Removed EggRecentViewGtk * cut-n-paste/recent-files/egg-recent-view-uimanager.c: * cut-n-paste/recent-files/egg-recent-view-uimanager.h: * shell/ev-window.c: (ev_window_cmd_recent_file_activate), (ev_window_setup_recent): Use ViewUIManager instead of ViewGtk. Less leaks, more compatibility with other projects
Diffstat (limited to 'cut-n-paste/recent-files/egg-recent-view-gtk.h')
-rw-r--r--cut-n-paste/recent-files/egg-recent-view-gtk.h68
1 files changed, 0 insertions, 68 deletions
diff --git a/cut-n-paste/recent-files/egg-recent-view-gtk.h b/cut-n-paste/recent-files/egg-recent-view-gtk.h
deleted file mode 100644
index 287f3e0..0000000
--- a/cut-n-paste/recent-files/egg-recent-view-gtk.h
+++ /dev/null
@@ -1,68 +0,0 @@
-/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
-#ifndef __EGG_RECENT_VIEW_GTK_H__
-#define __EGG_RECENT_VIEW_GTK_H__
-
-G_BEGIN_DECLS
-
-#include <gtk/gtk.h>
-#include "egg-recent-item.h"
-
-#define EGG_RECENT_VIEW_GTK(obj) G_TYPE_CHECK_INSTANCE_CAST (obj, egg_recent_view_gtk_get_type (), EggRecentViewGtk)
-#define EGG_RECENT_VIEW_GTK_CLASS(klass) G_TYPE_CHECK_CLASS_CAST (klass, egg_recent_view_gtk_get_type (), EggRecentViewGtkClass)
-#define EGG_IS_RECENT_VIEW_GTK(obj) G_TYPE_CHECK_INSTANCE_TYPE (obj, egg_recent_view_gtk_get_type ())
-
-typedef void (*EggRecentViewGtkTooltipFunc) (GtkTooltips *tooltips,
- GtkWidget *menu,
- EggRecentItem *item,
- gpointer user_data);
-
-typedef struct _EggRecentViewGtk EggRecentViewGtk;
-
-typedef struct _EggRecentViewGtkClass EggRecentViewGtkClass;
-
-struct _EggRecentViewGtkClass {
- GObjectClass parent_class;
-
- void (*activate) (EggRecentViewGtk *view, EggRecentItem *item);
-};
-
-GType egg_recent_view_gtk_get_type (void);
-
-EggRecentViewGtk * egg_recent_view_gtk_new (GtkWidget *menu,
- GtkWidget *start_menu_item);
-
-void egg_recent_view_gtk_set_menu (EggRecentViewGtk *view,
- GtkWidget *menu);
-GtkWidget * egg_recent_view_gtk_get_menu (EggRecentViewGtk *view);
-
-
-void egg_recent_view_gtk_set_start_menu_item (EggRecentViewGtk *view,
- GtkWidget *menu_item);
-GtkWidget *egg_recent_view_gtk_get_start_menu_item (EggRecentViewGtk *view);
-
-void egg_recent_view_gtk_set_leading_sep (EggRecentViewGtk *view,
- gboolean val);
-
-void egg_recent_view_gtk_set_trailing_sep (EggRecentViewGtk *view,
- gboolean val);
-
-void egg_recent_view_gtk_show_icons (EggRecentViewGtk *view,
- gboolean show);
-void egg_recent_view_gtk_show_numbers (EggRecentViewGtk *view,
- gboolean show);
-
-void egg_recent_view_gtk_set_tooltip_func (EggRecentViewGtk *view,
- EggRecentViewGtkTooltipFunc func,
- gpointer user_data);
-
-void egg_recent_view_gtk_set_icon_size (EggRecentViewGtk *view,
- GtkIconSize icon_size);
-GtkIconSize egg_recent_view_gtk_get_icon_size (EggRecentViewGtk *view);
-
-void egg_recent_view_gtk_set_label_width (EggRecentViewGtk *view,
- gint chars);
-gint egg_recent_view_gtk_get_label_width (EggRecentViewGtk *view);
-
-G_END_DECLS
-
-#endif /* __EGG_RECENT_VIEW_GTK_H__ */