[maemo-commits] [maemo-commits] r11200 - in projects/haf/trunk/hail: . hail/hail-hildon-desktop
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Mon Apr 23 17:14:34 EEST 2007
- Previous message: [maemo-commits] r11199 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Next message: [maemo-commits] r11201 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: fherrera Date: 2007-04-23 17:14:32 +0300 (Mon, 23 Apr 2007) New Revision: 11200 Modified: projects/haf/trunk/hail/ChangeLog projects/haf/trunk/hail/hail/hail-hildon-desktop/Makefile.am projects/haf/trunk/hail/hail/hail-hildon-desktop/hail-hildon-desktop.c Log: * hail/hail-hildon-desktop/Makefile.am: * hail/hail-hildon-desktop/hail-hildon-desktop.c: Added the management for the new a11y added. * hail/hail-hildon-desktop/hailtogglebutton.[ch]: Added HNAppButton a11y implementation. * hail/hail-hildon-desktop/hailhometitlebar.[ch]: Added HildonHomeTitlebar a11y implementation. * hail/hail-hildon-desktop/hailhomearea.[ch]: Added HildonHomeArea a11y implementation. * hail/hail-hildon-desktop/haildesktopitem.c: Fixed the value for the default description string. Modified: projects/haf/trunk/hail/ChangeLog =================================================================== --- projects/haf/trunk/hail/ChangeLog 2007-04-23 14:04:31 UTC (rev 11199) +++ projects/haf/trunk/hail/ChangeLog 2007-04-23 14:14:32 UTC (rev 11200) @@ -1,3 +1,21 @@ +2007-04-23 Fernando Herrera <fernando.herrera-de-las-heras at nokia.com> + + * hail/hail-hildon-desktop/Makefile.am: + * hail/hail-hildon-desktop/hail-hildon-desktop.c: + Added the management for the new a11y added. + + * hail/hail-hildon-desktop/hailtogglebutton.[ch]: + Added HNAppButton a11y implementation. + + * hail/hail-hildon-desktop/hailhometitlebar.[ch]: + Added HildonHomeTitlebar a11y implementation. + + * hail/hail-hildon-desktop/hailhomearea.[ch]: + Added HildonHomeArea a11y implementation. + + * hail/hail-hildon-desktop/haildesktopitem.c: + Fixed the value for the default description string. + 2007-04-20 Fernando Herrera <fernando.herrera-de-las-heras at nokia.com> * docs/hail.types: Modified: projects/haf/trunk/hail/hail/hail-hildon-desktop/Makefile.am =================================================================== --- projects/haf/trunk/hail/hail/hail-hildon-desktop/Makefile.am 2007-04-23 14:04:31 UTC (rev 11199) +++ projects/haf/trunk/hail/hail/hail-hildon-desktop/Makefile.am 2007-04-23 14:14:32 UTC (rev 11200) @@ -12,7 +12,10 @@ haildesktoppanelitem.c \ haildesktopwindow.c \ hailhomewindow.c \ - haildesktoppanelwindow.c + haildesktoppanelwindow.c \ + hailtogglebutton.c \ + hailhomearea.c \ + hailhometitlebar.c libhail_hildondesktop_private_h_sources = \ hail-hildon-desktop.h \ @@ -22,7 +25,10 @@ haildesktoppanelitem.h \ haildesktopwindow.h \ hailhomewindow.h \ - haildesktoppanelwindow.h + haildesktoppanelwindow.h \ + hailtogglebutton.h \ + hailhomearea.h \ + hailhometitlebar.h #hail_public_h_sources = Modified: projects/haf/trunk/hail/hail/hail-hildon-desktop/hail-hildon-desktop.c =================================================================== --- projects/haf/trunk/hail/hail/hail-hildon-desktop/hail-hildon-desktop.c 2007-04-23 14:04:31 UTC (rev 11199) +++ projects/haf/trunk/hail/hail/hail-hildon-desktop/hail-hildon-desktop.c 2007-04-23 14:14:32 UTC (rev 11200) @@ -8,6 +8,9 @@ #include "haildesktopwindow.h" #include "hailhomewindow.h" #include "haildesktoppanelwindow.h" +#include "hailtogglebutton.h" +#include "hailhomearea.h" +#include "hailhometitlebar.h" #include <gtk/gtkimagemenuitem.h> #include <libhildondesktop/hildon-desktop-item.h> @@ -16,6 +19,9 @@ #include <libhildondesktop/hildon-desktop-window.h> #include <libhildondesktop/hildon-home-window.h> #include <libhildondesktop/hildon-desktop-panel-window.h> +#include <gtk/gtktogglebutton.h> +#include <libhildondesktop/hildon-home-area.h> +#include <libhildondesktop/hildon-home-titlebar.h> /* Hail factories class definition */ HAIL_ACCESSIBLE_FACTORY (HAIL_TYPE_IMAGE_MENU_ITEM, hail_image_menu_item, hail_image_menu_item_new) @@ -25,8 +31,10 @@ HAIL_ACCESSIBLE_FACTORY (HAIL_TYPE_DESKTOP_WINDOW, hail_desktop_window, hail_desktop_window_new) HAIL_ACCESSIBLE_FACTORY (HAIL_TYPE_HOME_WINDOW, hail_home_window, hail_home_window_new) HAIL_ACCESSIBLE_FACTORY (HAIL_TYPE_DESKTOP_PANEL_WINDOW, hail_desktop_panel_window, hail_desktop_panel_window_new) +HAIL_ACCESSIBLE_FACTORY (HAIL_TYPE_TOGGLE_BUTTON, hail_toggle_button, hail_toggle_button_new) +HAIL_ACCESSIBLE_FACTORY (HAIL_TYPE_HOME_AREA, hail_home_area, hail_home_area_new) +HAIL_ACCESSIBLE_FACTORY (HAIL_TYPE_HOME_TITLEBAR, hail_home_titlebar, hail_home_titlebar_new) - void hail_hildon_desktop_init (void) { @@ -37,4 +45,7 @@ HAIL_WIDGET_SET_FACTORY (HILDON_DESKTOP_TYPE_WINDOW, hail_desktop_window); HAIL_WIDGET_SET_FACTORY (HILDON_TYPE_HOME_WINDOW, hail_home_window); HAIL_WIDGET_SET_FACTORY (HILDON_DESKTOP_TYPE_PANEL_WINDOW, hail_desktop_panel_window); + HAIL_WIDGET_SET_FACTORY (GTK_TYPE_TOGGLE_BUTTON, hail_toggle_button); + HAIL_WIDGET_SET_FACTORY (HILDON_TYPE_HOME_AREA, hail_home_area); + HAIL_WIDGET_SET_FACTORY (HILDON_TYPE_HOME_TITLEBAR, hail_home_titlebar); }
- Previous message: [maemo-commits] r11199 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Next message: [maemo-commits] r11201 - in projects/haf/trunk/hildon-desktop: . libhildondesktop
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]