diff options
author | Miguel de Icaza <miguel@helixcode.com> | 2000-04-26 22:47:11 +0800 |
---|---|---|
committer | Miguel de Icaza <miguel@src.gnome.org> | 2000-04-26 22:47:11 +0800 |
commit | 35d11190bcb9546e86766c14368a25c0db1a0855 (patch) | |
tree | a56e3176ff52ffac9828042f602988f0eed04c25 | |
parent | 3c1ddb743e12aa5baa0e1fdab25eaddf4730b00d (diff) | |
download | gsoc2013-evolution-35d11190bcb9546e86766c14368a25c0db1a0855.tar gsoc2013-evolution-35d11190bcb9546e86766c14368a25c0db1a0855.tar.gz gsoc2013-evolution-35d11190bcb9546e86766c14368a25c0db1a0855.tar.bz2 gsoc2013-evolution-35d11190bcb9546e86766c14368a25c0db1a0855.tar.lz gsoc2013-evolution-35d11190bcb9546e86766c14368a25c0db1a0855.tar.xz gsoc2013-evolution-35d11190bcb9546e86766c14368a25c0db1a0855.tar.zst gsoc2013-evolution-35d11190bcb9546e86766c14368a25c0db1a0855.zip |
New file. Implements easy to use popup menus.
2000-04-24 Miguel de Icaza <miguel@helixcode.com>
* e-popup-menu.c: New file. Implements easy to use popup menus.
svn path=/trunk/; revision=2633
-rw-r--r-- | e-util/ChangeLog | 4 | ||||
-rw-r--r-- | e-util/Makefile.am | 12 |
2 files changed, 11 insertions, 5 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index de6a388a16..a4047c3450 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,7 @@ +2000-04-24 Miguel de Icaza <miguel@helixcode.com> + + * e-popup-menu.c: New file. Implements easy to use popup menus. + 2000-04-24 Matt Loper <matt@helixcode.com> * e-paned.c: New file. Makes a GtkPaned with more than two diff --git a/e-util/Makefile.am b/e-util/Makefile.am index 3dc32f3ab3..93fa276e2f 100644 --- a/e-util/Makefile.am +++ b/e-util/Makefile.am @@ -12,13 +12,15 @@ libeutil_la_SOURCES = \ e-cursors.h \ e-gui-utils.c \ e-gui-utils.h \ + e-paned.c \ + e-paned.h \ + e-popup-menu.c \ + e-popup-menu.h \ e-setup.c \ e-setup.h \ + e-sexp.c \ + e-sexp.h \ e-util.c \ e-util.h \ e-xml-utils.c \ - e-xml-utils.h \ - e-sexp.c \ - e-sexp.h \ - e-paned.c \ - e-paned.h + e-xml-utils.h |