#include <Elementary.h>
#include <Ecore.h>
-#include <Ecore_Wayland.h>
#include <string>
-
#include "ViewManager.h"
#include "core/BrowserLogger.h"
#include "core/ServiceManager/Debug/BrowserAssert.h"
m_conformant = elm_conformant_add(parentWindow);
if (!elm_layout_file_set(m_conformant, edjFilePath.c_str(), "elm/conformant/custom_conformant"))
- BROWSER_LOGD("[%s:%d] elm_layout_file_set falied !!!",__PRETTY_FUNCTION__, __LINE__);
+ BROWSER_LOGD("[%s:%d] elm_layout_file_set falied !!!", __PRETTY_FUNCTION__, __LINE__);
evas_object_size_hint_weight_set(m_conformant, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
Evas_Object *bg = elm_bg_add(m_conformant);
m_mainLayout = elm_layout_add(bx);
evas_object_size_hint_weight_set(m_mainLayout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
- evas_object_size_hint_align_set (m_mainLayout, EVAS_HINT_FILL, EVAS_HINT_FILL);
+ evas_object_size_hint_align_set(m_mainLayout, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_show(m_mainLayout);
elm_box_pack_end(bx, m_mainLayout);
if (!elm_layout_file_set(m_mainLayout, edjFilePath.c_str(), "main_layout"))
- BROWSER_LOGD("[%s:%d] elm_layout_file_set falied !!!",__PRETTY_FUNCTION__, __LINE__);
+ BROWSER_LOGD("[%s:%d] elm_layout_file_set falied !!!", __PRETTY_FUNCTION__, __LINE__);
elm_object_content_set(m_conformant, bx);
}
topOfStack()->showUI();
} else {
- BROWSER_LOGD("[%s:%d] Stack is empty!!!",__PRETTY_FUNCTION__, __LINE__);
+ BROWSER_LOGD("[%s:%d] Stack is empty!!!", __PRETTY_FUNCTION__, __LINE__);
elm_layout_content_unset(m_mainLayout, "content");
if (previousView) {
previousView->hideUI();