formatting todo etc.

SVN revision: 23455
This commit is contained in:
Carsten Haitzler 2006-06-16 06:05:41 +00:00
parent f86fb10a09
commit b36a6cbe12
2 changed files with 21 additions and 18 deletions

10
TODO
View File

@ -45,7 +45,8 @@ Some of the things (in very short form) that need to be done to E17...
a big xev (xev -g 1280x1024) that won't fit it gets placed offscreen to the
right of zone 2
* BUG: Hiding the label of e_widget_slider causes the slider line to disappear
* BUG: Window locks should be honored by the pager (e.g. Lock me from changing position)
* BUG: Window locks should be honored by the pager (e.g. Lock me from
changing position)
]]]
[[[
@ -88,8 +89,11 @@ Some of the things (in very short form) that need to be done to E17...
* gui config dialogs for all config
* make it possible to disable border buttons/actions (tell theme what is
disabled)
* Window Border Icon > "Create Icon" needs to copy the ARGB icon data (into a temp file?) and use that as the default icon.
* Dragging a non-eap icon from a border to the ibar should automatically create the icon and add that (instead of warning the user that this can't be done)
* Window Border Icon > "Create Icon" needs to copy the ARGB icon data (into a
temp file?) and use that as the default icon.
* Dragging a non-eap icon from a border to the ibar should automatically
create the icon and add that (instead of warning the user that this can't be
done)
]]]
[[[

View File

@ -46,7 +46,6 @@ struct _E_Config_Dialog_Data
int urgent;
int delete_request;
int request_pos;
} icccm;
};
@ -59,20 +58,20 @@ e_int_border_prop(E_Border *bd)
v = E_NEW(E_Config_Dialog_View, 1);
if (v)
{
/* methods */
v->create_cfdata = _create_data;
v->free_cfdata = _free_data;
v->basic.apply_cfdata = NULL;
v->basic.create_widgets = _basic_create_widgets;
v->advanced.apply_cfdata = NULL;
v->advanced.create_widgets = NULL;
v->override_auto_apply = 1;
/* create config dialog for bd object/data */
cfd = e_config_dialog_new(bd->zone->container,
_("Window Properties"), NULL, 0, v, bd);
}
{
/* methods */
v->create_cfdata = _create_data;
v->free_cfdata = _free_data;
v->basic.apply_cfdata = NULL;
v->basic.create_widgets = _basic_create_widgets;
v->advanced.apply_cfdata = NULL;
v->advanced.create_widgets = NULL;
v->override_auto_apply = 1;
/* create config dialog for bd object/data */
cfd = e_config_dialog_new(bd->zone->container,
_("Window Properties"), NULL, 0, v, bd);
}
}
/**--CREATE--**/