Project files ordering 23/59023/5
authorRadek Kintop <r.kintop@samsung.com>
Wed, 10 Feb 2016 10:04:50 +0000 (11:04 +0100)
committerRadek Kintop <r.kintop@samsung.com>
Wed, 10 Feb 2016 12:27:39 +0000 (13:27 +0100)
Change-Id: I258e2b7cf6381b6e4d8ae5b9156ddb9b530812e2
Signed-off-by: Radek Kintop <r.kintop@samsung.com>
41 files changed:
CMakeLists.txt
include/common/datamgr.h [moved from include/datamgr.h with 100% similarity]
include/common/gridmgr.h [moved from include/gridmgr.h with 100% similarity]
include/common/inputmgr.h [moved from include/inputmgr.h with 100% similarity]
include/common/layoutmgr.h [moved from include/layoutmgr.h with 100% similarity]
include/common/listmgr.h [moved from include/listmgr.h with 100% similarity]
include/common/menumgr.h [moved from include/menumgr.h with 100% similarity]
include/common/utils.h [moved from include/utils.h with 100% similarity]
include/common/viewmgr.h [moved from include/viewmgr.h with 100% similarity]
include/data/system/data_wired.h [moved from include/data/data_wired.h with 98% similarity]
include/data/system/data_wireless.h [moved from include/data/data_wireless.h with 100% similarity]
include/view/system/view_clock.h [moved from include/view_clock.h with 100% similarity]
include/view/system/view_location.h [moved from include/view_location.h with 100% similarity]
include/view/view_base.h [moved from include/view_base.h with 100% similarity]
res/settings.edc
res/view/system/clock.edc [moved from res/view/clock.edc with 100% similarity]
res/view/system/location.edc [moved from res/view/location.edc with 100% similarity]
src/common/datamgr.c
src/common/gridmgr.c
src/common/inputmgr.c
src/common/layoutmgr.c
src/common/listmgr.c
src/common/menumgr.c
src/common/utils.c
src/common/viewmgr.c
src/data/system/data_wired.c [moved from src/data/data_wired.c with 99% similarity]
src/data/system/data_wireless.c [moved from src/data/data_wireless.c with 99% similarity]
src/grid/grid_wireless.c
src/layout/layout_channel.c
src/layout/layout_info.c
src/layout/layout_network.c
src/layout/layout_picture.c
src/layout/layout_sound.c
src/layout/layout_support.c
src/layout/layout_system.c
src/layout/layout_voice.c
src/main.c
src/view/system/view_clock.c [moved from src/view/view_clock.c with 99% similarity]
src/view/system/view_location.c [moved from src/view/view_location.c with 98% similarity]
src/view/view_base.c
src/view/view_new_network.c

