formatting

SVN revision: 73411
This commit is contained in:
Mike Blumenkrantz 2012-07-06 12:30:58 +00:00
parent 42ceb58540
commit 3f3c8b8afc
1 changed files with 119 additions and 109 deletions

View File

@ -56,7 +56,8 @@ typedef struct _E_Fm2_Icon_Info E_Fm2_Icon_Info;
struct _E_Fm2_Config struct _E_Fm2_Config
{ {
/* general view mode */ /* general view mode */
struct { struct
{
E_Fm2_View_Mode mode; E_Fm2_View_Mode mode;
Eina_Bool open_dirs_in_place : 1; Eina_Bool open_dirs_in_place : 1;
Eina_Bool selector : 1; Eina_Bool selector : 1;
@ -69,37 +70,46 @@ struct _E_Fm2_Config
unsigned int single_click_delay; unsigned int single_click_delay;
} view; } view;
/* display of icons */ /* display of icons */
struct { struct
struct { {
struct
{
int w, h; int w, h;
} icon, list; } icon, list;
struct { struct
{
unsigned char w; unsigned char w;
unsigned char h; unsigned char h;
} fixed; } fixed;
struct { struct
{
Eina_Bool show : 1; Eina_Bool show : 1;
} extension; } extension;
const char *key_hint; const char *key_hint;
} icon; } icon;
/* how to sort files */ /* how to sort files */
struct { struct
struct { {
struct
{
Eina_Bool no_case : 1; Eina_Bool no_case : 1;
struct { struct
{
Eina_Bool first : 1; Eina_Bool first : 1;
Eina_Bool last : 1; Eina_Bool last : 1;
} dirs; } dirs;
} sort; } sort;
} list; } list;
/* control how you can select files */ /* control how you can select files */
struct { struct
{
Eina_Bool single : 1; Eina_Bool single : 1;
Eina_Bool windows_modifiers : 1; Eina_Bool windows_modifiers : 1;
} selection; } selection;
/* the background - if any, and how to handle it */ /* the background - if any, and how to handle it */
/* FIXME: not implemented yet */ /* FIXME: not implemented yet */
struct { struct
{
const char *background, *frame, *icons; const char *background, *frame, *icons;
Eina_Bool fixed : 1; Eina_Bool fixed : 1;
} theme; } theme;