|
2008-12-13
, 23:17
|
Posts: 1,208 |
Thanked: 1,028 times |
Joined on Oct 2007
|
#2
|
button.set_name("hildon-navigator-button-one")
|
2008-12-13
, 23:46
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#3
|
|
2008-12-13
, 23:55
|
Posts: 1,208 |
Thanked: 1,028 times |
Joined on Oct 2007
|
#4
|
|
2008-12-14
, 00:53
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#5
|
/* Create menu window and set its style */
priv->menu = gtk_window_new (GTK_WINDOW_POPUP);
gtk_window_set_type_hint (GTK_WINDOW (priv->menu), GDK_WINDOW_TYPE_HINT_MENU);
gtk_window_set_is_temporary (GTK_WINDOW (priv->menu), TRUE);
gtk_widget_set_name (priv->menu, "hildon-status-bar-popup");
gtk_window_set_resizable (GTK_WINDOW (priv->menu), FALSE);
gtk_window_set_decorated (GTK_WINDOW (priv->menu), FALSE);
gtk_container_set_border_width (GTK_CONTAINER (priv->menu), HILDON_STATUS_BAR_BORDER_WIDTH);
void*
load_initialize(HildonStatusBarItem *item,
GtkWidget **button)
{
osso_return_t status;
|
2008-12-14
, 01:09
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#6
|
HD_DEFINE_PLUGIN (AdvancedBacklightPlugin, advanced_backlight_plugin, STATUSBAR_TYPE_ITEM);
HD_DEFINE_PLUGIN(OssoStatusbarCpu,
osso_statusbar_cpu,
STATUSBAR_TYPE_ITEM);
|
2008-12-14
, 01:25
|
Posts: 1,208 |
Thanked: 1,028 times |
Joined on Oct 2007
|
#7
|
|
2008-12-14
, 11:02
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#8
|
I've been wondering the same actually, glad you brought this up. My hunch is this:
These are both set in applets that do "light up" properly but not loadapplet. After sending mypaint to the autobuilder, i'll test out my hunch in about 5 hours when i can use my computer
--- load-applet-0.8.2.orig/load-applet.c +++ load-applet-0.8.2/load-applet.c @@ -60,6 +60,8 @@ #include <hildon/hildon-help.h> #include <hildon/hildon-banner.h> #include <libhildondesktop/hildon-status-bar-item.h> +#include <libhildondesktop/libhildondesktop.h> +#include <libhildonwm/hd-wm.h> #include <hildon/hildon-number-editor.h> #include <gtk/gtkenums.h> @@ -135,6 +137,12 @@ osso_context_t *osso_context; } PluginInfo; +typedef struct +{ + HildonStatusBarItemClass parent_class; +} PluginInfoClass; + +HD_DEFINE_PLUGIN(PluginInfo, plugin_info, STATUSBAR_TYPE_ITEM); static gint lastU, lastN, lastIO, lastI; gint deltaU, deltaN, deltaIO, deltaI; --- load-applet-0.8.2.orig/configure.ac +++ load-applet-0.8.2/configure.ac @@ -38,7 +38,9 @@ AC_SUBST(HILDONHELP_LIBS) AC_SUBST(HILDONHELP_CFLAGS) -PKG_CHECK_MODULES(HILDON, hildon-1 >= 1.0.0) +PKG_CHECK_MODULES(HILDON, + [hildon-1 >= 1.0.0 + libhildonwm >= 0]) AC_SUBST(HILDON_LIBS) AC_SUBST(HILDON_CFLAGS)
|
2008-12-14
, 19:10
|
|
Posts: 3,397 |
Thanked: 1,212 times |
Joined on Jul 2008
@ Netherlands
|
#9
|
Note also that Hildon Application Framework is now called Hildon and Maemo Desktop (same as maemo-af-desktop) has been renamed to Hildon Desktop.
Renamed packages:
Hildon-fm -> libhildonfm2 (pkg-config name hildon-fm-2)
Hildon-libs -> libhildon1 (pkg-config name hildon-1)
Libossomime0 -> libhildonmime0
Maemo-af-desktop -> hildon-desktop
libosso-help -> libhildonhelp0 (pkg-config name hildon-help)
Removed packages:
Lessertunjo & archtunjo (combined to hildon-games-wrapper)
Hildon-lgpl & Hildon-libs (merged to libhildon1)
Libhildonmenu0 (replaced with libhildondesktop0, pkg-config name libhildondesktop)
Hildon-base-lib (GnomeVFS to be used instead)
Hildon-status-bar-lib (statusbar plugins should link against libhildondesktop)
|
2008-12-14
, 20:00
|
|
Posts: 2,427 |
Thanked: 2,986 times |
Joined on Dec 2007
|
#10
|
Goosfraba! All text written by allnameswereout is public domain unless stated otherwise. Thank you for sharing your output!