hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=58fe5e78af92b89d4ef013d73c10f57cc7d63444

commit 58fe5e78af92b89d4ef013d73c10f57cc7d63444
Author: Taehyub Kim <taehyub....@samsung.com>
Date:   Fri Jun 10 10:22:21 2016 +0900

    tools: improve browser tooltips
    
    Summary: add more comment for broswer tooltips
    
    Test Plan:
    1. launch enventor
    2. move mouse curor on broswer tooltips
    3. see the message of tooltips
    
    Reviewers: Hermet, Jaehyun_Cho, NikaWhite
    
    Differential Revision: https://phab.enlightenment.org/D4031
---
 src/bin/tools.c | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

diff --git a/src/bin/tools.c b/src/bin/tools.c
index 02f80a3..86463d7 100644
--- a/src/bin/tools.c
+++ b/src/bin/tools.c
@@ -321,35 +321,46 @@ tools_init(Evas_Object *parent)
    td->template_btn = btn;
 
    btn = tools_btn_create(text_editor_ly, "console",
-                          _("Console Box (Alt + Down)"), console_cb);
+                          _("Console Box (Alt + Down)<br>"
+                            "Show Console box which displays build logs."),
+                          console_cb);
    evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
    evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
    elm_object_part_content_set(text_editor_ly, "elm.swallow.console", btn);
    td->console_btn = btn;
 
    btn = tools_btn_create(text_editor_ly, "file_browser",
-                          _("File Browser (F9)"), file_browser_cb);
+                          _("File Browser (F9)<br>"
+                            "Show File Browser wihch displays list of files."),
+                          file_browser_cb);
    evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
    evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
    elm_object_part_content_set(text_editor_ly, "elm.swallow.file_browser", 
btn);
    td->file_browser_btn = btn;
 
    btn = tools_btn_create(text_editor_ly, "edc_navigator",
-                          _("EDC Navigator (F10)"), edc_navigator_cb);
+                          _("EDC Navigator (F10)<br>"
+                            "Show EDC Navigator which displays current 
parts<br>"
+                            "hierarchically."),
+                          edc_navigator_cb);
    evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
    evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
    elm_object_part_content_set(text_editor_ly, "elm.swallow.edc_navigator",
                                btn);
    td->edc_navigator_btn = btn;
 
-   btn = tools_btn_create(text_editor_ly, "status", _("Status (F11)"),
+   btn = tools_btn_create(text_editor_ly, "status",
+                          _("Status (F11)<br>"
+                            "Show Status bar which displays live view 
informations."),
                           status_cb);
    evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
    evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
    elm_object_part_content_set(text_editor_ly, "elm.swallow.status", btn);
    td->status_btn = btn;
 
-   btn = tools_btn_create(text_editor_ly, "menu", _("Enventor Menu (Esc)"),
+   btn = tools_btn_create(text_editor_ly, "menu",
+                          _("Enventor Menu (Esc)<br>"
+                          "Show Menu for setting enventor."),
                           menu_cb);
    elm_object_tooltip_orient_set(btn, ELM_TOOLTIP_ORIENT_BOTTOM_LEFT);
    evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);

-- 


Reply via email to