summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2009-12-31 15:40:42 +0100
committerGravatar Martin Szulecki2009-12-31 15:40:42 +0100
commit4179dfd4c636a2b4e7f0b24b8f31be578a7e8825 (patch)
tree6b62d284d027ed9dcc07cfd86edbdf93a3de05d1 /src
parent50172700b865fd50aed4608c5c883630910dbeb4 (diff)
downloadsbmanager-4179dfd4c636a2b4e7f0b24b8f31be578a7e8825.tar.gz
sbmanager-4179dfd4c636a2b4e7f0b24b8f31be578a7e8825.tar.bz2
Refactor and normalize all code where possible and add more debug output
Diffstat (limited to 'src')
-rw-r--r--src/sbmanager.c1460
1 files changed, 769 insertions, 691 deletions
diff --git a/src/sbmanager.c b/src/sbmanager.c
index e3bf013..1cbb45d 100644
--- a/src/sbmanager.c
+++ b/src/sbmanager.c
@@ -48,6 +48,8 @@ ClutterColor clock_text_color = { 255, 255, 255, 210 };
const char ITEM_FONT[] = "FreeSans Bold 10px";
ClutterColor item_text_color = { 255, 255, 255, 210 };
ClutterColor dock_item_text_color = { 255, 255, 255, 255 };
+ClutterColor stage_color = { 0x00, 0x00, 0x00, 0xff }; /* Black */
+ClutterColor battery_color = { 0xff, 0xff, 0xff, 0x9f };
typedef struct {
GtkWidget *window;
@@ -96,10 +98,7 @@ guint num_dock_items = 0;
int current_page = 0;
struct timeval last_page_switch;
-static void dock_align_icons(gboolean animated);
-static void sb_align_icons(guint page_num, gboolean animated);
-static void redraw_icons();
-
+/* debug */
gboolean debug_app = FALSE;
static void debug_printf(const char *format, ...);
@@ -113,6 +112,7 @@ static void debug_printf(const char *format, ...)
}
}
+/* helper */
static gboolean elapsed_ms(struct timeval *tv, guint ms)
{
struct timeval now;
@@ -166,135 +166,113 @@ static void sbpage_free(GList *sbitems)
}
}
-static void get_icon_for_node(plist_t node, GList **list, sbservices_client_t sbc)
+static void pages_free()
{
- char *png = NULL;
- uint64_t pngsize = 0;
- SBItem *di = NULL;
- plist_t valuenode = NULL;
- if (plist_get_node_type(node) != PLIST_DICT) {
- return;
- }
- valuenode = plist_dict_get_item(node, "displayIdentifier");
- if (valuenode && (plist_get_node_type(valuenode) == PLIST_STRING)) {
- char *value = NULL;
- char *icon_filename = NULL;
- plist_get_string_val(valuenode, &value);
- debug_printf("retrieving icon for '%s'\n", value);
- if ((sbservices_get_icon_pngdata(sbc, value, &png, &pngsize) == SBSERVICES_E_SUCCESS) && (pngsize > 0)) {
- icon_filename = g_strdup_printf("/tmp/%s.png", value);
- FILE *f = fopen(icon_filename, "w");
- GError *err = NULL;
- fwrite(png, 1, pngsize, f);
- fclose(f);
- ClutterActor *actor = clutter_texture_new();
- clutter_texture_set_load_async(CLUTTER_TEXTURE(actor), TRUE);
- clutter_texture_set_from_file(CLUTTER_TEXTURE(actor), icon_filename, &err);
- g_free(icon_filename);
- if (actor) {
- plist_t nn = plist_dict_get_item(node, "displayName");
- di = g_new0(SBItem, 1);
- di->node = plist_copy(node);
- di->texture = actor;
- if (nn && (plist_get_node_type(nn) == PLIST_STRING)) {
- char *txtval = NULL;
- plist_get_string_val(nn, &txtval);
- actor = clutter_text_new_with_text(ITEM_FONT, txtval);
- di->label = actor;
- }
- *list = g_list_append(*list, di);
- }
- if (err) {
- fprintf(stderr, "ERROR: %s\n", err->message);
- g_error_free(err);
- }
- } else {
- fprintf(stderr, "ERROR: could not get icon for '%s'\n", value);
- }
- free(value);
+ if (sbpages) {
+ g_list_foreach(sbpages, (GFunc)(sbpage_free), NULL);
+ g_list_free(sbpages);
+ sbpages = NULL;
}
- if (png) {
- free(png);
+ if (dockitems) {
+ sbpage_free(dockitems);
+ dockitems = NULL;
}
}
-static void page_indicator_group_align()
+static void clutter_actor_get_abs_center(ClutterActor *actor, gfloat *center_x, gfloat *center_y)
{
- gint count = clutter_group_get_n_children(CLUTTER_GROUP(page_indicator_group));
- gint i;
- gfloat xpos = 0.0;
-
- if (count <= 0)
+ *center_x = 0.0;
+ *center_y = 0.0;
+ if (!actor)
return;
+ clutter_actor_get_scale_center(actor, center_x, center_y);
+ *center_x += clutter_actor_get_x(actor);
+ *center_y += clutter_actor_get_y(actor);
+}
- for (i = 0; i < count; i++) {
- ClutterActor *dot = clutter_group_get_nth_child(CLUTTER_GROUP(page_indicator_group), i);
- clutter_actor_set_position(dot, xpos, 0.0);
- if (i == current_page) {
- clutter_actor_set_opacity(dot, 200);
- } else {
- clutter_actor_set_opacity(dot, 100);
- }
- xpos += clutter_actor_get_width(dot);
+static GList *iconlist_insert_item_at(GList *iconlist, SBItem *newitem, gfloat item_x, gfloat item_y)
+{
+ if (!newitem) {
+ return iconlist;
+ }
+ if (!iconlist) {
+ /* for empty lists just add the element */
+ return g_list_append(iconlist, newitem);
+ }
+ gint i;
+ gint count = g_list_length(iconlist);
+ gint newpos = count;
+ if (count <= 0) {
+ return iconlist;
}
- clutter_actor_set_x(page_indicator_group, (STAGE_WIDTH - xpos) / 2.0);
-}
+ debug_printf("%s: count:%d, item_x:%.0f, item_y:%.0f\n", __func__, count, item_x, item_y);
-static void sbpages_set_current_page(int pageindex)
-{
- gint count = clutter_group_get_n_children(CLUTTER_GROUP(page_indicator_group));
+ for (i = 0; i < count; i++) {
+ SBItem *item = g_list_nth_data(iconlist, i);
+ ClutterActor *icon = clutter_actor_get_parent(item->texture);
+ gfloat xpos = clutter_actor_get_x(icon);
+ gfloat ypos = clutter_actor_get_y(icon);
- if ((pageindex < 0) || (pageindex >= count))
- return;
+ gint nrow = (ypos - 16) / 88;
+ gint irow = (item_y - 16) / 88;
- current_page = pageindex;
+ xpos += nrow*STAGE_WIDTH;
+ gfloat ixpos = item_x + irow*STAGE_WIDTH;
- page_indicator_group_align();
+ debug_printf("%s: i:%d, nrow:%d, irow:%d, xpos:%.0f, ypos:%.0f, ixpos:%.0f\n", __func__, i, nrow, irow, xpos, ypos, ixpos);
- clutter_actor_animate(the_sb, CLUTTER_EASE_IN_OUT_CUBIC, 400, "x", (gfloat) (-(current_page * STAGE_WIDTH)), NULL);
-}
+ if (move_left) {
+ if (ixpos < xpos + 40) {
+ newpos = i;
+ debug_printf("%s: ixpos (%.0f) < xpos + 40 (%.0f):\n", __func__, ixpos, xpos + 40);
+ break;
+ }
+ } else {
+ if (ixpos < xpos - 10) {
+ newpos = i;
+ debug_printf("%s: ixpos (%.0f) < xpos - 10 (%.0f):\n", __func__, ixpos, xpos - 10);
+ break;
+ }
+ }
+ }
-static void sbpages_show_next_page()
-{
- sbpages_set_current_page(current_page+1);
-}
+ debug_printf("%s: newpos:%d\n", __func__, newpos);
-static void sbpages_show_previous_page()
-{
- sbpages_set_current_page(current_page-1);
+ return g_list_insert(iconlist, newitem, newpos);
}
-static gboolean page_indicator_clicked(ClutterActor *actor, ClutterEvent *event, gpointer data)
+/* sbservices interface */
+static gboolean sbs_save_icon(sbservices_client_t sbc, char *display_identifier, char *filename)
{
- sbpages_set_current_page(GPOINTER_TO_UINT(data));
+ gboolean res = FALSE;
+ char *png = NULL;
+ uint64_t pngsize = 0;
- return TRUE;
+ if ((sbservices_get_icon_pngdata(sbc, display_identifier, &png, &pngsize) == SBSERVICES_E_SUCCESS)
+ && (pngsize > 0)) {
+ /* save png icon to disk */
+ FILE *f = fopen(filename, "w");
+ fwrite(png, 1, pngsize, f);
+ fclose(f);
+ res = TRUE;
+ }
+ if (png) {
+ free(png);
+ }
+ return res;
}
-static gboolean get_icons(gpointer data)
+static sbservices_client_t sbs_new(char *uuid)
{
- SBManagerApp *app = (SBManagerApp*)data;
+ sbservices_client_t sbc = NULL;
iphone_device_t phone = NULL;
lockdownd_client_t client = NULL;
- sbservices_client_t sbc = NULL;
int port = 0;
- plist_t iconstate = NULL;
- int total;
- if (sbpages) {
- g_list_foreach(sbpages, (GFunc)(sbpage_free), NULL);
- g_list_free(sbpages);
- sbpages = NULL;
- }
- if (dockitems) {
- sbpage_free(dockitems);
- dockitems = NULL;
- }
-
- if (IPHONE_E_SUCCESS != iphone_device_new(&phone, app->uuid)) {
+ if (IPHONE_E_SUCCESS != iphone_device_new(&phone, uuid)) {
fprintf(stderr, "No iPhone found, is it plugged in?\n");
- return FALSE;
+ return sbc;
}
if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
@@ -311,100 +289,98 @@ static gboolean get_icons(gpointer data)
fprintf(stderr, "Could not connect to springboardservices!\n");
goto leave_cleanup;
}
- if (sbservices_get_icon_state(sbc, &iconstate) != SBSERVICES_E_SUCCESS || !iconstate) {
- fprintf(stderr, "ERROR: Could not get icon state!\n");
- goto leave_cleanup;
+
+ leave_cleanup:
+ if (client) {
+ lockdownd_client_free(client);
}
- if (plist_get_node_type(iconstate) != PLIST_ARRAY) {
- fprintf(stderr, "ERROR: icon state is not an array as expected!\n");
- goto leave_cleanup;
+ iphone_device_free(phone);
+
+ return sbc;
+}
+
+static void sbs_free(sbservices_client_t sbc)
+{
+ if (sbc) {
+ sbservices_client_free(sbc);
}
- total = plist_array_get_size(iconstate);
+}
- if (total < 1) {
- fprintf(stderr, "ERROR: No icons returned in icon state\n");
- goto leave_cleanup;
- } else {
- int i;
- int count;
- plist_t dock = plist_array_get_item(iconstate, 0);
- if ((plist_get_node_type(dock) != PLIST_ARRAY)
- || (plist_array_get_size(dock) < 1)) {
- fprintf(stderr, "ERROR: error getting outer dock icon array!\n");
+static plist_t sbs_get_iconstate(sbservices_client_t sbc)
+{
+ plist_t iconstate = NULL;
+ plist_t res = NULL;
+
+ pages_free();
+
+ if (sbc) {
+ if (sbservices_get_icon_state(sbc, &iconstate) != SBSERVICES_E_SUCCESS || !iconstate) {
+ fprintf(stderr, "ERROR: Could not get icon state!\n");
goto leave_cleanup;
}
- dock = plist_array_get_item(dock, 0);
- if (plist_get_node_type(dock) != PLIST_ARRAY) {
- fprintf(stderr, "ERROR: error getting inner dock icon array!\n");
+ if (plist_get_node_type(iconstate) != PLIST_ARRAY) {
+ fprintf(stderr, "ERROR: icon state is not an array as expected!\n");
goto leave_cleanup;
}
- count = plist_array_get_size(dock);
- num_dock_items = count;
- for (i = 0; i < count; i++) {
- plist_t node = plist_array_get_item(dock, i);
- get_icon_for_node(node, &dockitems, sbc);
- }
- if (total > 1) {
- /* get all icons for the other pages */
- int p, r, rows;
- for (p = 1; p < total; p++) {
- plist_t npage = plist_array_get_item(iconstate, p);
- GList *page = NULL;
- if ((plist_get_node_type(npage) != PLIST_ARRAY)
- || (plist_array_get_size(npage) < 1)) {
- fprintf(stderr, "ERROR: error getting outer page icon array!\n");
- goto leave_cleanup;
- }
- rows = plist_array_get_size(npage);
- for (r = 0; r < rows; r++) {
- debug_printf("page %d, row %d\n", p, r);
-
- plist_t nrow = plist_array_get_item(npage, r);
- if (plist_get_node_type(nrow) != PLIST_ARRAY) {
- fprintf(stderr, "ERROR: error getting page row icon array!\n");
- goto leave_cleanup;
- }
- count = plist_array_get_size(nrow);
- for (i = 0; i < count; i++) {
- plist_t node = plist_array_get_item(nrow,
- i);
- get_icon_for_node(node, &page, sbc);
- }
- }
- if (page) {
- sbpages = g_list_append(sbpages, page);
- if (page_indicator) {
- ClutterActor *actor = clutter_clone_new(page_indicator);
- clutter_actor_unparent(actor);
- clutter_actor_set_reactive(actor, TRUE);
- g_signal_connect(actor,
- "button-press-event",
- G_CALLBACK(page_indicator_clicked), GUINT_TO_POINTER(p - 1));
- clutter_container_add_actor(CLUTTER_CONTAINER(page_indicator_group), actor);
- page_indicator_group_align();
- }
- }
- }
- }
+ res = iconstate;
}
- redraw_icons();
-
leave_cleanup:
- if (iconstate) {
- plist_free(iconstate);
+ return res;
+}
+
+static gboolean sbs_set_iconstate(sbservices_client_t sbc, plist_t iconstate)
+{
+ gboolean result = FALSE;
+
+ if (!dockitems || !sbpages) {
+ printf("missing dockitems or sbpages\n");
+ return result;
}
+
+ printf("About to upload new iconstate...\n");
+
if (sbc) {
- sbservices_client_free(sbc);
+ if (sbservices_set_icon_state(sbc, iconstate) != SBSERVICES_E_SUCCESS) {
+ fprintf(stderr, "ERROR: Could not set new icon state!\n");
+ goto leave_cleanup;
+ }
+
+ printf("Successfully uploaded new iconstate\n");
+ result = TRUE;
}
- if (client) {
- lockdownd_client_free(client);
+
+ leave_cleanup:
+ return result;
+}
+
+/* window */
+static gboolean win_map_cb(GtkWidget *widget, GdkEvent *event, SBManagerApp *app)
+{
+ debug_printf("%s: mapped\n", __func__);
+ clutter_stage_ensure_redraw(CLUTTER_STAGE(stage));
+
+ return TRUE;
+}
+
+static gboolean win_focus_change_cb(GtkWidget *widget, GdkEventFocus *event, gpointer user_data)
+{
+ if (!user_data) {
+ return FALSE;
}
- iphone_device_free(phone);
- return FALSE;
+ ClutterActor *actor = (ClutterActor*)user_data;
+
+ if (event->in) {
+ clutter_timeline_start(CLUTTER_TIMELINE(actor));
+ } else {
+ clutter_timeline_pause(CLUTTER_TIMELINE(actor));
+ }
+
+ return TRUE;
}
+/* clock */
static void clock_set_time(ClutterActor *label, time_t t)
{
struct tm *curtime = localtime(&t);
@@ -419,130 +395,148 @@ static void clock_update_cb(ClutterTimeline *timeline, gint msecs, SBManagerApp
clock_set_time(clock_label, time(NULL));
}
-static void actor_get_abs_center(ClutterActor *actor, gfloat *center_x, gfloat *center_y)
+/* battery */
+static guint battery_init(SBManagerApp *app)
{
- *center_x = 0.0;
- *center_y = 0.0;
- if (!actor)
- return;
- clutter_actor_get_scale_center(actor, center_x, center_y);
- *center_x += clutter_actor_get_x(actor);
- *center_y += clutter_actor_get_y(actor);
+ guint interval = 60;
+ iphone_device_t phone = NULL;
+ lockdownd_client_t client = NULL;
+ plist_t info_plist = NULL;
+
+ if (IPHONE_E_SUCCESS != iphone_device_new(&phone, app->uuid)) {
+ fprintf(stderr, "No iPhone found, is it plugged in?\n");
+ goto leave_cleanup;
+ }
+
+ if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
+ fprintf(stderr, "Could not connect to lockdownd. Exiting.\n");
+ goto leave_cleanup;
+ }
+
+ lockdownd_get_value(client, "com.apple.mobile.iTunes", "BatteryPollInterval", &info_plist);
+ plist_get_uint_val(info_plist, (uint64_t*)&interval);
+ plist_free(info_plist);
+
+ leave_cleanup:
+ if (client) {
+ lockdownd_client_free(client);
+ }
+ iphone_device_free(phone);
+
+ /* Let's default to the default */
+ return interval;
}
-static gboolean item_button_press(ClutterActor *actor, ClutterButtonEvent *event, gpointer user_data)
+static guint battery_get_current_capacity(SBManagerApp *app)
{
- if (!user_data) {
- return FALSE;
- }
+ uint64_t current_capacity = 0;
+ plist_t node = NULL;
- if (selected_item) {
- /* do not allow a button_press event without a prior release */
- return FALSE;
+ if (app->battery == NULL)
+ return current_capacity;
+
+ node = plist_dict_get_item(app->battery, "BatteryCurrentCapacity");
+ if (node != NULL) {
+ plist_get_uint_val(node, &current_capacity);
+ plist_free(node);
}
- SBItem *item = (SBItem*)user_data;
+ return (guint) current_capacity;
+}
- char *strval = NULL;
- plist_t node = plist_dict_get_item(item->node, "displayName");
- if (node && plist_get_node_type(node) == PLIST_STRING) {
- plist_get_string_val(node, &strval);
+static gboolean battery_update_cb(gpointer data)
+{
+ SBManagerApp *app = (SBManagerApp*)data;
+ iphone_device_t phone = NULL;
+ lockdownd_client_t client = NULL;
+ guint capacity = 0;
+ gboolean res = TRUE;
+
+ if (IPHONE_E_SUCCESS != iphone_device_new(&phone, app->uuid)) {
+ fprintf(stderr, "No iPhone found, is it plugged in?\n");
+ goto leave_cleanup;
}
- g_mutex_lock(selected_mutex);
- debug_printf("%s: %s mouse pressed\n", __func__, strval);
+ if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
+ fprintf(stderr, "Could not connect to lockdownd. Exiting.\n");
+ goto leave_cleanup;
+ }
- if (actor) {
- gfloat diffx = 0.0;
- gfloat diffy = 0.0;
- ClutterActor *sc = clutter_actor_get_parent(actor);
- if (item->is_dock_item) {
- GList *children = clutter_container_get_children(CLUTTER_CONTAINER(sc));
- if (children) {
- ClutterActor *icon = g_list_nth_data(children, 0);
- ClutterActor *label = g_list_nth_data(children, 1);
- clutter_text_set_color(CLUTTER_TEXT(label), &item_text_color);
- clutter_actor_set_y(label, clutter_actor_get_y(icon) + 62.0);
- g_list_free(children);
- }
- diffx = dock_area.x1;
- diffy = dock_area.y1;
- } else {
- diffx = sb_area.x1 - (current_page * STAGE_WIDTH);
- diffy = sb_area.y1;
- }
- clutter_actor_reparent(sc, stage);
- clutter_actor_set_position(sc, clutter_actor_get_x(sc) + diffx, clutter_actor_get_y(sc) + diffy);
- clutter_actor_raise_top(sc);
- clutter_actor_set_scale_full(sc, 1.2, 1.2,
- clutter_actor_get_x(actor) +
- clutter_actor_get_width(actor) / 2,
- clutter_actor_get_y(actor) + clutter_actor_get_height(actor) / 2);
- clutter_actor_set_opacity(sc, 160);
- selected_item = item;
- start_x = event->x;
- start_y = event->y;
+ lockdownd_get_value(client, "com.apple.mobile.battery", NULL, &app->battery);
+
+ capacity = battery_get_current_capacity(app);
+
+ clutter_actor_set_size(battery_level, (guint) (((double) (capacity) / 100.0) * 15), 6);
+ clutter_actor_set_position(battery_level, 298, 6);
+
+ /* stop polling if we are fully charged */
+ if (capacity == 100)
+ res = FALSE;
+
+ leave_cleanup:
+ if (client) {
+ lockdownd_client_free(client);
}
- g_mutex_unlock(selected_mutex);
+ iphone_device_free(phone);
- return TRUE;
+ return res;
}
-static gboolean item_button_release(ClutterActor *actor, ClutterButtonEvent *event, gpointer user_data)
+static gboolean get_device_info(SBManagerApp *app)
{
- if (!user_data) {
- return FALSE;
+ iphone_device_t phone = NULL;
+ lockdownd_client_t client = NULL;
+ plist_t node;
+ gboolean res = FALSE;
+
+ if (IPHONE_E_SUCCESS != iphone_device_new(&phone, app->uuid)) {
+ fprintf(stderr, "No iPhone found, is it plugged in?\n");
+ goto leave_cleanup;
}
- SBItem *item = (SBItem*)user_data;
- char *strval = NULL;
- plist_t node = plist_dict_get_item(item->node, "displayName");
- if (node && plist_get_node_type(node) == PLIST_STRING) {
- plist_get_string_val(node, &strval);
+ if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
+ fprintf(stderr, "Could not connect to lockdownd. Exiting.\n");
+ goto leave_cleanup;
}
- g_mutex_lock(selected_mutex);
- debug_printf("%s: %s mouse released\n", __func__, strval);
+ lockdownd_get_device_name(client, &app->device_name);
- if (actor) {
- ClutterActor *sc = clutter_actor_get_parent(actor);
- clutter_actor_set_scale_full(sc, 1.0, 1.0,
- clutter_actor_get_x(actor) +
- clutter_actor_get_width(actor) / 2,
- clutter_actor_get_y(actor) + clutter_actor_get_height(actor) / 2);
- clutter_actor_set_opacity(sc, 255);
- if (item->is_dock_item) {
- GList *children = clutter_container_get_children(CLUTTER_CONTAINER(sc));
- if (children) {
- ClutterActor *icon = g_list_nth_data(children, 0);
- ClutterActor *label = g_list_nth_data(children, 1);
- clutter_text_set_color(CLUTTER_TEXT(label), &dock_item_text_color);
- clutter_actor_set_y(label, clutter_actor_get_y(icon) + 67.0);
- g_list_free(children);
+ lockdownd_get_value(client, NULL, "ProductType", &node);
+ if (node) {
+ char *devtype = NULL;
+ const char *devtypes[6][2] = {
+ {"iPhone1,1", "iPhone"},
+ {"iPhone1,2", "iPhone 3G"},
+ {"iPhone2,1", "iPhone 3GS"},
+ {"iPod1,1", "iPod Touch"},
+ {"iPod2,1", "iPod touch (2G)"},
+ {"iPod3,1", "iPod Touch (3G)"}
+ };
+ plist_get_string_val(node, &devtype);
+ if (devtype) {
+ int i;
+ for (i = 0; i < 6; i++) {
+ if (g_str_equal(devtypes[i][0], devtype)) {
+ app->device_type = g_strdup(devtypes[i][1]);
+ break;
+ }
}
- clutter_actor_reparent(sc, the_dock);
- clutter_actor_set_position(sc,
- clutter_actor_get_x(sc) - dock_area.x1, clutter_actor_get_y(sc) - dock_area.y1);
- } else {
- clutter_actor_reparent(sc, the_sb);
- clutter_actor_set_position(sc,
- clutter_actor_get_x(sc) +
- (current_page * STAGE_WIDTH) - sb_area.x1, clutter_actor_get_y(sc) - sb_area.y1);
}
}
- selected_item = NULL;
- dock_align_icons(TRUE);
- sb_align_icons(current_page, TRUE);
- start_x = 0.0;
- start_y = 0.0;
+ res = TRUE;
- g_mutex_unlock(selected_mutex);
+ leave_cleanup:
+ if (client) {
+ lockdownd_client_free(client);
+ }
+ iphone_device_free(phone);
- return TRUE;
+ return res;
}
-static void dock_align_icons(gboolean animated)
+/* gui */
+static void gui_dock_align_icons(gboolean animated)
{
if (!dockitems)
return;
@@ -569,6 +563,7 @@ static void dock_align_icons(gboolean animated)
}
if (item != selected_item) {
+ debug_printf("%s: moving \"%s\" to (x:%.0f,y:%.0f)\n", __func__, sbitem_get_display_name(item), xpos, ypos);
if (animated) {
clutter_actor_animate(icon, CLUTTER_EASE_OUT_QUAD, 250, "x", xpos, "y", ypos, NULL);
} else {
@@ -583,19 +578,22 @@ static void dock_align_icons(gboolean animated)
}
}
-static void sb_align_icons(guint page_num, gboolean animated)
+static void gui_page_align_icons(guint page_num, gboolean animated)
{
if (!sbpages)
return;
+
if (g_list_length(sbpages) == 0) {
printf("%s: no pages? that's strange...\n", __func__);
return;
}
+
GList *pageitems = g_list_nth_data(sbpages, page_num);
if (!pageitems) {
printf("%s: no items on page %d\n", __func__, page_num);
return;
}
+
gint count = g_list_length(pageitems);
gfloat ypos = 16.0;
@@ -619,6 +617,7 @@ static void sb_align_icons(guint page_num, gboolean animated)
}
if (item != selected_item) {
+ debug_printf("%s: moving \"%s\" to (x:%.0f,y:%.0f)\n", __func__, sbitem_get_display_name(item), xpos, ypos);
if (animated) {
clutter_actor_animate(icon, CLUTTER_EASE_OUT_QUAD, 250, "x", xpos, "y", ypos, NULL);
} else {
@@ -637,237 +636,76 @@ static void sb_align_icons(guint page_num, gboolean animated)
}
}
-static void redraw_icons()
+static void gui_page_indicator_group_align()
{
- guint i;
- guint j;
- gfloat ypos;
- gfloat xpos;
-
- if (dockitems) {
- xpos = 0.0;
- ypos = 0.0;
- debug_printf("%s: drawing dock icons\n", __func__);
- for (i = 0; i < g_list_length(dockitems); i++) {
- SBItem *item = (SBItem*)g_list_nth_data(dockitems, i);
- if (item && item->texture && item->node) {
- item->is_dock_item = TRUE;
- ClutterActor *grp = clutter_group_new();
- ClutterActor *actor = item->texture;
- clutter_container_add_actor(CLUTTER_CONTAINER(grp), actor);
- clutter_actor_set_position(actor, xpos, ypos);
- clutter_actor_set_reactive(actor, TRUE);
- g_signal_connect(actor, "button-press-event", G_CALLBACK(item_button_press), item);
- g_signal_connect(actor, "button-release-event", G_CALLBACK(item_button_release), item);
- clutter_actor_show(actor);
- actor = item->label;
- clutter_actor_set_position(actor, xpos + (59.0 - clutter_actor_get_width(actor)) / 2, ypos + 67.0);
- clutter_text_set_color(CLUTTER_TEXT(actor), &dock_item_text_color);
- clutter_actor_show(actor);
- clutter_container_add_actor(CLUTTER_CONTAINER(grp), actor);
- clutter_container_add_actor(CLUTTER_CONTAINER(the_dock), grp);
- dock_align_icons(FALSE);
- }
- }
- }
- clutter_stage_ensure_redraw(CLUTTER_STAGE(stage));
- if (sbpages) {
- debug_printf("%s: %d pages\n", __func__, g_list_length(sbpages));
- for (j = 0; j < g_list_length(sbpages); j++) {
- GList *cpage = g_list_nth_data(sbpages, j);
- ypos = 0.0;
- xpos = 0.0;
- debug_printf("%s: drawing page icons for page %d\n", __func__, j);
- for (i = 0; i < g_list_length(cpage); i++) {
- SBItem *item = (SBItem*)g_list_nth_data(cpage, i);
- if (item && item->texture && item->node) {
- item->is_dock_item = FALSE;
- ClutterActor *grp = clutter_group_new();
- ClutterActor *actor = item->texture;
- clutter_container_add_actor(CLUTTER_CONTAINER(grp), actor);
- clutter_actor_set_position(actor, xpos, ypos);
- clutter_actor_set_reactive(actor, TRUE);
- g_signal_connect(actor, "button-press-event", G_CALLBACK(item_button_press), item);
- g_signal_connect(actor, "button-release-event", G_CALLBACK(item_button_release), item);
- clutter_actor_show(actor);
- actor = item->label;
- clutter_text_set_color(CLUTTER_TEXT(actor), &item_text_color);
- clutter_actor_set_position(actor, xpos + (59.0 - clutter_actor_get_width(actor)) / 2, ypos + 62.0);
- clutter_actor_show(actor);
- clutter_container_add_actor(CLUTTER_CONTAINER(grp), actor);
- clutter_container_add_actor(CLUTTER_CONTAINER(the_sb), grp);
- sb_align_icons(j, FALSE);
- }
- }
- }
- }
- clutter_stage_ensure_redraw(CLUTTER_STAGE(stage));
-}
-
-static GList *insert_into_icon_list(GList *iconlist, SBItem *newitem, gfloat item_x, gfloat item_y)
-{
- if (!newitem) {
- return iconlist;
- }
- if (!iconlist) {
- /* for empty lists just add the element */
- return g_list_append(iconlist, newitem);
- }
+ gint count = clutter_group_get_n_children(CLUTTER_GROUP(page_indicator_group));
gint i;
- gint count = g_list_length(iconlist);
- gint newpos = count;
- if (count <= 0) {
- return iconlist;
- }
-
- for (i = 0; i < count; i++) {
- SBItem *item = g_list_nth_data(iconlist, i);
- ClutterActor *icon = clutter_actor_get_parent(item->texture);
- gfloat xpos = clutter_actor_get_x(icon);
- gfloat ypos = clutter_actor_get_y(icon);
-
- gint nrow = (ypos - 16) / 88;
- gint irow = (item_y - 16) / 88;
+ gfloat xpos = 0.0;
- xpos += nrow*STAGE_WIDTH;
- gfloat ixpos = item_x + irow*STAGE_WIDTH;
+ if (count <= 0)
+ return;
- if (move_left) {
- if (ixpos < xpos + 40) {
- newpos = i;
- break;
- }
+ for (i = 0; i < count; i++) {
+ ClutterActor *dot = clutter_group_get_nth_child(CLUTTER_GROUP(page_indicator_group), i);
+ clutter_actor_set_position(dot, xpos, 0.0);
+ if (i == current_page) {
+ clutter_actor_set_opacity(dot, 200);
} else {
- if (ixpos < xpos - 10) {
- newpos = i;
- break;
- }
+ clutter_actor_set_opacity(dot, 100);
}
+ xpos += clutter_actor_get_width(dot);
}
- return g_list_insert(iconlist, newitem, newpos);
+ clutter_actor_set_x(page_indicator_group, (STAGE_WIDTH - xpos) / 2.0);
}
-static gboolean stage_motion(ClutterActor *actor, ClutterMotionEvent *event, gpointer user_data)
+static gboolean page_indicator_clicked_cb(ClutterActor *actor, ClutterEvent *event, gpointer data);
+
+static void gui_page_indicator_group_add(int page_index)
{
- /* check if an item has been raised */
- if (!selected_item) {
- return FALSE;
+ if (page_indicator) {
+ ClutterActor *actor = clutter_clone_new(page_indicator);
+ clutter_actor_unparent(actor);
+ clutter_actor_set_reactive(actor, TRUE);
+ g_signal_connect(actor,
+ "button-press-event",
+ G_CALLBACK(page_indicator_clicked_cb), GUINT_TO_POINTER(page_index));
+ clutter_container_add_actor(CLUTTER_CONTAINER(page_indicator_group), actor);
+ gui_page_indicator_group_align();
}
+}
- ClutterActor *icon = clutter_actor_get_parent(selected_item->texture);
-
- clutter_actor_move_by(icon, (event->x - start_x), (event->y - start_y));
+static void gui_set_current_page(int pageindex)
+{
+ gint count = clutter_group_get_n_children(CLUTTER_GROUP(page_indicator_group));
- if (event->x-start_x > 0) {
- move_left = FALSE;
- } else {
- move_left = TRUE;
- }
+ if ((pageindex < 0) || (pageindex >= count))
+ return;
- start_x = event->x;
- start_y = event->y;
+ current_page = pageindex;
- gfloat center_x;
- gfloat center_y;
- actor_get_abs_center(icon, &center_x, &center_y);
+ gui_page_indicator_group_align();
- if (clutter_actor_box_contains(&left_trigger, center_x-30, center_y)) {
- if (current_page > 0) {
- if (elapsed_ms(&last_page_switch, 1000)) {
- sbpages_show_previous_page();
- gettimeofday(&last_page_switch, NULL);
- }
- return TRUE;
- }
- } else if (clutter_actor_box_contains(&right_trigger, center_x+30, center_y)) {
- if (current_page < (gint)(g_list_length(sbpages)-1)) {
- if (elapsed_ms(&last_page_switch, 1000)) {
- sbpages_show_next_page();
- gettimeofday(&last_page_switch, NULL);
- }
- return TRUE;
- }
- }
-
- if (selected_item->is_dock_item) {
- dockitems = g_list_remove(dockitems, selected_item);
- if (center_y >= dock_area.y1) {
- debug_printf("icon from dock moving inside the dock!\n");
- selected_item->is_dock_item = TRUE;
- dockitems =
- insert_into_icon_list(dockitems, selected_item, (center_x - dock_area.x1), (center_y - dock_area.y1));
- } else {
- debug_printf("icon from dock moving outside the dock!\n");
- selected_item->is_dock_item = FALSE;
- }
- } else {
- GList *pageitems = g_list_nth_data(sbpages, current_page);
- sbpages = g_list_remove(sbpages, pageitems);
- pageitems = g_list_remove(pageitems, selected_item);
- if (center_y >= dock_area.y1 && (g_list_length(dockitems) < num_dock_items)) {
- debug_printf("regular icon is moving inside the dock!\n");
- selected_item->is_dock_item = TRUE;
- } else {
- debug_printf("regular icon is moving!\n");
- pageitems =
- insert_into_icon_list(pageitems, selected_item, (center_x - sb_area.x1) + (current_page * STAGE_WIDTH), (center_y - sb_area.y1));
- }
- sbpages = g_list_insert(sbpages, pageitems, current_page);
- }
- dock_align_icons(TRUE);
- sb_align_icons(current_page, TRUE);
-
- return TRUE;
+ clutter_actor_animate(the_sb, CLUTTER_EASE_IN_OUT_CUBIC, 400, "x", (gfloat) (-(current_page * STAGE_WIDTH)), NULL);
}
-static gboolean form_map(GtkWidget *widget, GdkEvent *event, SBManagerApp *app)
+static void gui_show_next_page()
{
- debug_printf("%s: mapped\n", __func__);
- clutter_stage_ensure_redraw(CLUTTER_STAGE(stage));
-
- return TRUE;
+ gui_set_current_page(current_page+1);
}
-static gboolean form_focus_change(GtkWidget *widget, GdkEventFocus *event, gpointer user_data)
+static void gui_show_previous_page()
{
- if (!user_data) {
- return FALSE;
- }
-
- ClutterActor *actor = (ClutterActor*)user_data;
-
- if (event->in) {
- clutter_timeline_start(CLUTTER_TIMELINE(actor));
- } else {
- clutter_timeline_pause(CLUTTER_TIMELINE(actor));
- }
-
- return TRUE;
+ gui_set_current_page(current_page-1);
}
-static gboolean set_icons(gpointer data)
+static plist_t gui_get_iconstate()
{
- SBManagerApp *app = (SBManagerApp*)data;
-
- iphone_device_t phone = NULL;
- lockdownd_client_t client = NULL;
- sbservices_client_t sbc = NULL;
- int port = 0;
-
- gboolean result = FALSE;
plist_t iconstate = NULL;
plist_t pdockarray = NULL;
plist_t pdockitems = NULL;
guint i;
- if (!dockitems || !sbpages) {
- printf("missing dockitems or sbpages\n");
- return result;
- }
-
- printf("About to upload new iconstate...\n");
-
guint count = g_list_length(dockitems);
pdockitems = plist_new_array();
for (i = 0; i < count; i++) {
@@ -930,195 +768,216 @@ static gboolean set_icons(gpointer data)
}
}
- if (IPHONE_E_SUCCESS != iphone_device_new(&phone, app->uuid)) {
- fprintf(stderr, "No iPhone found, is it plugged in?\n");
- return result;
- }
+ return iconstate;
+}
- if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
- fprintf(stderr, "Could not connect to lockdownd. Exiting.\n");
- goto leave_cleanup;
+/* input */
+static gboolean stage_motion_cb(ClutterActor *actor, ClutterMotionEvent *event, gpointer user_data)
+{
+ /* check if an item has been raised */
+ if (!selected_item) {
+ return FALSE;
}
- if ((lockdownd_start_service(client, "com.apple.springboardservices", &port) != LOCKDOWN_E_SUCCESS) || !port) {
- fprintf(stderr,
- "Could not start com.apple.springboardservices service! Remind that this feature is only supported in OS 3.1 and later!\n");
- goto leave_cleanup;
- }
- if (sbservices_client_new(phone, port, &sbc) != SBSERVICES_E_SUCCESS) {
- fprintf(stderr, "Could not connect to springboardservices!\n");
- goto leave_cleanup;
- }
- if (sbservices_set_icon_state(sbc, iconstate) != SBSERVICES_E_SUCCESS) {
- fprintf(stderr, "ERROR: Could not set new icon state!\n");
- goto leave_cleanup;
- }
+ ClutterActor *icon = clutter_actor_get_parent(selected_item->texture);
- printf("Successfully uploaded new iconstate\n");
- result = TRUE;
+ clutter_actor_move_by(icon, (event->x - start_x), (event->y - start_y));
- leave_cleanup:
- if (iconstate) {
- plist_free(iconstate);
- }
- if (sbc) {
- sbservices_client_free(sbc);
- }
- if (client) {
- lockdownd_client_free(client);
+ if (event->x-start_x > 0) {
+ move_left = FALSE;
+ } else {
+ move_left = TRUE;
}
- iphone_device_free(phone);
- return result;
-}
-
-static gboolean button_clicked(GtkButton *button, gpointer user_data)
-{
- set_icons(user_data);
+ start_x = event->x;
+ start_y = event->y;
- return TRUE;
-}
+ gfloat center_x;
+ gfloat center_y;
+ clutter_actor_get_abs_center(icon, &center_x, &center_y);
-static guint battery_init(SBManagerApp *app)
-{
- guint interval = 60;
- iphone_device_t phone = NULL;
- lockdownd_client_t client = NULL;
- plist_t info_plist = NULL;
+ debug_printf("%s: center_x:%.0f, center_y:%.0f\n", __func__, center_x, center_y);
- if (IPHONE_E_SUCCESS != iphone_device_new(&phone, app->uuid)) {
- fprintf(stderr, "No iPhone found, is it plugged in?\n");
- goto leave_cleanup;
+ if (clutter_actor_box_contains(&left_trigger, center_x-30, center_y)) {
+ if (current_page > 0) {
+ if (elapsed_ms(&last_page_switch, 1000)) {
+ gui_show_previous_page();
+ gettimeofday(&last_page_switch, NULL);
+ }
+ return TRUE;
+ }
+ } else if (clutter_actor_box_contains(&right_trigger, center_x+30, center_y)) {
+ if (current_page < (gint)(g_list_length(sbpages)-1)) {
+ if (elapsed_ms(&last_page_switch, 1000)) {
+ gui_show_next_page();
+ gettimeofday(&last_page_switch, NULL);
+ }
+ return TRUE;
+ }
}
- if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
- fprintf(stderr, "Could not connect to lockdownd. Exiting.\n");
- goto leave_cleanup;
+ if (selected_item->is_dock_item) {
+ dockitems = g_list_remove(dockitems, selected_item);
+ if (center_y >= dock_area.y1) {
+ debug_printf("%s: icon from dock moving inside the dock!\n", __func__);
+ selected_item->is_dock_item = TRUE;
+ dockitems =
+ iconlist_insert_item_at(dockitems, selected_item, (center_x - dock_area.x1), (center_y - dock_area.y1));
+ gui_dock_align_icons(TRUE);
+ } else {
+ debug_printf("%s: icon from dock moving outside the dock!\n", __func__);
+ selected_item->is_dock_item = FALSE;
+ gui_page_align_icons(current_page, TRUE);
+ }
+ } else {
+ GList *pageitems = g_list_nth_data(sbpages, current_page);
+ sbpages = g_list_remove(sbpages, pageitems);
+ pageitems = g_list_remove(pageitems, selected_item);
+ if (center_y >= dock_area.y1 && (g_list_length(dockitems) < num_dock_items)) {
+ debug_printf("%s: regular icon is moving inside the dock!\n", __func__);
+ selected_item->is_dock_item = TRUE;
+ } else {
+ debug_printf("%s: regular icon is moving!\n", __func__);
+ pageitems =
+ iconlist_insert_item_at(pageitems, selected_item, (center_x - sb_area.x1) + (current_page * STAGE_WIDTH), (center_y - sb_area.y1));
+ }
+ sbpages = g_list_insert(sbpages, pageitems, current_page);
+ gui_dock_align_icons(TRUE);
+ gui_page_align_icons(current_page, TRUE);
}
- lockdownd_get_value(client, "com.apple.mobile.iTunes", "BatteryPollInterval", &info_plist);
- plist_get_uint_val(info_plist, (uint64_t*)&interval);
- plist_free(info_plist);
-
- printf("Have to poll battery every %d seconds...\n", interval);
-
- leave_cleanup:
- if (client) {
- lockdownd_client_free(client);
- }
- iphone_device_free(phone);
+ return TRUE;
+}
- /* Let's default to the default */
- return interval;
+static gboolean page_indicator_clicked_cb(ClutterActor *actor, ClutterEvent *event, gpointer data)
+{
+ gui_set_current_page(GPOINTER_TO_UINT(data));
+ return TRUE;
}
-static guint battery_get_current_capacity(SBManagerApp *app)
+static gboolean button_clicked_cb(GtkButton *button, gpointer user_data)
{
- uint64_t current_capacity = 0;
- plist_t node = NULL;
+ SBManagerApp *app = (SBManagerApp *)user_data;
- if (app->battery == NULL)
- return current_capacity;
+ plist_t iconstate = gui_get_iconstate();
- node = plist_dict_get_item(app->battery, "BatteryCurrentCapacity");
- if (node != NULL) {
- plist_get_uint_val(node, &current_capacity);
- plist_free(node);
+ sbservices_client_t sbc = sbs_new(app->uuid);
+ if (sbc) {
+ sbs_set_iconstate(sbc, iconstate);
+ sbs_free(sbc);
}
- return (guint) current_capacity;
+ if (iconstate)
+ plist_free(iconstate);
+
+ return TRUE;
}
-static gboolean battery_update_cb(gpointer data)
+static gboolean item_button_press_cb(ClutterActor *actor, ClutterButtonEvent *event, gpointer user_data)
{
- SBManagerApp *app = (SBManagerApp*)data;
- iphone_device_t phone = NULL;
- lockdownd_client_t client = NULL;
- guint capacity = 0;
-
- printf("Updating battery information...\n");
-
- if (IPHONE_E_SUCCESS != iphone_device_new(&phone, app->uuid)) {
- fprintf(stderr, "No iPhone found, is it plugged in?\n");
- goto leave_cleanup;
+ if (!user_data) {
+ return FALSE;
}
- if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
- fprintf(stderr, "Could not connect to lockdownd. Exiting.\n");
- goto leave_cleanup;
+ if (selected_item) {
+ /* do not allow a button_press event without a prior release */
+ return FALSE;
}
- lockdownd_get_value(client, "com.apple.mobile.battery", NULL, &app->battery);
+ SBItem *item = (SBItem*)user_data;
- capacity = battery_get_current_capacity(app);
- printf("Battery capacity is at %d%%\n", capacity);
+ char *strval = sbitem_get_display_name(item);
- clutter_actor_set_size(battery_level, (guint) (((double) (capacity) / 100.0) * 15), 6);
- clutter_actor_set_position(battery_level, 298, 6);
+ g_mutex_lock(selected_mutex);
+ debug_printf("%s: %s mouse pressed\n", __func__, strval);
- leave_cleanup:
- if (client) {
- lockdownd_client_free(client);
+ if (actor) {
+ gfloat diffx = 0.0;
+ gfloat diffy = 0.0;
+ ClutterActor *sc = clutter_actor_get_parent(actor);
+ if (item->is_dock_item) {
+ GList *children = clutter_container_get_children(CLUTTER_CONTAINER(sc));
+ if (children) {
+ ClutterActor *icon = g_list_nth_data(children, 0);
+ ClutterActor *label = g_list_nth_data(children, 1);
+ clutter_text_set_color(CLUTTER_TEXT(label), &item_text_color);
+ clutter_actor_set_y(label, clutter_actor_get_y(icon) + 62.0);
+ g_list_free(children);
+ }
+ diffx = dock_area.x1;
+ diffy = dock_area.y1;
+ } else {
+ diffx = sb_area.x1 - (current_page * STAGE_WIDTH);
+ diffy = sb_area.y1;
+ }
+ clutter_actor_reparent(sc, stage);
+ clutter_actor_set_position(sc, clutter_actor_get_x(sc) + diffx, clutter_actor_get_y(sc) + diffy);
+ clutter_actor_raise_top(sc);
+ clutter_actor_set_scale_full(sc, 1.2, 1.2,
+ clutter_actor_get_x(actor) +
+ clutter_actor_get_width(actor) / 2,
+ clutter_actor_get_y(actor) + clutter_actor_get_height(actor) / 2);
+ clutter_actor_set_opacity(sc, 160);
+ selected_item = item;
+ start_x = event->x;
+ start_y = event->y;
}
- iphone_device_free(phone);
+ g_mutex_unlock(selected_mutex);
return TRUE;
}
-static gboolean get_device_info(SBManagerApp *app)
+static gboolean item_button_release_cb(ClutterActor *actor, ClutterButtonEvent *event, gpointer user_data)
{
- iphone_device_t phone = NULL;
- lockdownd_client_t client = NULL;
- plist_t node;
- gboolean res = FALSE;
-
- if (IPHONE_E_SUCCESS != iphone_device_new(&phone, app->uuid)) {
- fprintf(stderr, "No iPhone found, is it plugged in?\n");
- goto leave_cleanup;
+ if (!user_data) {
+ return FALSE;
}
- if (LOCKDOWN_E_SUCCESS != lockdownd_client_new(phone, &client)) {
- fprintf(stderr, "Could not connect to lockdownd. Exiting.\n");
- goto leave_cleanup;
- }
+ SBItem *item = (SBItem*)user_data;
+ char *strval = sbitem_get_display_name(item);
- lockdownd_get_device_name(client, &app->device_name);
+ g_mutex_lock(selected_mutex);
+ debug_printf("%s: %s mouse released\n", __func__, strval);
- lockdownd_get_value(client, NULL, "ProductType", &node);
- if (node) {
- char *devtype = NULL;
- const char *devtypes[6][2] = {
- {"iPhone1,1", "iPhone"},
- {"iPhone1,2", "iPhone 3G"},
- {"iPhone2,1", "iPhone 3GS"},
- {"iPod1,1", "iPod Touch"},
- {"iPod2,1", "iPod touch (2G)"},
- {"iPod3,1", "iPod Touch (3G)"}
- };
- plist_get_string_val(node, &devtype);
- if (devtype) {
- int i;
- for (i = 0; i < 6; i++) {
- if (g_str_equal(devtypes[i][0], devtype)) {
- app->device_type = g_strdup(devtypes[i][1]);
- break;
- }
+ if (actor) {
+ ClutterActor *sc = clutter_actor_get_parent(actor);
+ clutter_actor_set_scale_full(sc, 1.0, 1.0,
+ clutter_actor_get_x(actor) +
+ clutter_actor_get_width(actor) / 2,
+ clutter_actor_get_y(actor) + clutter_actor_get_height(actor) / 2);
+ clutter_actor_set_opacity(sc, 255);
+ if (item->is_dock_item) {
+ GList *children = clutter_container_get_children(CLUTTER_CONTAINER(sc));
+ if (children) {
+ ClutterActor *icon = g_list_nth_data(children, 0);
+ ClutterActor *label = g_list_nth_data(children, 1);
+ clutter_text_set_color(CLUTTER_TEXT(label), &dock_item_text_color);
+ clutter_actor_set_y(label, clutter_actor_get_y(icon) + 67.0);
+ g_list_free(children);
}
+ clutter_actor_reparent(sc, the_dock);
+ clutter_actor_set_position(sc,
+ clutter_actor_get_x(sc) - dock_area.x1, clutter_actor_get_y(sc) - dock_area.y1);
+ } else {
+ clutter_actor_reparent(sc, the_sb);
+ clutter_actor_set_position(sc,
+ clutter_actor_get_x(sc) +
+ (current_page * STAGE_WIDTH) - sb_area.x1, clutter_actor_get_y(sc) - sb_area.y1);
}
}
- res = TRUE;
+ selected_item = NULL;
+ gui_dock_align_icons(TRUE);
+ gui_page_align_icons(current_page, TRUE);
+ start_x = 0.0;
+ start_y = 0.0;
- leave_cleanup:
- if (client) {
- lockdownd_client_free(client);
- }
- iphone_device_free(phone);
+ g_mutex_unlock(selected_mutex);
- return res;
+ return TRUE;
}
-static gboolean stage_key_press(ClutterActor *actor, ClutterEvent *event, gpointer user_data)
+static gboolean stage_key_press_cb(ClutterActor *actor, ClutterEvent *event, gpointer user_data)
{
if (!user_data || (event->type != CLUTTER_KEY_PRESS)) {
return FALSE;
@@ -1127,10 +986,10 @@ static gboolean stage_key_press(ClutterActor *actor, ClutterEvent *event, gpoint
guint symbol = clutter_event_get_key_symbol(event);
switch(symbol) {
case CLUTTER_Right:
- sbpages_show_next_page();
+ gui_show_next_page();
break;
case CLUTTER_Left:
- sbpages_show_previous_page();
+ gui_show_previous_page();
break;
default:
return FALSE;
@@ -1138,95 +997,239 @@ static gboolean stage_key_press(ClutterActor *actor, ClutterEvent *event, gpoint
return TRUE;
}
-static void print_usage(int argc, char **argv)
+static void gui_show_icons()
{
- char *name = NULL;
+ guint i;
+ guint j;
+ gfloat ypos;
+ gfloat xpos;
- name = strrchr(argv[0], '/');
- printf("Usage: %s [OPTIONS]\n", (name ? name + 1 : argv[0]));
- printf("Manage SpringBoard icons of an iPhone/iPod Touch.\n\n");
- printf(" -d, --debug\t\tenable communication debugging\n");
- printf(" -D, --debug-app\tenable application debug messages\n");
- printf(" -u, --uuid UUID\ttarget specific device by its 40-digit device UUID\n");
- printf(" -h, --help\t\tprints usage information\n");
- printf("\n");
+ if (dockitems) {
+ xpos = 0.0;
+ ypos = 0.0;
+ debug_printf("%s: showing dock icons\n", __func__);
+ for (i = 0; i < g_list_length(dockitems); i++) {
+ SBItem *item = (SBItem*)g_list_nth_data(dockitems, i);
+ if (item && item->texture && item->node) {
+ item->is_dock_item = TRUE;
+ ClutterActor *grp = clutter_group_new();
+ ClutterActor *actor = item->texture;
+ clutter_container_add_actor(CLUTTER_CONTAINER(grp), actor);
+ clutter_actor_set_position(actor, xpos, ypos);
+ clutter_actor_set_reactive(actor, TRUE);
+ g_signal_connect(actor, "button-press-event", G_CALLBACK(item_button_press_cb), item);
+ g_signal_connect(actor, "button-release-event", G_CALLBACK(item_button_release_cb), item);
+ clutter_actor_show(actor);
+ actor = item->label;
+ clutter_actor_set_position(actor, xpos + (59.0 - clutter_actor_get_width(actor)) / 2, ypos + 67.0);
+ clutter_text_set_color(CLUTTER_TEXT(actor), &dock_item_text_color);
+ clutter_actor_show(actor);
+ clutter_container_add_actor(CLUTTER_CONTAINER(grp), actor);
+ clutter_container_add_actor(CLUTTER_CONTAINER(the_dock), grp);
+ gui_dock_align_icons(FALSE);
+ }
+ }
+ }
+ clutter_stage_ensure_redraw(CLUTTER_STAGE(stage));
+ if (sbpages) {
+ debug_printf("%s: processing %d pages\n", __func__, g_list_length(sbpages));
+ for (j = 0; j < g_list_length(sbpages); j++) {
+ GList *cpage = g_list_nth_data(sbpages, j);
+ ypos = 0.0;
+ xpos = 0.0;
+ debug_printf("%s: showing page icons for page %d\n", __func__, j);
+ for (i = 0; i < g_list_length(cpage); i++) {
+ SBItem *item = (SBItem*)g_list_nth_data(cpage, i);
+ if (item && item->texture && item->node) {
+ item->is_dock_item = FALSE;
+ ClutterActor *grp = clutter_group_new();
+ ClutterActor *actor = item->texture;
+ clutter_container_add_actor(CLUTTER_CONTAINER(grp), actor);
+ clutter_actor_set_position(actor, xpos, ypos);
+ clutter_actor_set_reactive(actor, TRUE);
+ g_signal_connect(actor, "button-press-event", G_CALLBACK(item_button_press_cb), item);
+ g_signal_connect(actor, "button-release-event", G_CALLBACK(item_button_release_cb), item);
+ clutter_actor_show(actor);
+ actor = item->label;
+ clutter_text_set_color(CLUTTER_TEXT(actor), &item_text_color);
+ clutter_actor_set_position(actor, xpos + (59.0 - clutter_actor_get_width(actor)) / 2, ypos + 62.0);
+ clutter_actor_show(actor);
+ clutter_container_add_actor(CLUTTER_CONTAINER(grp), actor);
+ clutter_container_add_actor(CLUTTER_CONTAINER(the_sb), grp);
+ gui_page_align_icons(j, FALSE);
+ }
+ }
+ }
+ }
+ clutter_stage_ensure_redraw(CLUTTER_STAGE(stage));
}
-int main(int argc, char **argv)
+static SBItem *gui_load_icon(sbservices_client_t sbc, plist_t icon_info)
{
- SBManagerApp *app;
- ClutterTimeline *timeline;
- ClutterColor stage_color = { 0x00, 0x00, 0x00, 0xff }; /* Black */
- ClutterActor *actor;
- int i;
-
- app = g_new0(SBManagerApp, 1);
- if (!app) {
- printf("Error: out of memory!\n");
- return -1;
+ SBItem *di = NULL;
+ plist_t valuenode = NULL;
+ if (plist_get_node_type(icon_info) != PLIST_DICT) {
+ return di;
}
+ valuenode = plist_dict_get_item(icon_info, "displayIdentifier");
+ if (valuenode && (plist_get_node_type(valuenode) == PLIST_STRING)) {
+ char *value = NULL;
+ char *icon_filename = NULL;
+ plist_get_string_val(valuenode, &value);
+ debug_printf("%s: retrieving icon for '%s'\n", __func__, value);
+ icon_filename = g_strdup_printf("/tmp/%s.png", value);
+ if (sbs_save_icon(sbc, value, icon_filename)) {
+ GError *err = NULL;
- gettimeofday(&last_page_switch, NULL);
+ /* create and load texture */
+ ClutterActor *actor = clutter_texture_new();
+ clutter_texture_set_load_async(CLUTTER_TEXTURE(actor), TRUE);
+ clutter_texture_set_from_file(CLUTTER_TEXTURE(actor), icon_filename, &err);
- app->uuid = NULL;
+ /* create item */
+ if (actor) {
+ di = g_new0(SBItem, 1);
+ di->node = plist_copy(icon_info);
+ di->texture = actor;
- /* parse cmdline args */
- for (i = 1; i < argc; i++) {
- if (!strcmp(argv[i], "-d") || !strcmp(argv[i], "--debug")) {
- iphone_set_debug_mask(DBGMASK_ALL);
- iphone_set_debug_level(1);
- continue;
- } else if (!strcmp(argv[i], "-D") || !strcmp(argv[i], "--debug-app")) {
- debug_app = TRUE;
- continue;
- } else if (!strcmp(argv[i], "-u") || !strcmp(argv[i], "--uuid")) {
- i++;
- if (!argv[i] || (strlen(argv[i]) != 40)) {
- print_usage(argc, argv);
- return 0;
+ char *txtval = sbitem_get_display_name(di);
+ if (txtval)
+ di->label = clutter_text_new_with_text(ITEM_FONT, txtval);
+ }
+ if (err) {
+ fprintf(stderr, "ERROR: %s\n", err->message);
+ g_error_free(err);
}
- app->uuid = g_strndup(argv[i], 40);
- continue;
- } else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) {
- print_usage(argc, argv);
- return 0;
} else {
- print_usage(argc, argv);
- return 0;
+ fprintf(stderr, "ERROR: could not get icon for '%s'\n", value);
}
+ g_free(icon_filename);
+ free(value);
}
+ return di;
+}
- if (!get_device_info(app)) {
- g_error("Could not read information from device.");
- return 0;
+static guint gui_load_icon_row(sbservices_client_t sbc, plist_t items, GList **row)
+{
+ int i;
+ int count;
+ SBItem *item = NULL;
+
+ count = plist_array_get_size(items);
+ for (i = 0; i < count; i++) {
+ plist_t icon_info = plist_array_get_item(items, i);
+ item = gui_load_icon(sbc, icon_info);
+ if (item != NULL)
+ *row = g_list_append(*row, item);
}
- if (gtk_clutter_init(&argc, &argv) != CLUTTER_INIT_SUCCESS) {
- g_error("Unable to initialize GtkClutter");
+ return count;
+}
+
+static void gui_set_iconstate(sbservices_client_t sbc, plist_t iconstate)
+{
+ int total;
+
+ /* get total number of pages */
+ total = plist_array_get_size(iconstate);
+
+ if (total < 1) {
+ fprintf(stderr, "ERROR: No icons returned in icon state\n");
+ return;
+ } else {
+ plist_t dock = plist_array_get_item(iconstate, 0);
+ if ((plist_get_node_type(dock) != PLIST_ARRAY)
+ || (plist_array_get_size(dock) < 1)) {
+ fprintf(stderr, "ERROR: error getting outer dock icon array!\n");
+ return;
+ }
+ dock = plist_array_get_item(dock, 0);
+ if (plist_get_node_type(dock) != PLIST_ARRAY) {
+ fprintf(stderr, "ERROR: error getting inner dock icon array!\n");
+ return;
+ }
+
+ /* load dock icons */
+ debug_printf("%s: processing dock\n", __func__);
+ num_dock_items = gui_load_icon_row(sbc, dock, &dockitems);
+
+ if (total > 1) {
+ /* get all page icons */
+ int p, r, rows;
+ for (p = 1; p < total; p++) {
+ plist_t npage = plist_array_get_item(iconstate, p);
+ GList *page = NULL;
+ if ((plist_get_node_type(npage) != PLIST_ARRAY)
+ || (plist_array_get_size(npage) < 1)) {
+ fprintf(stderr, "ERROR: error getting outer page icon array!\n");
+ return;
+ }
+ /* rows */
+ rows = plist_array_get_size(npage);
+ for (r = 0; r < rows; r++) {
+ debug_printf("%s: processing page %d, row %d\n", __func__, p, r);
+
+ plist_t nrow = plist_array_get_item(npage, r);
+ if (plist_get_node_type(nrow) != PLIST_ARRAY) {
+ fprintf(stderr, "ERROR: error getting page row icon array!\n");
+ return;
+ }
+ gui_load_icon_row(sbc, nrow, &page);
+ }
+
+ if (page) {
+ sbpages = g_list_append(sbpages, page);
+ gui_page_indicator_group_add(p - 1);
+ }
+ }
+ }
}
+}
- if (!g_thread_supported())
- g_thread_init(NULL);
+static gboolean gui_pages_init_cb(gpointer data)
+{
+ SBManagerApp *app = (SBManagerApp *)data;
+ sbservices_client_t sbc = NULL;
+ plist_t iconstate = NULL;
+
+ /* connect to sbservices */
+ sbc = sbs_new(app->uuid);
+ if (sbc) {
+ /* Load icon data */
+ iconstate = sbs_get_iconstate(sbc);
+ if (iconstate) {
+ gui_set_iconstate(sbc, iconstate);
+ gui_show_icons();
+ }
+ sbs_free(sbc);
+ }
+ if (iconstate)
+ plist_free(iconstate);
+ return FALSE;
+}
+
+static void gui_init(SBManagerApp* app)
+{
+ ClutterTimeline *timeline;
+ ClutterActor *actor;
- /* Create the window and some child widgets: */
app->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_window_set_resizable(GTK_WINDOW(app->window), FALSE);
+
gchar *wndtitle = g_strdup_printf("%s - SBManager", app->device_name);
gtk_window_set_title(GTK_WINDOW(app->window), wndtitle);
g_free(wndtitle);
+
GtkWidget *vbox = gtk_vbox_new(FALSE, 6);
gtk_container_add(GTK_CONTAINER(app->window), vbox);
gtk_widget_show(vbox);
+
GtkWidget *button = gtk_button_new_with_label("Upload changes to device");
gtk_box_pack_end(GTK_BOX(vbox), button, FALSE, FALSE, 0);
+ g_signal_connect(button, "clicked", G_CALLBACK(button_clicked_cb), app);
gtk_widget_show(button);
- g_signal_connect(button, "clicked", G_CALLBACK(button_clicked), app);
-
- /* Stop the application when the window is closed: */
- g_signal_connect(app->window, "hide", G_CALLBACK(gtk_main_quit), app);
-
- /* Create the clutter widget: */
+ /* Create the clutter widget */
GtkWidget *clutter_widget = gtk_clutter_embed_new();
gtk_box_pack_start(GTK_BOX(vbox), clutter_widget, TRUE, TRUE, 0);
gtk_widget_show(clutter_widget);
@@ -1236,12 +1239,15 @@ int main(int argc, char **argv)
*/
gtk_widget_set_size_request(clutter_widget, STAGE_WIDTH, STAGE_HEIGHT);
- /* Get the stage and set its size and color: */
+ /* Set the stage background color */
stage = gtk_clutter_embed_get_stage(GTK_CLUTTER_EMBED(clutter_widget));
-
clutter_stage_set_color(CLUTTER_STAGE(stage), &stage_color);
- /* dock background */
+ /* attach to stage signals */
+ g_signal_connect(stage, "motion-event", G_CALLBACK(stage_motion_cb), app);
+ g_signal_connect(stage, "key-press-event", G_CALLBACK(stage_key_press_cb), app);
+
+ /* Load ui background */
GError *err = NULL;
actor = clutter_texture_new();
clutter_texture_set_load_async(CLUTTER_TEXTURE(actor), TRUE);
@@ -1258,7 +1264,7 @@ int main(int argc, char **argv)
fprintf(stderr, "could not load background.png\n");
}
- /* device type widget */
+ /* Create device type widget */
type_label = clutter_text_new_full(CLOCK_FONT, app->device_type, &clock_text_color);
clutter_group_add(CLUTTER_GROUP(stage), type_label);
clutter_actor_set_position(type_label, 3.0, 2.0);
@@ -1298,7 +1304,7 @@ int main(int argc, char **argv)
clutter_group_add(CLUTTER_GROUP(stage), the_dock);
clutter_actor_set_position(the_dock, dock_area.x1, dock_area.y1);
- /* Show the stage: */
+ /* Show the stage */
clutter_actor_show(stage);
/* Create a timeline to manage animation */
@@ -1311,13 +1317,10 @@ int main(int argc, char **argv)
/* and start it */
clutter_timeline_start(timeline);
- g_signal_connect(stage, "motion-event", G_CALLBACK(stage_motion), app);
- g_signal_connect(stage, "key-press-event", G_CALLBACK(stage_key_press), app);
-
- g_signal_connect(G_OBJECT(app->window), "map-event", G_CALLBACK(form_map), app);
-
- g_signal_connect(G_OBJECT(app->window), "focus-in-event", G_CALLBACK(form_focus_change), timeline);
- g_signal_connect(G_OBJECT(app->window), "focus-out-event", G_CALLBACK(form_focus_change), timeline);
+ /* attach to window signals */
+ g_signal_connect(G_OBJECT(app->window), "map-event", G_CALLBACK(win_map_cb), app);
+ g_signal_connect(G_OBJECT(app->window), "focus-in-event", G_CALLBACK(win_focus_change_cb), timeline);
+ g_signal_connect(G_OBJECT(app->window), "focus-out-event", G_CALLBACK(win_focus_change_cb), timeline);
selected_mutex = g_mutex_new();
@@ -1332,14 +1335,89 @@ int main(int argc, char **argv)
g_timeout_add_seconds(battery_init(app), (GSourceFunc) battery_update_cb, app);
/* battery capacity */
- battery_level = clutter_rectangle_new_with_color(clutter_color_new(0xff, 0xff, 0xff, 0x9f));
+ battery_level = clutter_rectangle_new_with_color(&battery_color);
battery_update_cb(app);
clutter_group_add(CLUTTER_GROUP(stage), battery_level);
/* Load icons in an idle loop */
- g_idle_add((GSourceFunc) get_icons, app);
+ g_idle_add((GSourceFunc) gui_pages_init_cb, app);
+
+ /* Stop the application when the window is closed */
+ g_signal_connect(app->window, "hide", G_CALLBACK(gtk_main_quit), app);
+}
+
+/* main */
+static void print_usage(int argc, char **argv)
+{
+ char *name = NULL;
+
+ name = strrchr(argv[0], '/');
+ printf("Usage: %s [OPTIONS]\n", (name ? name + 1 : argv[0]));
+ printf("Manage SpringBoard icons of an iPhone/iPod Touch.\n\n");
+ printf(" -d, --debug\t\tenable communication debugging\n");
+ printf(" -D, --debug-app\tenable application debug messages\n");
+ printf(" -u, --uuid UUID\ttarget specific device by its 40-digit device UUID\n");
+ printf(" -h, --help\t\tprints usage information\n");
+ printf("\n");
+}
+
+int main(int argc, char **argv)
+{
+ SBManagerApp *app;
+ int i;
+
+ app = g_new0(SBManagerApp, 1);
+ if (!app) {
+ printf("Error: out of memory!\n");
+ return -1;
+ }
+
+ gettimeofday(&last_page_switch, NULL);
+
+ app->uuid = NULL;
+
+ /* parse cmdline args */
+ for (i = 1; i < argc; i++) {
+ if (!strcmp(argv[i], "-d") || !strcmp(argv[i], "--debug")) {
+ iphone_set_debug_mask(DBGMASK_ALL);
+ iphone_set_debug_level(1);
+ continue;
+ } else if (!strcmp(argv[i], "-D") || !strcmp(argv[i], "--debug-app")) {
+ debug_app = TRUE;
+ continue;
+ } else if (!strcmp(argv[i], "-u") || !strcmp(argv[i], "--uuid")) {
+ i++;
+ if (!argv[i] || (strlen(argv[i]) != 40)) {
+ print_usage(argc, argv);
+ return 0;
+ }
+ app->uuid = g_strndup(argv[i], 40);
+ continue;
+ } else if (!strcmp(argv[i], "-h") || !strcmp(argv[i], "--help")) {
+ print_usage(argc, argv);
+ return 0;
+ } else {
+ print_usage(argc, argv);
+ return 0;
+ }
+ }
+
+ if (!get_device_info(app)) {
+ g_error("Could not read information from device.");
+ return 0;
+ }
+
+ if (gtk_clutter_init(&argc, &argv) != CLUTTER_INIT_SUCCESS) {
+ g_error("Unable to initialize GtkClutter");
+ }
+
+ if (!g_thread_supported())
+ g_thread_init(NULL);
+
+ /* Create the window and some child widgets */
+ gui_init(app);
- /* Start the main loop, so we can respond to events: */
+ /* Start the main loop, so we can respond to events */
gtk_main();
return 0;