diff options
author | Junghwan <junghwan.kang@samsung.com> | 2012-09-04 15:59:36 +0900 |
---|---|---|
committer | Junghwan <junghwan.kang@samsung.com> | 2012-09-04 16:03:58 +0900 |
commit | 4e2d448220ac0518223e4f90063f8a37de6f48a1 (patch) | |
tree | 6fc6cdaaad0fddea08c939d6e5c9bbaa640bd926 /src/browser-common-view.cpp | |
parent | 695063683e3f8dd6f4b554365a40043f97fe0c3b (diff) | |
download | org.tizen.browser-4e2d448220ac0518223e4f90063f8a37de6f48a1.tar.gz org.tizen.browser-4e2d448220ac0518223e4f90063f8a37de6f48a1.tar.bz2 org.tizen.browser-4e2d448220ac0518223e4f90063f8a37de6f48a1.zip |
Add customized application context menu view
[Title] Add customized application context menu view
[Issue#] S1-7846
[Problem] As per UI share option should be in pop up
[Cause] UX changed
[Solution] Add customized application context menu view
[Team] Browser UI
[Developer] junghwan kang (junghwan.kang)
[Request] N/A
Change-Id: Ia5921f557f25e442a73878fbdf57bdb55f1b7ed1
Diffstat (limited to 'src/browser-common-view.cpp')
-rwxr-xr-x | src/browser-common-view.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/browser-common-view.cpp b/src/browser-common-view.cpp index 2853edf..3fe7b69 100755 --- a/src/browser-common-view.cpp +++ b/src/browser-common-view.cpp @@ -177,6 +177,17 @@ void Browser_Common_View::show_notify_popup(const char *msg, int timeout, Eina_B evas_object_show(m_selection_info); } +Eina_Bool Browser_Common_View::find_word_with_text(const char *text_to_find) +{ + BROWSER_LOGD("[%s], text_to_find[%s]", __func__, text_to_find); + + if (!text_to_find) + return EINA_FALSE; + + Browser_View *browser_view = m_data_manager->get_browser_view(); + return browser_view->launch_find_word_with_text(text_to_find);; +} + /* Capture snapshot with current focused ewk view. */ Evas_Object *Browser_Common_View::_capture_snapshot(Browser_Window *window, float scale) { |