![]() |
2009-11-04
, 23:49
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#172
|
The Following 7 Users Say Thank You to anidel For This Useful Post: | ||
![]() |
2009-11-04
, 23:50
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#173
|
The Following User Says Thank You to anidel For This Useful Post: | ||
![]() |
2009-11-06
, 11:12
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#174
|
The Following User Says Thank You to anidel For This Useful Post: | ||
![]() |
2009-11-07
, 15:31
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#175
|
#define MCE_SIGNAL_MATCH "type='signal'," \ "sender='" MCE_SERVICE "'," \ "path='" MCE_SIGNAL_PATH "'," \ "interface='" MCE_SIGNAL_IF "'"
sys_conn = osso_get_sys_dbus_connection(ctx); if (sys_conn) { DBusError error; dbus_error_init (&error); dbus_bus_add_match (sys_conn, MCE_SIGNAL_MATCH, &error); if (dbus_error_is_set(&error)){ printf("dbus_bus_add_match failed: %s\n", error.message); dbus_error_free(&error); } if (!dbus_connection_add_filter (sys_conn, (DBusHandleMessageFunction) mce_filter_func, NULL, NULL)) { printf("Error dbus_connection_add_filter failed\n"); } else { printf ("DBUS filter added\n"); }` }
DBusHandlerResult mce_filter_func (DBusConnection *connection, DBusMessage *message, void *data) { DBusMessageIter iter; const gchar *mode = NULL; printf ("MCE\n"); if (dbus_message_is_signal(message, MCE_SIGNAL_IF, MCE_DEVICE_ORIENTATION_SIG)) { printf ("is a orientation signal\n"); if (dbus_message_iter_init(message, &iter)) { printf ("getting mode\n"); dbus_message_iter_get_basic(&iter, &mode); hildon_rotate_ui (mode); } } return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; }
The Following User Says Thank You to anidel For This Useful Post: | ||
![]() |
2009-11-07
, 16:21
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#176
|
if (osso_rpc_run_system(ctx, MCE_SERVICE, MCE_REQUEST_PATH, MCE_REQUEST_IF, MCE_ACCELEROMETER_ENABLE_REQ, NULL, DBUS_TYPE_INVALID) == OSSO_OK) { g_printerr("INFO: Accelerometers enabled\n"); } else { g_printerr("WARN: Cannot enable accelerometers\n"); }
if (osso_rpc_run_system(ctx, MCE_SERVICE, MCE_REQUEST_PATH, MCE_REQUEST_IF, MCE_ACCELEROMETER_DISABLE_REQ, NULL, DBUS_TYPE_INVALID) == OSSO_OK) { g_printerr("INFO: Accelerometers disabled\n"); } else { g_printerr("WARN: Cannot disable accelerometers\n"); }
The Following 3 Users Say Thank You to anidel For This Useful Post: | ||
![]() |
2009-11-07
, 16:23
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#177
|
The Following User Says Thank You to anidel For This Useful Post: | ||
![]() |
2009-11-08
, 01:33
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#178
|
![]() |
2009-11-08
, 15:04
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#179
|
![]() |
2009-11-08
, 18:07
|
|
Posts: 1,743 |
Thanked: 1,231 times |
Joined on Jul 2006
@ Twickenham, UK
|
#180
|
The Following User Says Thank You to anidel For This Useful Post: | ||
Like in the browser you can't seem to be able to tap on a link underneath the fading button (even when faded out).
With some logic you can make it work... we'll think about it.
But you can switch to fullscreen with CTRL-F already.