diff options
| author | Tomas Frydrych <tf@openedhand.com> | 2007-07-13 09:39:04 +0000 |
|---|---|---|
| committer | Tomas Frydrych <tf@openedhand.com> | 2007-07-13 09:39:04 +0000 |
| commit | f73a2e74a962887cdef76c4ac05c61ee0aacdc35 (patch) | |
| tree | 619561b47da438d005c5be00c165b00280266545 | |
| parent | 4b83d865c85905f121a30267a2abd128ccb612a0 (diff) | |
| download | poky-f73a2e74a962887cdef76c4ac05c61ee0aacdc35.tar.gz | |
owl menu for contacts_0.5
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2181 311d38ba-8fff-0310-9ca6-ca027cbcb966
| -rw-r--r-- | meta/packages/pimlico/contacts-0.5/contacts-owl-window-menu.patch | 52 | ||||
| -rw-r--r-- | meta/packages/pimlico/contacts_0.5.bb | 6 |
2 files changed, 57 insertions, 1 deletions
diff --git a/meta/packages/pimlico/contacts-0.5/contacts-owl-window-menu.patch b/meta/packages/pimlico/contacts-0.5/contacts-owl-window-menu.patch new file mode 100644 index 0000000000..1e4bebbdbf --- /dev/null +++ b/meta/packages/pimlico/contacts-0.5/contacts-owl-window-menu.patch | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | Index: contacts-0.5/src/contacts-gtk.c | ||
| 2 | =================================================================== | ||
| 3 | --- contacts-0.5.orig/src/contacts-gtk.c 2007-04-20 14:35:36.000000000 +0100 | ||
| 4 | +++ contacts-0.5/src/contacts-gtk.c 2007-07-13 10:47:52.000000000 +0100 | ||
| 5 | @@ -178,8 +178,8 @@ | ||
| 6 | vbox7 = gtk_vbox_new (FALSE, 0); | ||
| 7 | gtk_container_add (GTK_CONTAINER (main_window), vbox7); | ||
| 8 | |||
| 9 | - main_menubar = gtk_menu_bar_new (); | ||
| 10 | - gtk_box_pack_start (GTK_BOX (vbox7), main_menubar, FALSE, FALSE, 0); | ||
| 11 | + main_menubar = gtk_menu_new (); | ||
| 12 | + gtk_widget_show (main_menubar); | ||
| 13 | |||
| 14 | contacts_menu = gtk_menu_item_new_with_mnemonic (_("_Contacts")); | ||
| 15 | gtk_container_add (GTK_CONTAINER (main_menubar), contacts_menu); | ||
| 16 | Index: contacts-0.5/src/Makefile.am | ||
| 17 | =================================================================== | ||
| 18 | --- contacts-0.5.orig/src/Makefile.am 2007-03-02 11:17:00.000000000 +0000 | ||
| 19 | +++ contacts-0.5/src/Makefile.am 2007-07-13 10:47:52.000000000 +0100 | ||
| 20 | @@ -28,7 +28,7 @@ | ||
| 21 | contacts-@FRONTEND@.c \ | ||
| 22 | contacts-@FRONTEND@.h | ||
| 23 | |||
| 24 | -contacts_LDADD = $(CONTACTS_LIBS) | ||
| 25 | +contacts_LDADD = $(CONTACTS_LIBS) -lowl | ||
| 26 | contacts_LDFLAGS = @CONTACTS_LIBS@ | ||
| 27 | |||
| 28 | MAINTAINERCLEANFILES = config.h.in Makefile.in | ||
| 29 | Index: contacts-0.5/src/contacts-main.c | ||
| 30 | =================================================================== | ||
| 31 | --- contacts-0.5.orig/src/contacts-main.c 2007-04-20 15:46:23.000000000 +0100 | ||
| 32 | +++ contacts-0.5/src/contacts-main.c 2007-07-13 10:53:44.000000000 +0100 | ||
| 33 | @@ -27,6 +27,8 @@ | ||
| 34 | #include <libgnomevfs/gnome-vfs.h> | ||
| 35 | #endif | ||
| 36 | |||
| 37 | +#include "owlwindowmenu.h" | ||
| 38 | + | ||
| 39 | #include "bacon-message-connection.h" | ||
| 40 | #include "contacts-defs.h" | ||
| 41 | #include "contacts-utils.h" | ||
| 42 | @@ -230,6 +232,10 @@ | ||
| 43 | /* fix icon sizes to 16x16 for the moment... */ | ||
| 44 | gtk_rc_parse_string ("gtk_icon_sizes=\"gtk-button=16,16:gtk-menu=16,16\""); | ||
| 45 | |||
| 46 | + gtk_widget_show_all (contacts_data->ui->main_menubar); | ||
| 47 | + owl_set_window_menu (GTK_WINDOW (contacts_data->ui->main_window), | ||
| 48 | + GTK_MENU (contacts_data->ui->main_menubar)); | ||
| 49 | + | ||
| 50 | gtk_main (); | ||
| 51 | |||
| 52 | /* Unload the addressbook */ | ||
diff --git a/meta/packages/pimlico/contacts_0.5.bb b/meta/packages/pimlico/contacts_0.5.bb index 6f771e99bf..d596d45659 100644 --- a/meta/packages/pimlico/contacts_0.5.bb +++ b/meta/packages/pimlico/contacts_0.5.bb | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | require contacts.inc | 1 | require contacts.inc |
| 2 | 2 | ||
| 3 | PR = "r1" | ||
| 4 | |||
| 3 | SRC_URI = "http://pimlico-project.org/sources/${PN}/${PN}-${PV}.tar.gz \ | 5 | SRC_URI = "http://pimlico-project.org/sources/${PN}/${PN}-${PV}.tar.gz \ |
| 4 | file://stock_contact.png \ | 6 | file://stock_contact.png \ |
| 5 | file://stock_person.png" | 7 | file://stock_person.png \ |
| 8 | file://contacts-owl-window-menu.patch;patch=1 \ | ||
| 9 | " | ||
