diff --git a/epydial/data/themes/default/dialer_main.edc b/epydial/data/themes/default/dialer_main.edc index 7859a51..d2f2ee5 100644 --- a/epydial/data/themes/default/dialer_main.edc +++ b/epydial/data/themes/default/dialer_main.edc @@ -188,6 +188,42 @@ collections { rel2 { relative: 1 1; offset: 0 0; }; } } + part { + name: "operater_text"; + type: TEXT; + mouse_events: 0; + description { + color_class: "button_inactive"; + state: "default" 0.0; + rel1 { relative: 0 0; } + rel2 { relative: 1/3 1/20; } + text { text, "operator"; font: "Sans"; size, 1; align, 0 0.5; fit, 0 1; } + } + } /* end operator_text */ + part { + name: "time_text"; + type: TEXT; + mouse_events: 0; + description { + color_class: "button_inactive"; + state: "default" 0.0; + rel1 { relative: 1/3 0; } + rel2 { relative: 2/3 1/20; } + text { text, "time"; font: "sans.bold"; size, 1; align, 0.5 0.5; fit, 0 1; } + } + } /* end time_text */ + part { + name: "signalq_text"; + type: TEXT; + mouse_events: 0; + description { + color_class: "button_inactive"; + state: "default" 0.0; + rel1 { relative: 2/3 0; } + rel2 { relative: 1 1/20; } + text { text, "signal"; font: "Sans"; size, 1; align, 1 0.5; fit, 0 1; } + } + } /* end signalq_text */ /* stripes - just for design :) */ DESIGN_STRIPE(1, 1/2, 0.18, 1, 0.18); diff --git a/epydial/data/themes/default/dialer_main.edj b/epydial/data/themes/default/dialer_main.edj index 88fcbd1..43c16b5 100644 Binary files a/epydial/data/themes/default/dialer_main.edj and b/epydial/data/themes/default/dialer_main.edj differ diff --git a/epydial/epydial.py b/epydial/epydial.py index 802da5a..fb3030f 100755 --- a/epydial/epydial.py +++ b/epydial/epydial.py @@ -16,7 +16,7 @@ FULLSCREEN = True APP_TITLE = "epydial" WM_INFO = ("epydial", "epydial") -EDJE_FILE_PATH = "data/themes/blackwhite/" +EDJE_FILE_PATH = "data/themes/default/" MAIN_SCREEN_NAME = "pyneo/dialer/main" INCALL_SCREEN_NAME = "pyneo/dialer/incall"