index 43b4cf1..bcda956 100644 (file)
@@ -63,8 +63,8 @@ ENDIF(NOT DEFINED DESKTOP_ICON)
 SET(SRCS
        src/main.c
        src/view/view_base.c
-       src/view/view_clock.c
-       src/view/view_location.c
+       src/view/system/view_clock.c
+       src/view/system/view_location.c
        src/view/view_new_network.c
        src/common/utils.c
        src/common/viewmgr.c
@@ -83,8 +83,8 @@ SET(SRCS
        src/layout/layout_info.c
        src/layout/layout_voice.c
        src/grid/grid_wireless.c
-       src/data/data_wireless.c
-       src/data/data_wired.c
+       src/data/system/data_wireless.c
+       src/data/system/data_wired.c
        src/data/system/settings_clock.c
    )
 
similarity index 100%
rename from include/datamgr.h
rename to include/common/datamgr.h
similarity index 100%
rename from include/gridmgr.h
rename to include/common/gridmgr.h
similarity index 100%
rename from include/inputmgr.h
rename to include/common/inputmgr.h
similarity index 100%
rename from include/listmgr.h
rename to include/common/listmgr.h
similarity index 100%
rename from include/menumgr.h
rename to include/common/menumgr.h
similarity index 100%
rename from include/utils.h
rename to include/common/utils.h
similarity index 100%
rename from include/viewmgr.h
rename to include/common/viewmgr.h
similarity index 98%
rename from include/data/data_wired.h
rename to include/data/system/data_wired.h
index 9cae4f4..3a996f9 100644 (file)
@@ -18,7 +18,7 @@
 #define __AIR_SETTINGS_DATA_WIRED_H__
 
 #include <net_connection.h>
-#include "datamgr.h"
+#include "common/datamgr.h"
 
 #define NETWORK_ADDRESS_MAX    16
 
similarity index 100%
rename from include/view_base.h
rename to include/view/view_base.h
index 7d4275a..abcde16 100644 (file)
@@ -19,8 +19,8 @@
 collections {
        base_scale: APP_BASE_SCALE;
        #include "view/base.edc"
-       #include "view/clock.edc"
-       #include "view/location.edc"
+       #include "view/system/clock.edc"
+       #include "view/system/location.edc"
        #include "layout/picture.edc"
        #include "layout/channel.edc"
        #include "layout/support.edc"
similarity index 100%
rename from res/view/clock.edc
rename to res/view/system/clock.edc
index 2427d54..1ddc71c 100644 (file)
@@ -17,7 +17,7 @@
 #include <stdbool.h>
 
 #include "app_debug.h"
-#include "datamgr.h"
+#include "common/datamgr.h"
 
 struct datamgr {
        struct data_class *dclass;
index a63f96a..1e22fa5 100644 (file)
@@ -15,7 +15,7 @@
  */
 
 #include <app.h>
-#include "gridmgr.h"
+#include "common/gridmgr.h"
 #include "app_debug.h"
 
 struct gridmgr {
index 3fc67c3..065ad51 100644 (file)
@@ -19,7 +19,7 @@
 #include <Eina.h>
 
 #include "app_debug.h"
-#include "inputmgr.h"
+#include "common/inputmgr.h"
 
 #define FBR_SIGNAL_CLICKED      "clicked"
 #define SIG_REALIZED            "realized"
index d11bbe3..526bfec 100644 (file)
@@ -19,7 +19,7 @@
 #include <Eina.h>
 
 #include "app_debug.h"
-#include "layoutmgr.h"
+#include "common/layoutmgr.h"
 
 struct _layoutmgr {
        Evas_Object *base;
index 0433863..4f0fccb 100644 (file)
 
 #include <Elementary.h>
 
-#include "gridmgr.h"
-#include "inputmgr.h"
+#include "common/gridmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
-#include "utils.h"
+#include "common/utils.h"
 #include "define.h"
 
-#include "data/data_wireless.h"
+#include "data/system/data_wireless.h"
 
 struct listmgr {
        Evas_Object *parent;
index 63908df..bd17a56 100644 (file)
 
 #include <Elementary.h>
 
-#include "viewmgr.h"
-#include "inputmgr.h"
+#include "common/viewmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "define.h"
-#include "view_base.h"
-#include "utils.h"
-#include "menumgr.h"
+#include "view/view_base.h"
+#include "common/utils.h"
+#include "common/menumgr.h"
 
 #define MAX_BTN 8
 #define MAX_BTN_COL 4
index 529e359..88b5cd6 100644 (file)
@@ -16,7 +16,7 @@
 
 #include <Elementary.h>
 
-#include "inputmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "app_string.h"
 #include "define.h"
index 0bdf770..bb2ae99 100644 (file)
@@ -19,7 +19,7 @@
 #include <Eina.h>
 
 #include "app_debug.h"
-#include "viewmgr.h"
+#include "common/viewmgr.h"
 
 struct viewmgr {
        Evas_Object *win;
similarity index 99%
rename from src/data/data_wired.c
rename to src/data/system/data_wired.c
index ddff62e..8284b8b 100644 (file)
@@ -15,7 +15,7 @@
  */
 
 #include "app_debug.h"
-#include "data/data_wired.h"
+#include "data/system/data_wired.h"
 
 int get_wired_network_status(struct _connection_data *data)
 {
similarity index 99%
rename from src/data/data_wireless.c
rename to src/data/system/data_wireless.c
index 3580872..4312c2e 100644 (file)
@@ -17,8 +17,8 @@
 #include <Elementary.h>
 
 #include "app_debug.h"
-#include "data/data_wireless.h"
-#include "datamgr.h"
+#include "data/system/data_wireless.h"
+#include "common/datamgr.h"
 
 struct _priv {
        Eina_List *list;
index 45aefad..a289cf6 100644 (file)
 
 #include <Elementary.h>
 
-#include "gridmgr.h"
+#include "common/gridmgr.h"
 #include "app_debug.h"
 #include "define.h"
 #include "grid.h"
-#include "data/data_wireless.h"
+#include "data/system/data_wireless.h"
 
 static char *_text_get(void *data, Evas_Object *obj, const char *part)
 {
index e6e5df0..7cc15c7 100644 (file)
 #include <Elementary.h>
 #include <tv_service_proxy.h>
 
-#include "viewmgr.h"
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/viewmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "define.h"
 #include "layout.h"
-#include "utils.h"
-#include "view_base.h"
+#include "common/utils.h"
+#include "view/view_base.h"
 
 enum scan_state {
        STATE_INIT,
index ead6acc..cb51a8c 100644 (file)
@@ -16,7 +16,7 @@
 
 #include <Elementary.h>
 
-#include "layoutmgr.h"
+#include "common/layoutmgr.h"
 #include "define.h"
 #include "layout.h"
 
index 9eaa81b..d5be6c9 100644 (file)
 
 #include <Elementary.h>
 
-#include "viewmgr.h"
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/viewmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "define.h"
-#include "view_base.h"
+#include "view/view_base.h"
 #include "view_new_network.h"
 #include "layout.h"
 #include "grid.h"
-#include "data/data_wireless.h"
-#include "data/data_wired.h"
-#include "listmgr.h"
-#include "datamgr.h"
-#include "utils.h"
+#include "data/system/data_wireless.h"
+#include "data/system/data_wired.h"
+#include "common/listmgr.h"
+#include "common/datamgr.h"
+#include "common/utils.h"
 
 enum object_type {
        EO_BTN_OK = 0,
index 213e08b..011f33c 100644 (file)
 #include <Elementary.h>
 #include <device/display.h>
 
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "define.h"
 #include "layout.h"
-#include "utils.h"
-#include "menumgr.h"
+#include "common/utils.h"
+#include "common/menumgr.h"
 
 #define PADDING_X 26
 #define PADDING_Y 26
index 05feabc..294a767 100644 (file)
@@ -16,7 +16,7 @@
 
 #include <Elementary.h>
 
-#include "layoutmgr.h"
+#include "common/layoutmgr.h"
 #include "define.h"
 #include "layout.h"
 
index 6418b48..8a50306 100644 (file)
 #include <Elementary.h>
 #include <system_info.h>
 
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "define.h"
 #include "layout.h"
-#include "utils.h"
-#include "menumgr.h"
+#include "common/utils.h"
+#include "common/menumgr.h"
 
 #define PADDING_X 26
 #define PADDING_Y 26
index be8abc0..17233b6 100644 (file)
 #include <utils_i18n.h>
 #include <vconf.h>
 
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "define.h"
 #include "layout.h"
-#include "utils.h"
-#include "menumgr.h"
-#include "viewmgr.h"
-#include "view_clock.h"
-#include "view_location.h"
+#include "common/utils.h"
+#include "common/menumgr.h"
+#include "common/viewmgr.h"
+#include "view/system/view_clock.h"
+#include "view/system/view_location.h"
+#include "data/system/settings_clock.h"
 
 #define PADDING_X 26
 #define PADDING_Y 26
index 77535a5..016061b 100644 (file)
 
 #include <Elementary.h>
 
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "define.h"
 #include "layout.h"
-#include "utils.h"
-#include "menumgr.h"
+#include "common/utils.h"
+#include "common/menumgr.h"
 
 #define PADDING_X 26
 #define PADDING_Y 26
index fe0cdf2..4d4f692 100644 (file)
 #include <app.h>
 #include <Elementary.h>
 
-#include "viewmgr.h"
+#include "common/viewmgr.h"
 #include "app_debug.h"
 #include "define.h"
-#include "view_base.h"
-#include "view_clock.h"
-#include "view_location.h"
+#include "view/view_base.h"
+#include "view/system/view_clock.h"
+#include "view/system/view_location.h"
 
 #include <system_settings.h>
 
similarity index 99%
rename from src/view/view_clock.c
rename to src/view/system/view_clock.c
index df74da2..3711785 100644 (file)
 #include <Elementary.h>
 #include <time.h>
 
-#include "viewmgr.h"
-#include "inputmgr.h"
+#include "common/viewmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "define.h"
-#include "utils.h"
-#include "view_clock.h"
+#include "common/utils.h"
+#include "view/system/view_clock.h"
 #include "data/system/settings_clock.h"
 #include "app_string.h"
 
similarity index 98%
rename from src/view/view_location.c
rename to src/view/system/view_location.c
index 8984955..8632a10 100644 (file)
 #include <system_settings.h>
 #include <utils_i18n.h>
 
-#include "viewmgr.h"
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/viewmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "app_string.h"
 #include "define.h"
 #include "layout.h"
-#include "utils.h"
-#include "view_base.h"
+#include "common/utils.h"
+#include "view/view_base.h"
 
 
 struct _priv {
index 871dc22..ad918ab 100644 (file)
 #include <app.h>
 #include <Elementary.h>
 
-#include "viewmgr.h"
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/viewmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "app_string.h"
 #include "define.h"
 #include "layout.h"
-#include "utils.h"
-#include "view_base.h"
+#include "common/utils.h"
+#include "view/view_base.h"
 
 struct _priv {
        Evas_Object *win;
index 68c4025..7296e54 100644 (file)
 #include <app.h>
 #include <Elementary.h>
 
-#include "viewmgr.h"
-#include "layoutmgr.h"
-#include "inputmgr.h"
+#include "common/viewmgr.h"
+#include "common/layoutmgr.h"
+#include "common/inputmgr.h"
 #include "app_debug.h"
 #include "app_string.h"
 #include "define.h"
 #include "layout.h"
-#include "utils.h"
-#include "view_base.h"
+#include "common/utils.h"
+#include "view/view_base.h"
 #include "view_new_network.h"
 #include "layout/network.h"
-#include "data/data_wired.h"
+#include "data/system/data_wired.h"
 
 #define SIG_ITEM_FOCUSED        "item,focused"
 #define SIG_ITEM_UNFOCUSED      "item,unfocused"