filesdir = $(pkgdatadir)
files_DATA = default_600.edj \
- default_720.edj
+ default_720.edj \
+ default_1080.edj
DEFAULT_FILES = default/default.edc \
default/default_600.edc \
default/default_720.edc \
+ default/default_1080.edc \
default/ignorekeys.txt \
default/fonts/DroidSans-Bold.ttf \
default/fonts/DroidSans.ttf \
$(top_srcdir)/data/themes/default/default_720.edc \
$(top_builddir)/data/themes/default_720.edj
+default_1080.edj: Makefile default/default_1080.edc $(default_FILES)
+ $(EDJE_CC) $(EDJE_FLAGS) \
+ -dd $(top_srcdir)/data/themes/default \
+ -id $(top_srcdir)/data/themes/default/images \
+ -fd $(top_srcdir)/data/themes/default/fonts \
+ $(top_srcdir)/data/themes/default/default_1080.edc \
+ $(top_builddir)/data/themes/default_1080.edj
+
clean-local:
rm -f $(top_builddir)/data/themes/*.edj
--- /dev/null
+/*
+ * Copyright © 2014 Jaguar Landrover
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#define SCALE 1.5
+
+#define MIN_WIDTH 1080
+#define MAX_WIDTH 1280
+#define MIN_HEIGHT 900
+#define MAX_HEIGHT 900
+
+#define NUMERIC_KEY_HEIGHT 150
+
+#include "default.edc"
/* Check which theme we should use according to the screen width */
ecore_wl_screen_size_get(&w, &h);
DBG("Screen size: w=%d, h=%d", w, h);
- if (w >= 720)
+ if (w >= 1080)
+ w = 1080;
+ else if (w >= 720)
w = 720;
else
w = 600;