reformat edje_player
authorzmike <michael.blumenkrantz@gmail.com>
Mon, 7 Apr 2014 17:15:40 +0000 (13:15 -0400)
committerzmike <michael.blumenkrantz@gmail.com>
Mon, 7 Apr 2014 17:15:40 +0000 (13:15 -0400)
ffs these tabs

src/bin/edje/edje_player.c

index 8f93447..7daf48a 100644 (file)
 #include <Ecore_Evas.h>
 #include <Edje.h>
 
-struct opts {
-   char *file;
-   char *group;
-   Eina_Bool list_groups;
-   char *engine;
+struct opts
+{
+   char          *file;
+   char          *group;
+   Eina_Bool      list_groups;
+   char          *engine;
    Eina_Rectangle size;
-   unsigned char color[3];
-   Eina_Bool borderless;
-   Eina_Bool sticky;
-   Eina_Bool shaped;
-   Eina_Bool alpha;
-   Eina_Bool print;
-   Eina_Bool slave_mode;
-   double scale;
-   char *title;
+   unsigned char  color[3];
+   Eina_Bool      borderless;
+   Eina_Bool      sticky;
+   Eina_Bool      shaped;
+   Eina_Bool      alpha;
+   Eina_Bool      print;
+   Eina_Bool      slave_mode;
+   double         scale;
+   char          *title;
 };
 
 static Eina_Bool _edje_load_or_show_error(Evas_Object *edje, const char *file, const char *group);
@@ -63,27 +64,27 @@ _slave_mode_tok(char **p_arg)
 
    if (*s == '\0')
      {
-       *p_arg = NULL;
-       return NULL;
+        *p_arg = NULL;
+        return NULL;
      }
    else if (*s == '"')
      {
-       is_quoted = EINA_TRUE;
-       s++;
-       *p_arg = s;
+        is_quoted = EINA_TRUE;
+        s++;
+        *p_arg = s;
      }
    else
      {
-       is_quoted = EINA_FALSE;
-       *p_arg = s;
+        is_quoted = EINA_FALSE;
+        *p_arg = s;
      }
 
    for (e = s; *e != '\0'; e++)
      {
-       if ((!is_quoted) && (isspace(*e)))
-         break;
-       else if ((is_quoted) && (*e == '"'))
-         break;
+        if ((!is_quoted) && (isspace(*e)))
+          break;
+        else if ((is_quoted) && (*e == '"'))
+          break;
      }
 
    if (*e == '\0') return NULL;
@@ -103,8 +104,8 @@ _slave_mode_signal(Evas_Object *edje, char *args)
 
    if ((!emission) || (!source))
      {
-       fputs("ERROR: Invalid command arguments.\n", stderr);
-       return;
+        fputs("ERROR: Invalid command arguments.\n", stderr);
+        return;
      }
 
    edje_object_signal_emit(edje, emission, source);
@@ -220,8 +221,8 @@ _slave_mode_message_string_int(Evas_Object *edje, int id, char *arg,
 
    if (!extra_args)
      {
-       fputs("ERROR: Message STRING_INT requires integer arg.\n", stderr);
-       return;
+        fputs("ERROR: Message STRING_INT requires integer arg.\n", stderr);
+        return;
      }
    _slave_mode_tok(&extra_args);
 
@@ -239,8 +240,8 @@ _slave_mode_message_string_float(Evas_Object *edje, int id, char *arg,
 
    if (!extra_args)
      {
-       fputs("ERROR: Message STRING_FLOAT requires float arg.\n", stderr);
-       return;
+        fputs("ERROR: Message STRING_FLOAT requires float arg.\n", stderr);
+        return;
      }
    _slave_mode_tok(&extra_args);
 
@@ -260,8 +261,8 @@ _slave_mode_message_string_int_set(Evas_Object *edje, int id, char *arg,
 
    if (!extra_args)
      {
-       fputs("ERROR: Message STRING_INT_SET requires int args.\n", stderr);
-       return;
+        fputs("ERROR: Message STRING_INT_SET requires int args.\n", stderr);
+        return;
      }
 
    val = _slave_mode_tok(&extra_args);
@@ -296,8 +297,8 @@ _slave_mode_message_string_float_set(Evas_Object *edje, int id, char *arg,
 
    if (!extra_args)
      {
-       fputs("ERROR: Message STRING_FLOAT_SET requires float set.\n", stderr);
-       return;
+        fputs("ERROR: Message STRING_FLOAT_SET requires float set.\n", stderr);
+        return;
      }
 
    val = _slave_mode_tok(&extra_args);
@@ -335,22 +336,22 @@ _slave_mode_message(Evas_Object *edje, char *args)
 
    if (!id_str)
      {
-       fputs("ERROR: Message id is required.\n", stderr);
-       return;
+        fputs("ERROR: Message id is required.\n", stderr);
+        return;
      }
 
    id = atoi(id_str);
 
    if (!type)
      {
-       fputs("ERROR: Message type is required.\n", stderr);
-       return;
+        fputs("ERROR: Message type is required.\n", stderr);
+        return;
      }
 
    if (!message_arg)
      {
-       fputs("ERROR: Missing message argument.\n", stderr);
-       return;
+        fputs("ERROR: Missing message argument.\n", stderr);
+        return;
      }
 
    if (!strcmp(type, "STRING"))
@@ -423,19 +424,19 @@ _slave_mode_info(Evas_Object *edje, char *args)
 
    if (!args)
      {
-       fputs("ERROR: Invalid command arguments.\n", stderr);
-       return;
+        fputs("ERROR: Invalid command arguments.\n", stderr);
+        return;
      }
 
    if (!edje_object_part_exists(edje, args))
      {
-       printf("INFO: \"%s\" does not exist.\n", args);
+        printf("INFO: \"%s\" does not exist.\n", args);
      }
    else
      {
-       Evas_Coord x, y, w, h;
-       edje_object_part_geometry_get(edje, args, &x, &y, &w, &h);
-       printf("INFO: \"%s\" %d,%d,%d,%d\n", args, x, y, w, h);
+        Evas_Coord x, y, w, h;
+        edje_object_part_geometry_get(edje, args, &x, &y, &w, &h);
+        printf("INFO: \"%s\" %d,%d,%d,%d\n", args, x, y, w, h);
      }
 }
 
@@ -452,31 +453,31 @@ _slave_mode_help(Evas_Object *edje EINA_UNUSED, char *args EINA_UNUSED)
    puts("Help:\n"
         "One command per line, arguments separated by space.\n"
         "Strings may have spaces if enclosed in quotes (\").\n"
-       "\n"
-       "\t<command> [arguments]\n"
-       "\n"
-       "Available commands:\n"
-       "\tsignal <emission> <source>\n"
-       "\t   sends a signal to edje\n"
-       "\tmessage <id> <type> <args list>\n"
-       "\t   sends a message to edje.\n"
-       "\t   Possible types (and args):\n"
-       "\t     * STRING \"string\"\n"
-       "\t     * INT integer\n"
-       "\t     * FLOAT float\n"
-       "\t     * STRING_SET <set length> \"string1\" \"string2\" ...\n"
-       "\t     * INT_SET <set length> integer1 integer2 integer3 ...\n"
-       "\t     * FLOAT_SET <set length> float1 float2 float3 ...\n"
-       "\t     * STRING_INT \"message\" interger\n"
-       "\t     * STRING_FLOAT \"message\" float\n"
-       "\t     * STRING_INT_SET \"string\" <set length> interger1 ...\n"
-       "\t     * STRING_FLOAT_SET \"string\" <set length> float1 float2 ...\n"
-       "\tinfo <part>\n"
-       "\t   Print part geometry: <x>,<y>,<w>,<h>\n"
-       "\tquit\n"
-       "\t   exit edje player.\n"
-       "\thelp\n"
-       "\t   shows this message.\n");
+        "\n"
+        "\t<command> [arguments]\n"
+        "\n"
+        "Available commands:\n"
+        "\tsignal <emission> <source>\n"
+        "\t   sends a signal to edje\n"
+        "\tmessage <id> <type> <args list>\n"
+        "\t   sends a message to edje.\n"
+        "\t   Possible types (and args):\n"
+        "\t     * STRING \"string\"\n"
+        "\t     * INT integer\n"
+        "\t     * FLOAT float\n"
+        "\t     * STRING_SET <set length> \"string1\" \"string2\" ...\n"
+        "\t     * INT_SET <set length> integer1 integer2 integer3 ...\n"
+        "\t     * FLOAT_SET <set length> float1 float2 float3 ...\n"
+        "\t     * STRING_INT \"message\" interger\n"
+        "\t     * STRING_FLOAT \"message\" float\n"
+        "\t     * STRING_INT_SET \"string\" <set length> interger1 ...\n"
+        "\t     * STRING_FLOAT_SET \"string\" <set length> float1 float2 ...\n"
+        "\tinfo <part>\n"
+        "\t   Print part geometry: <x>,<y>,<w>,<h>\n"
+        "\tquit\n"
+        "\t   exit edje player.\n"
+        "\thelp\n"
+        "\t   shows this message.\n");
    /*
     * Extension ideas (are they useful?):
     *  - data: show data value
@@ -490,14 +491,14 @@ _slave_mode_help(Evas_Object *edje EINA_UNUSED, char *args EINA_UNUSED)
 struct slave_cmd
 {
    const char *cmd;
-   void (*func)(Evas_Object *edje, char *args);
+   void        (*func)(Evas_Object *edje, char *args);
 } _slave_mode_commands[] = {
-  {"signal", _slave_mode_signal},
-  {"message", _slave_mode_message},
-  {"info", _slave_mode_info},
-  {"quit", _slave_mode_quit},
-  {"help", _slave_mode_help},
-  {NULL, NULL}
+   {"signal", _slave_mode_signal},
+   {"message", _slave_mode_message},
+   {"info", _slave_mode_info},
+   {"quit", _slave_mode_quit},
+   {"help", _slave_mode_help},
+   {NULL, NULL}
 };
 
 static Eina_Bool
@@ -510,61 +511,61 @@ _slave_mode(void *data, Ecore_Fd_Handler *fd_handler)
 
    if (ecore_main_fd_handler_active_get(fd_handler, ECORE_FD_ERROR))
      {
-       fputs("ERROR: error on stdin! Exit.\n", stderr);
-       ecore_main_loop_quit();
-       return ECORE_CALLBACK_CANCEL;
+        fputs("ERROR: error on stdin! Exit.\n", stderr);
+        ecore_main_loop_quit();
+        return ECORE_CALLBACK_CANCEL;
      }
    if (!ecore_main_fd_handler_active_get(fd_handler, ECORE_FD_READ))
      return ECORE_CALLBACK_RENEW;
 
    if (!fgets(buf, sizeof(buf), stdin))
      {
-       fputs("ERROR: end of stdin! Exit.\n", stderr);
-       ecore_main_loop_quit();
-       return ECORE_CALLBACK_CANCEL;
+        fputs("ERROR: end of stdin! Exit.\n", stderr);
+        ecore_main_loop_quit();
+        return ECORE_CALLBACK_CANCEL;
      }
 
    len = strlen(buf);
    if (len < 1)
      {
-       fputs("ERROR: no input! Try: help\n", stderr);
-       return ECORE_CALLBACK_RENEW;
+        fputs("ERROR: no input! Try: help\n", stderr);
+        return ECORE_CALLBACK_RENEW;
      }
    if (buf[len - 1] == '\n')
      {
-       len--;
-       buf[len] = '\0';
+        len--;
+        buf[len] = '\0';
      }
 
    p = strchr(buf, ' ');
    if (p)
      {
-       *p = '\0';
-       p++;
-
-       while (isspace(*p))
-         p++;
-       if (*p == '\0')
-         p = NULL;
-
-       if (p)
-         {
-            char *q = p + strlen(p) - 1;
-            while (isspace(*q))
-              {
-                 *q = '\0';
-                 q--;
-              }
-         }
+        *p = '\0';
+        p++;
+
+        while (isspace(*p))
+          p++;
+        if (*p == '\0')
+          p = NULL;
+
+        if (p)
+          {
+             char *q = p + strlen(p) - 1;
+             while (isspace(*q))
+               {
+                  *q = '\0';
+                  q--;
+               }
+          }
      }
 
    for (itr = _slave_mode_commands; itr->cmd; itr++)
      {
-       if (strcasecmp(itr->cmd, buf) == 0)
-         {
-            itr->func(edje, p);
-            break;
-         }
+        if (strcasecmp(itr->cmd, buf) == 0)
+          {
+             itr->func(edje, p);
+             break;
+          }
      }
 
    return ECORE_CALLBACK_RENEW;
@@ -585,44 +586,56 @@ _print_message(void *data EINA_UNUSED, Evas_Object *edje EINA_UNUSED, Edje_Messa
    switch (type)
      {
       case EDJE_MESSAGE_NONE:
-        typestr = "NONE";
-        break;
+        typestr = "NONE";
+        break;
+
       case EDJE_MESSAGE_SIGNAL:
-        typestr = "SIGNAL";
-        break;
+        typestr = "SIGNAL";
+        break;
+
       case EDJE_MESSAGE_STRING:
-        typestr = "STRING";
-        break;
+        typestr = "STRING";
+        break;
+
       case EDJE_MESSAGE_INT:
-        typestr = "INT";
-        break;
+        typestr = "INT";
+        break;
+
       case EDJE_MESSAGE_FLOAT:
-        typestr = "FLOAT";
-        break;
+        typestr = "FLOAT";
+        break;
+
       case EDJE_MESSAGE_STRING_SET:
-        typestr = "STRING_SET";
-        break;
+        typestr = "STRING_SET";
+        break;
+
       case EDJE_MESSAGE_INT_SET:
-        typestr = "INT_SET";
-        break;
+        typestr = "INT_SET";
+        break;
+
       case EDJE_MESSAGE_FLOAT_SET:
-        typestr = "FLOAT_SET";
-        break;
+        typestr = "FLOAT_SET";
+        break;
+
       case EDJE_MESSAGE_STRING_INT:
-        typestr = "STRING_INT";
-        break;
+        typestr = "STRING_INT";
+        break;
+
       case EDJE_MESSAGE_STRING_FLOAT:
-        typestr = "STRING_FLOAT";
-        break;
+        typestr = "STRING_FLOAT";
+        break;
+
       case EDJE_MESSAGE_STRING_INT_SET:
-        typestr = "STRING_INT_SET";
-        break;
+        typestr = "STRING_INT_SET";
+        break;
+
       case EDJE_MESSAGE_STRING_FLOAT_SET:
-        typestr = "STRING_FLOAT_SET";
-        break;
+        typestr = "STRING_FLOAT_SET";
+        break;
+
       default:
-        snprintf(buf, sizeof(buf), "UNKNOWN(%d)", type);
-        typestr = buf;
+        snprintf(buf, sizeof(buf), "UNKNOWN(%d)", type);
+        typestr = buf;
      }
 
    printf("MESSAGE: type=%s, id=%d", typestr, id);
@@ -630,81 +643,93 @@ _print_message(void *data EINA_UNUSED, Evas_Object *edje EINA_UNUSED, Edje_Messa
    switch (type)
      {
       case EDJE_MESSAGE_NONE: break;
+
       case EDJE_MESSAGE_SIGNAL: break;
+
       case EDJE_MESSAGE_STRING:
-       {
-          Edje_Message_String *m = msg;
-          printf(" \"%s\"", m->str);
-       }
-       break;
+      {
+         Edje_Message_String *m = msg;
+         printf(" \"%s\"", m->str);
+      }
+      break;
+
       case EDJE_MESSAGE_INT:
-       {
-          Edje_Message_Int *m = msg;
-          printf(" %d", m->val);
-       }
-       break;
+      {
+         Edje_Message_Int *m = msg;
+         printf(" %d", m->val);
+      }
+      break;
+
       case EDJE_MESSAGE_FLOAT:
-       {
-          Edje_Message_Float *m = msg;
-          printf(" %f", m->val);
-       }
-       break;
+      {
+         Edje_Message_Float *m = msg;
+         printf(" %f", m->val);
+      }
+      break;
+
       case EDJE_MESSAGE_STRING_SET:
-       {
-          Edje_Message_String_Set *m = msg;
-          int i;
-          for (i = 0; i < m->count; i++)
-            printf(" \"%s\"", m->str[i]);
-       }
-       break;
+      {
+         Edje_Message_String_Set *m = msg;
+         int i;
+         for (i = 0; i < m->count; i++)
+           printf(" \"%s\"", m->str[i]);
+      }
+      break;
+
       case EDJE_MESSAGE_INT_SET:
-       {
-          Edje_Message_Int_Set *m = msg;
-          int i;
-          for (i = 0; i < m->count; i++)
-            printf(" %d", m->val[i]);
-       }
-       break;
+      {
+         Edje_Message_Int_Set *m = msg;
+         int i;
+         for (i = 0; i < m->count; i++)
+           printf(" %d", m->val[i]);
+      }
+      break;
+
       case EDJE_MESSAGE_FLOAT_SET:
-       {
-          Edje_Message_Float_Set *m = msg;
-          int i;
-          for (i = 0; i < m->count; i++)
-            printf(" %f", m->val[i]);
-       }
-       break;
+      {
+         Edje_Message_Float_Set *m = msg;
+         int i;
+         for (i = 0; i < m->count; i++)
+           printf(" %f", m->val[i]);
+      }
+      break;
+
       case EDJE_MESSAGE_STRING_INT:
-       {
-          Edje_Message_String_Int *m = msg;
-          printf(" \"%s\" %d", m->str, m->val);
-       }
-       break;
+      {
+         Edje_Message_String_Int *m = msg;
+         printf(" \"%s\" %d", m->str, m->val);
+      }
+      break;
+
       case EDJE_MESSAGE_STRING_FLOAT:
-       {
-          Edje_Message_String_Float *m = msg;
-          printf(" \"%s\" %f", m->str, m->val);
-       }
-       break;
+      {
+         Edje_Message_String_Float *m = msg;
+         printf(" \"%s\" %f", m->str, m->val);
+      }
+      break;
+
       case EDJE_MESSAGE_STRING_INT_SET:
-       {
-          Edje_Message_String_Int_Set *m = msg;
-          int i;
-          printf(" \"%s\"", m->str);
-          for (i = 0; i < m->count; i++)
-            printf(" %d", m->val[i]);
-       }
-       break;
+      {
+         Edje_Message_String_Int_Set *m = msg;
+         int i;
+         printf(" \"%s\"", m->str);
+         for (i = 0; i < m->count; i++)
+           printf(" %d", m->val[i]);
+      }
+      break;
+
       case EDJE_MESSAGE_STRING_FLOAT_SET:
-       {
-          Edje_Message_String_Float_Set *m = msg;
-          int i;
-          printf(" \"%s\"", m->str);
-          for (i = 0; i < m->count; i++)
-            printf(" %f", m->val[i]);
-       }
-       break;
+      {
+         Edje_Message_String_Float_Set *m = msg;
+         int i;
+         printf(" \"%s\"", m->str);
+         for (i = 0; i < m->count; i++)
+           printf(" %f", m->val[i]);
+      }
+      break;
+
       default:
-       break;
+        break;
      }
 
    putchar('\n');
@@ -731,14 +756,15 @@ _key_down(void *data, Evas *e EINA_UNUSED, Evas_Object *stack EINA_UNUSED, void
 
    if ((!strcmp(ev->keyname, "equal")) ||
        (!strcmp(ev->keyname, "plus")))
-      opts->scale += 0.1;
+     opts->scale += 0.1;
    else if ((!strcmp(ev->keyname, "minus")) ||
             (!strcmp(ev->keyname, "underscore")))
-      opts->scale -= 0.1;
+     opts->scale -= 0.1;
    else if ((!strcmp(ev->keyname, "0")))
-      opts->scale = 1.0;
+     opts->scale = 1.0;
    if (opts->scale < 0.1) opts->scale = 0.1;
-   else if (opts->scale > 10.0) opts->scale = 1.0;
+   else if (opts->scale > 10.0)
+     opts->scale = 1.0;
    edje_scale_set(opts->scale);
 }
 
@@ -748,8 +774,8 @@ _create_stack(Evas *evas, const struct opts *opts)
    Evas_Object *stack = evas_object_box_add(evas);
    if (!stack)
      {
-       fputs("ERROR: could not create object stack (box).\n", stderr);
-       return NULL;
+        fputs("ERROR: could not create object stack (box).\n", stderr);
+        return NULL;
      }
    evas_object_box_layout_set(stack, evas_object_box_layout_stack, NULL, NULL);
    evas_object_resize(stack, opts->size.w, opts->size.h);
@@ -766,8 +792,8 @@ _create_bg(Evas *evas, const struct opts *opts)
    Evas_Object *bg = evas_object_rectangle_add(evas);
    if (!bg)
      {
-       fputs("ERROR: could not create background.\n", stderr);
-       return NULL;
+        fputs("ERROR: could not create background.\n", stderr);
+        return NULL;
      }
    evas_object_resize(bg, opts->size.w, opts->size.h);
    evas_object_color_set(bg, color[0], color[1], color[2], 255);
@@ -804,7 +830,7 @@ _edje_load_or_show_error(Evas_Object *edje, const char *file, const char *group)
    err = edje_object_load_error_get(edje);
    errmsg = edje_load_error_str(err);
    fprintf(stderr, "ERROR: could not load edje file '%s', group '%s': %s\n",
-          file, group, errmsg);
+           file, group, errmsg);
    return EINA_FALSE;
 }
 
@@ -815,51 +841,51 @@ _create_edje(Evas *evas, const struct opts *opts)
    Evas_Object *edje = edje_object_add(evas);
    if (!edje)
      {
-       fputs("ERROR: could not create edje.\n", stderr);
-       return NULL;
+        fputs("ERROR: could not create edje.\n", stderr);
+        return NULL;
      }
 
    if (opts->group)
      {
-       if (!_edje_load_or_show_error(edje, opts->file, opts->group))
-         {
-            evas_object_del(edje);
-            return NULL;
-         }
+        if (!_edje_load_or_show_error(edje, opts->file, opts->group))
+          {
+             evas_object_del(edje);
+             return NULL;
+          }
         if (!opts->title) _win_title_set(opts->group, opts->file);
      }
    else
      {
-       if (edje_file_group_exists(opts->file, "main"))
-         {
-            if (!_edje_load_or_show_error(edje, opts->file, "main"))
-              {
-                 evas_object_del(edje);
-                 return NULL;
-              }
+        if (edje_file_group_exists(opts->file, "main"))
+          {
+             if (!_edje_load_or_show_error(edje, opts->file, "main"))
+               {
+                  evas_object_del(edje);
+                  return NULL;
+               }
              if (!opts->title) _win_title_set("main", opts->file);
-         }
-       else
-         {
-            Eina_List *groups = edje_file_collection_list(opts->file);
-            const char *group;
-            if (!groups)
-              {
-                 fprintf(stderr, "ERROR: file '%s' has no groups!\n",
-                         opts->file);
-                 evas_object_del(edje);
-                 return NULL;
-              }
-            group = groups->data;
-            if (!_edje_load_or_show_error(edje, opts->file, group))
-              {
-                 edje_file_collection_list_free(groups);
-                 evas_object_del(edje);
-                 return NULL;
-              }
+          }
+        else
+          {
+             Eina_List *groups = edje_file_collection_list(opts->file);
+             const char *group;
+             if (!groups)
+               {
+                  fprintf(stderr, "ERROR: file '%s' has no groups!\n",
+                          opts->file);
+                  evas_object_del(edje);
+                  return NULL;
+               }
+             group = groups->data;
+             if (!_edje_load_or_show_error(edje, opts->file, group))
+               {
+                  edje_file_collection_list_free(groups);
+                  evas_object_del(edje);
+                  return NULL;
+               }
              if (!opts->title) _win_title_set(group, opts->file);
-            edje_file_collection_list_free(groups);
-         }
+             edje_file_collection_list_free(groups);
+          }
      }
 
    edje_object_size_max_get(edje, &maxw, &maxh);
@@ -877,74 +903,77 @@ _create_edje(Evas *evas, const struct opts *opts)
    return edje;
 }
 
-static unsigned char _parse_color(EINA_UNUSED const Ecore_Getopt *parser, EINA_UNUSED const Ecore_Getopt_Desc *desc, const char *str, EINA_UNUSED void *data, Ecore_Getopt_Value *storage)
+static unsigned char
+_parse_color(EINA_UNUSED const Ecore_Getopt *parser, EINA_UNUSED const Ecore_Getopt_Desc *desc, const char *str, EINA_UNUSED void *data, Ecore_Getopt_Value *storage)
 {
    unsigned char *color = (unsigned char *)storage->ptrp;
 
    if (sscanf(str, "%hhu,%hhu,%hhu", color, color + 1, color + 2) != 3)
      {
-       fprintf(stderr, "ERROR: incorrect color value '%s'\n", str);
-       return 0;
+        fprintf(stderr, "ERROR: incorrect color value '%s'\n", str);
+        return 0;
      }
 
    return 1;
 }
 
-static void _cb_delete(EINA_UNUSED Ecore_Evas *ee)
+static void
+_cb_delete(EINA_UNUSED Ecore_Evas *ee)
 {
-  ecore_main_loop_quit();
+   ecore_main_loop_quit();
 }
 
 const Ecore_Getopt optdesc = {
-  "edje_player",
-  "%prog [options] <filename.edj>",
-  PACKAGE_VERSION,
-  "(C) 2010 Enlightenment",
-  "BSD with advertisement clause",
-  "Simple application to view edje files.",
-  0,
-  {
-    ECORE_GETOPT_STORE_STR
-    ('g', "group", "The edje group to view (defaults to 'main')."),
-    ECORE_GETOPT_STORE_TRUE
-    ('G', "list-groups", "The groups in the given file."),
-    ECORE_GETOPT_STORE_STR
-    ('e', "engine", "The Ecore-Evas engine to use (see --list-engines)"),
-    ECORE_GETOPT_CALLBACK_NOARGS
-    ('E', "list-engines", "list Ecore-Evas engines",
-     ecore_getopt_callback_ecore_evas_list_engines, NULL),
-    ECORE_GETOPT_CALLBACK_ARGS
-    ('Z', "size", "size to use in wxh form.", "WxH",
-     ecore_getopt_callback_size_parse, NULL),
-    ECORE_GETOPT_CALLBACK_ARGS
-    ('c', "bg-color", "Color of the background (if not shaped or alpha)",
-     "RRGGBB", _parse_color, NULL),
-    ECORE_GETOPT_STORE_TRUE
-    ('b', "borderless", "Display window without border."),
-    ECORE_GETOPT_STORE_TRUE
-    ('y', "sticky", "Display window sticky."),
-    ECORE_GETOPT_STORE_TRUE
-    ('s', "shaped", "Display window shaped."),
-    ECORE_GETOPT_STORE_TRUE
-    ('a', "alpha", "Display window with alpha channel "
-     "(needs composite manager!)"),
-    ECORE_GETOPT_STORE_STR
-    ('t', "title", "Define the window title string"),
-    ECORE_GETOPT_STORE_TRUE
-    ('p', "print", "Print signals and messages to stdout"),
-    ECORE_GETOPT_STORE_TRUE
-    ('S', "slave-mode", "Listen for commands on stdin"),
-    ECORE_GETOPT_STORE_DOUBLE
-    ('z', "scale", "Set scale factor"),
-    ECORE_GETOPT_LICENSE('L', "license"),
-    ECORE_GETOPT_COPYRIGHT('C', "copyright"),
-    ECORE_GETOPT_VERSION('V', "version"),
-    ECORE_GETOPT_HELP('h', "help"),
-    ECORE_GETOPT_SENTINEL
-  }
+   "edje_player",
+   "%prog [options] <filename.edj>",
+   PACKAGE_VERSION,
+   "(C) 2010 Enlightenment",
+   "BSD with advertisement clause",
+   "Simple application to view edje files.",
+   0,
+   {
+      ECORE_GETOPT_STORE_STR
+        ('g', "group", "The edje group to view (defaults to 'main')."),
+      ECORE_GETOPT_STORE_TRUE
+        ('G', "list-groups", "The groups in the given file."),
+      ECORE_GETOPT_STORE_STR
+        ('e', "engine", "The Ecore-Evas engine to use (see --list-engines)"),
+      ECORE_GETOPT_CALLBACK_NOARGS
+        ('E', "list-engines", "list Ecore-Evas engines",
+        ecore_getopt_callback_ecore_evas_list_engines, NULL),
+      ECORE_GETOPT_CALLBACK_ARGS
+        ('Z', "size", "size to use in wxh form.", "WxH",
+        ecore_getopt_callback_size_parse, NULL),
+      ECORE_GETOPT_CALLBACK_ARGS
+        ('c', "bg-color", "Color of the background (if not shaped or alpha)",
+        "RRGGBB", _parse_color, NULL),
+      ECORE_GETOPT_STORE_TRUE
+        ('b', "borderless", "Display window without border."),
+      ECORE_GETOPT_STORE_TRUE
+        ('y', "sticky", "Display window sticky."),
+      ECORE_GETOPT_STORE_TRUE
+        ('s', "shaped", "Display window shaped."),
+      ECORE_GETOPT_STORE_TRUE
+        ('a', "alpha", "Display window with alpha channel "
+                       "(needs composite manager!)"),
+      ECORE_GETOPT_STORE_STR
+        ('t', "title", "Define the window title string"),
+      ECORE_GETOPT_STORE_TRUE
+        ('p', "print", "Print signals and messages to stdout"),
+      ECORE_GETOPT_STORE_TRUE
+        ('S', "slave-mode", "Listen for commands on stdin"),
+      ECORE_GETOPT_STORE_DOUBLE
+        ('z', "scale", "Set scale factor"),
+      ECORE_GETOPT_LICENSE('L', "license"),
+      ECORE_GETOPT_COPYRIGHT('C', "copyright"),
+      ECORE_GETOPT_VERSION('V', "version"),
+      ECORE_GETOPT_HELP('h', "help"),
+      ECORE_GETOPT_SENTINEL
+   }
 };
 
-int main(int argc, char **argv)
+int
+main(int argc, char **argv)
 {
    Evas *evas;
    Evas_Object *stack, *edje;
@@ -952,25 +981,25 @@ int main(int argc, char **argv)
    Eina_Bool quit_option = EINA_FALSE;
    int args;
    Ecore_Getopt_Value values[] = {
-     ECORE_GETOPT_VALUE_STR(opts.group),
-     ECORE_GETOPT_VALUE_BOOL(opts.list_groups),
-     ECORE_GETOPT_VALUE_STR(opts.engine),
-     ECORE_GETOPT_VALUE_BOOL(quit_option),
-     ECORE_GETOPT_VALUE_PTR_CAST(opts.size),
-     ECORE_GETOPT_VALUE_PTR_CAST(opts.color),
-     ECORE_GETOPT_VALUE_BOOL(opts.borderless),
-     ECORE_GETOPT_VALUE_BOOL(opts.sticky),
-     ECORE_GETOPT_VALUE_BOOL(opts.shaped),
-     ECORE_GETOPT_VALUE_BOOL(opts.alpha),
-     ECORE_GETOPT_VALUE_STR(opts.title),
-     ECORE_GETOPT_VALUE_BOOL(opts.print),
-     ECORE_GETOPT_VALUE_BOOL(opts.slave_mode),
-     ECORE_GETOPT_VALUE_DOUBLE(opts.scale),
-     ECORE_GETOPT_VALUE_BOOL(quit_option),
-     ECORE_GETOPT_VALUE_BOOL(quit_option),
-     ECORE_GETOPT_VALUE_BOOL(quit_option),
-     ECORE_GETOPT_VALUE_BOOL(quit_option),
-     ECORE_GETOPT_VALUE_NONE
+      ECORE_GETOPT_VALUE_STR(opts.group),
+      ECORE_GETOPT_VALUE_BOOL(opts.list_groups),
+      ECORE_GETOPT_VALUE_STR(opts.engine),
+      ECORE_GETOPT_VALUE_BOOL(quit_option),
+      ECORE_GETOPT_VALUE_PTR_CAST(opts.size),
+      ECORE_GETOPT_VALUE_PTR_CAST(opts.color),
+      ECORE_GETOPT_VALUE_BOOL(opts.borderless),
+      ECORE_GETOPT_VALUE_BOOL(opts.sticky),
+      ECORE_GETOPT_VALUE_BOOL(opts.shaped),
+      ECORE_GETOPT_VALUE_BOOL(opts.alpha),
+      ECORE_GETOPT_VALUE_STR(opts.title),
+      ECORE_GETOPT_VALUE_BOOL(opts.print),
+      ECORE_GETOPT_VALUE_BOOL(opts.slave_mode),
+      ECORE_GETOPT_VALUE_DOUBLE(opts.scale),
+      ECORE_GETOPT_VALUE_BOOL(quit_option),
+      ECORE_GETOPT_VALUE_BOOL(quit_option),
+      ECORE_GETOPT_VALUE_BOOL(quit_option),
+      ECORE_GETOPT_VALUE_BOOL(quit_option),
+      ECORE_GETOPT_VALUE_NONE
    };
 
    memset(&opts, 0, sizeof(opts));
@@ -980,22 +1009,22 @@ int main(int argc, char **argv)
      return EXIT_FAILURE;
    if (!edje_init())
      goto shutdown_ecore_evas;
-   edje_frametime_set(1.0/60.0);
+   edje_frametime_set(1.0 / 60.0);
 
    args = ecore_getopt_parse(&optdesc, values, argc, argv);
    if (args < 0)
      {
-       fputs("Could not parse arguments.\n", stderr);
-       goto shutdown_edje;
+        fputs("Could not parse arguments.\n", stderr);
+        goto shutdown_edje;
      }
    else if (quit_option)
      {
-       goto end;
+        goto end;
      }
    else if (args >= argc)
      {
-       fputs("Missing edje file to load.\n", stderr);
-       goto shutdown_edje;
+        fputs("Missing edje file to load.\n", stderr);
+        goto shutdown_edje;
      }
 
    ecore_app_args_set(argc, (const char **)argv);
@@ -1004,23 +1033,23 @@ int main(int argc, char **argv)
    // check if the given edj file is there
    if (access(argv[args], R_OK) == -1)
      {
-       int e = errno;
-       fprintf(stderr, "ERROR: file '%s' not accessible, error %d (%s).\n",
-               argv[args], e, strerror(e));
-       goto end;
+        int e = errno;
+        fprintf(stderr, "ERROR: file '%s' not accessible, error %d (%s).\n",
+                argv[args], e, strerror(e));
+        goto end;
      }
 
    opts.file = argv[args];
    if (opts.list_groups)
      {
-       Eina_List *groups, *n;
-       const char *group;
-       groups = edje_file_collection_list(opts.file);
-       printf("%d groups in file '%s':\n", eina_list_count(groups), opts.file);
-       EINA_LIST_FOREACH(groups, n, group)
-         printf("\t'%s'\n", group);
-       edje_file_collection_list_free(groups);
-       goto end;
+        Eina_List *groups, *n;
+        const char *group;
+        groups = edje_file_collection_list(opts.file);
+        printf("%d groups in file '%s':\n", eina_list_count(groups), opts.file);
+        EINA_LIST_FOREACH(groups, n, group)
+          printf("\t'%s'\n", group);
+        edje_file_collection_list_free(groups);
+        goto end;
      }
 
    if (opts.size.w <= 0) opts.size.w = 320;
@@ -1028,11 +1057,11 @@ int main(int argc, char **argv)
    win = ecore_evas_new(opts.engine, 0, 0, opts.size.w, opts.size.h, NULL);
    if (!win)
      {
-       fprintf(stderr,
-               "ERROR: could not create window of "
-               "size %dx%d using engine %s.\n",
-               opts.size.w, opts.size.h, opts.engine ? opts.engine : "(auto)");
-       goto shutdown_edje;
+        fprintf(stderr,
+                "ERROR: could not create window of "
+                "size %dx%d using engine %s.\n",
+                opts.size.w, opts.size.h, opts.engine ? opts.engine : "(auto)");
+        goto shutdown_edje;
      }
 
    ecore_evas_callback_delete_request_set(win, _cb_delete);
@@ -1040,7 +1069,7 @@ int main(int argc, char **argv)
    stack = _create_stack(evas, &opts);
    if (!stack)
      {
-       goto free_ecore_evas;
+        goto free_ecore_evas;
      }
 
    ecore_evas_object_associate(win, stack, ECORE_EVAS_OBJECT_ASSOCIATE_BASE);
@@ -1051,8 +1080,8 @@ int main(int argc, char **argv)
      ecore_evas_shaped_set(win, EINA_TRUE);
    else
      {
-       Evas_Object *bg = _create_bg(evas, &opts);
-       if (bg) evas_object_box_append(stack, bg);
+        Evas_Object *bg = _create_bg(evas, &opts);
+        if (bg) evas_object_box_append(stack, bg);
      }
 
    edje = _create_edje(evas, &opts);
@@ -1060,38 +1089,38 @@ int main(int argc, char **argv)
      evas_object_box_append(stack, edje);
    else
      {
-       goto free_ecore_evas;
+        goto free_ecore_evas;
      }
 
    evas_object_focus_set(stack, EINA_TRUE);
    evas_object_event_callback_add(stack, EVAS_CALLBACK_KEY_DOWN,
-                                 _key_down, &opts);
+                                  _key_down, &opts);
    evas_object_event_callback_add(stack, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
-                                 _reset_size_hints, edje);
+                                  _reset_size_hints, edje);
 
    if (opts.print)
      {
-       edje_object_signal_callback_add(edje, "*", "*", _print_signal, NULL);
-       edje_object_message_handler_set(edje, _print_message, NULL);
+        edje_object_signal_callback_add(edje, "*", "*", _print_signal, NULL);
+        edje_object_message_handler_set(edje, _print_message, NULL);
      }
 
    if (opts.slave_mode)
      {
 #ifndef _WIN32
-       int flags;
-       flags = fcntl(STDIN_FILENO, F_GETFL, 0);
-       flags |= O_NONBLOCK;
-       if (fcntl(STDIN_FILENO, F_SETFL, flags) < 0)
-         {
-            fprintf(stderr, "ERROR: Could not set stdin to non-block: %s\n",
-                    strerror(errno));
-            goto free_ecore_evas;
-         }
-       ecore_main_fd_handler_add(STDIN_FILENO, ECORE_FD_READ | ECORE_FD_ERROR,
-                                 _slave_mode, edje, NULL, NULL);
+        int flags;
+        flags = fcntl(STDIN_FILENO, F_GETFL, 0);
+        flags |= O_NONBLOCK;
+        if (fcntl(STDIN_FILENO, F_SETFL, flags) < 0)
+          {
+             fprintf(stderr, "ERROR: Could not set stdin to non-block: %s\n",
+                     strerror(errno));
+             goto free_ecore_evas;
+          }
+        ecore_main_fd_handler_add(STDIN_FILENO, ECORE_FD_READ | ECORE_FD_ERROR,
+                                  _slave_mode, edje, NULL, NULL);
 #else
         /* TODO: port the code above to Windows */
-        fprintf (stderr, "ERROR: slave mode not working on Windows\n");
+        fprintf(stderr, "ERROR: slave mode not working on Windows\n");
         goto free_ecore_evas;
 #endif
      }
@@ -1105,17 +1134,18 @@ int main(int argc, char **argv)
    ecore_main_loop_begin();
 
    ecore_evas_free(win);
- end:
+end:
    edje_shutdown();
    ecore_evas_shutdown();
 
    return 0;
 
- free_ecore_evas:
+free_ecore_evas:
    ecore_evas_free(win);
- shutdown_edje:
+shutdown_edje:
    edje_shutdown();
- shutdown_ecore_evas:
+shutdown_ecore_evas:
    ecore_evas_shutdown();
    return EXIT_FAILURE;
 }
+