formatting

SVN revision: 73792
This commit is contained in:
Mike Blumenkrantz 2012-07-13 07:40:22 +00:00
parent 1de132c33c
commit a1a4296f7e
1 changed files with 46 additions and 35 deletions

View File

@ -23,7 +23,8 @@ struct _Config
{ {
int config_version; int config_version;
struct { struct
{
E_Fm2_View_Mode mode; E_Fm2_View_Mode mode;
unsigned char open_dirs_in_place; unsigned char open_dirs_in_place;
unsigned char selector; unsigned char selector;
@ -38,40 +39,50 @@ struct _Config
unsigned char show_toolbar; unsigned char show_toolbar;
} view; } view;
/* display of icons */ /* display of icons */
struct { struct
struct { {
struct
{
int w, h; int w, h;
} icon; } icon;
struct { struct
{
int w, h; int w, h;
} list; } list;
struct { struct
{
unsigned char w; unsigned char w;
unsigned char h; unsigned char h;
} fixed; } fixed;
struct { struct
{
unsigned char show; unsigned char show;
} extension; } extension;
const char *key_hint; const char *key_hint;
} icon; } icon;
/* how to sort files */ /* how to sort files */
struct { struct
struct { {
struct
{
unsigned char no_case; unsigned char no_case;
struct { struct
{
unsigned char first; unsigned char first;
unsigned char last; unsigned char last;
} dirs; } dirs;
} sort; } sort;
} list; } list;
/* control how you can select files */ /* control how you can select files */
struct { struct
{
unsigned char single; unsigned char single;
unsigned char windows_modifiers; unsigned char windows_modifiers;
} 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; const char *background;
const char *frame; const char *frame;
const char *icons; const char *icons;
@ -81,9 +92,9 @@ struct _Config
EAPI extern E_Module_Api e_modapi; EAPI extern E_Module_Api e_modapi;
EAPI void *e_modapi_init (E_Module *m); EAPI void *e_modapi_init(E_Module *m);
EAPI int e_modapi_shutdown (E_Module *m); EAPI int e_modapi_shutdown(E_Module *m);
EAPI int e_modapi_save (E_Module *m); EAPI int e_modapi_save(E_Module *m);
extern Config *fileman_config; extern Config *fileman_config;