Fix focus in flow mode.

You only can give focus to visible objects, hidden objects are
unfocusable.

SVN revision: 53655
This commit is contained in:
Tiago Rezende Campos Falcao 2010-10-20 12:08:42 +00:00
parent 3e1a7b64eb
commit 40b9a71963
2 changed files with 4 additions and 4 deletions

View File

@ -415,6 +415,7 @@ _ephoto_flow_browser_recalc(Ephoto_Flow_Browser *fb)
fb->viewer = _viewer_add(fb->orient_layout, fb->path);
elm_layout_content_set
(fb->orient_layout, "elm.swallow.content", fb->viewer);
evas_object_show(fb->viewer);
evas_object_event_callback_add
(fb->viewer, EVAS_CALLBACK_MOUSE_WHEEL, _mouse_wheel, fb);
edje_object_part_text_set(fb->edje, "elm.text.title", bname);
@ -699,7 +700,6 @@ ephoto_flow_browser_add(Ephoto *ephoto, Evas_Object *parent)
evas_object_event_callback_add(layout, EVAS_CALLBACK_DEL, _layout_del, fb);
evas_object_event_callback_add
(layout, EVAS_CALLBACK_KEY_DOWN, _key_down, fb);
elm_object_focus_allow_set(layout, EINA_TRUE);
evas_object_data_set(layout, "flow_browser", fb);
edje_object_signal_callback_add(fb->edje, "elm,action,back", "", _back, fb);

View File

@ -21,8 +21,8 @@ _ephoto_thumb_browser_show(Ephoto *ephoto, Ephoto_Entry *entry)
ephoto_flow_browser_path_set(ephoto->flow_browser, NULL);
ephoto_slideshow_entry_set(ephoto->slideshow, NULL);
elm_object_focus(ephoto->thumb_browser);
elm_pager_content_promote(ephoto->pager, ephoto->thumb_browser);
elm_object_focus(ephoto->thumb_browser);
_ephoto_state_set(ephoto, EPHOTO_STATE_THUMB);
if ((entry) && (entry->item)) elm_gengrid_item_bring_in(entry->item);
@ -33,8 +33,8 @@ _ephoto_flow_browser_show(Ephoto *ephoto, Ephoto_Entry *entry)
{
DBG("entry '%s'", entry->path);
ephoto_flow_browser_entry_set(ephoto->flow_browser, entry);
elm_object_focus(ephoto->flow_browser);
elm_pager_content_promote(ephoto->pager, ephoto->flow_browser);
elm_object_focus(ephoto->flow_browser);
_ephoto_state_set(ephoto, EPHOTO_STATE_FLOW);
}
@ -43,8 +43,8 @@ _ephoto_slideshow_show(Ephoto *ephoto, Ephoto_Entry *entry)
{
DBG("entry '%s'", entry->path);
ephoto_slideshow_entry_set(ephoto->slideshow, entry);
elm_object_focus(ephoto->slideshow);
elm_pager_content_promote(ephoto->pager, ephoto->slideshow);
elm_object_focus(ephoto->slideshow);
_ephoto_state_set(ephoto, EPHOTO_STATE_SLIDESHOW);
}