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