INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/include)
INCLUDE(FindPkgConfig)
-pkg_check_modules(pkgs REQUIRED elementary utilX
+pkg_check_modules(pkgs REQUIRED elementary
dlog glib-2.0 evas edje vconf
- ecore-x ecore ecore-input capi-appfw-application
+ ecore ecore-input capi-appfw-application
feedback
)
Priority: extra
Maintainer: Zhang Xiang <x1986.zhang@samsung.com>, Wang YongJun <yj.wang@samsung.com>, Zhou Zhibin <zhibin.zhou@samsung.com>
Uploaders:
-Build-Depends: debhelper (>= 5), libelm-dev, libslp-utilx-dev, dlog-dev, libsvi-dev, libevas-dev, libedje-dev, capi-appfw-application-dev
+Build-Depends: debhelper (>= 5), libelm-dev, dlog-dev, libsvi-dev, libevas-dev, libedje-dev, capi-appfw-application-dev
Standards-Version: 0.1.0
Package: com.samsung.calculator
BuildRequires: pkgconfig(embryo)
BuildRequires: pkgconfig(ecore)
BuildRequires: pkgconfig(elementary)
-BuildRequires: pkgconfig(utilX)
BuildRequires: pkgconfig(appcore-efl)
BuildRequires: pkgconfig(appcore-common)
BuildRequires: pkgconfig(dlog)
*
*/
#include <dlog.h>
-#include <Ecore_X.h> /* ecore_x_window_size_get */
-#include <utilX.h> /* KEY_END */
#include <feedback.h>
#include "calc-main.h"
#include "calc-view.h"
{
CALC_FUN_BEG();
Evas_Object *eo;
- int w, h;
eo = elm_win_add(NULL, name, ELM_WIN_BASIC);
if (eo) {
elm_win_title_set(eo, name);
evas_object_smart_callback_add(eo, "delete,request", _win_del,
NULL);
- ecore_x_window_size_get(ecore_x_window_root_first_get(), &w,
- &h);
- evas_object_resize(eo, w, h);
}
CALC_FUN_END();
return eo;
#include "calc-string.h"
#include "calc-expression.h"
#include "calc-view.h"
-#include <Ecore_X.h>
extern char decimal_ch;
extern char separator_ch;
#include "calc-expression.h"
#include "calc-view.h"
#include <feedback.h>
-#include <Ecore_X.h>
#include <vconf.h>
#define CALCULATOR_CHAR_IS_OPERATOR(C) ((C == '+')||(C == '-')||(C == 'x')||(C == '/')) /**<judge if a char is a basic operator*/