Big janitorial commit of menu editor,

mainly moving code around to delete
prototypes.
I hope nobody had pending patches against
this file...
This commit is contained in:
Paolo Borelli 2003-06-22 13:48:48 +00:00
parent 29a72559c6
commit 31438788f3
3 changed files with 2121 additions and 2353 deletions

View File

@ -1,3 +1,8 @@
2003-06-22 Paolo Borelli <pborelli@katamail.com>
* src/glade-menu-editor.[ch]: misc janitorials, mainly
moving stuff around to eliminate prototypes.
2003-06-21 Paolo Borelli <pborelli@katamail.com>
* src/glade-placeholder.c: fix return values for mouse

File diff suppressed because it is too large Load Diff

View File

@ -23,13 +23,6 @@
#define GLADE_MENU_EDITOR_H
#include <gdk/gdk.h>
#include <gtk/gtkmenushell.h>
#include <gtk/gtkwindow.h>
#include "glade.h"
#include "glade-project.h"
G_BEGIN_DECLS
#define GLADE_MENU_EDITOR(obj) GTK_CHECK_CAST (obj, glade_menu_editor_get_type (), GladeMenuEditor)
@ -120,16 +113,11 @@ struct _GladeMenuEditorClass
};
GType glade_menu_editor_get_type (void);
GType glade_menu_editor_get_type (void);
GtkWidget* glade_menu_editor_new (GladeProject *project, GtkMenuShell *menu);
/* This creates a menu editor to edit the given menubar or popup menu in
the given project. When the user selects the 'OK' or 'Apply' buttons,
the menu widget will be updated. If the menu is destroyed, the menu editor
is automatically destroyed as well. */
GtkWidget* glade_menu_editor_new (GladeProject *project,
GtkMenuShell *menu);
G_END_DECLS
#endif /* GLADE_MENU_EDITOR_H */