ecore_x_e_window_rotation_geometry_set(elm_win_xwindow_get(main_window), 270, 0, 0, landscape.height, landscape.width);
*/
#endif
+ LOGD("%d %d %d %d", portrait.width, portrait.height, landscape.width, landscape.height);
}
void CSCLCoreUIEFL::set_floating_mode(sclboolean floating_mode)
ecore_x_icccm_name_class_set(elm_win_xwindow_get(main_window), "Virtual Keyboard", "ISF");
#endif
+ Evas_Coord win_w = 0, win_h = 0;
+ elm_win_screen_size_get(main_window, NULL, NULL, &win_w, &win_h);
+ SclSize portrait;
+ portrait.width = win_w;
+ portrait.height = win_h / 3;
+ SclSize landscape;
+ landscape.width = win_h;
+ landscape.height = win_w / 3;
+ set_keyboard_size_hints(portrait, landscape);
+
return TRUE;
}