Commit Graph

530 Commits

Author SHA1 Message Date
Carsten Haitzler d5dd331c4a TH wizard 2019-07-04 18:36:06 +01:00
Carsten Haitzler 932b06adee TH fix scale of small shadow 2019-07-04 18:35:56 +01:00
Carsten Haitzler 5fba347e3d TH - spinner 2019-05-16 17:01:50 +01:00
Carsten Haitzler baffded560 TH - rewmove warnings 2019-05-13 14:49:35 +01:00
Carsten Haitzler e6f3d3af26 Merge branch 'master' into feature/themes/flat 2019-05-13 14:47:29 +01:00
Carsten Haitzler 346e5d1324 edje src - mark with efl version so we don't get warnings 2019-05-13 14:40:08 +01:00
Carsten Haitzler f00cd1b622 TH - spectrum 2019-05-10 11:58:10 +01:00
Carsten Haitzler 03e91d8565 TH - unzip shadows 2019-05-10 11:31:17 +01:00
Carsten Haitzler fe416c440a TH - make vg's raw so they thumbnail nicer 2019-05-10 11:28:24 +01:00
Carsten Haitzler e8f9bb971a TH - bz4 done 2019-05-10 11:19:39 +01:00
Carsten Haitzler bf8a67f409 TH - add bt svg originals 2019-05-10 11:14:00 +01:00
Carsten Haitzler 730e05fcf4 TH - make appmenu scale better 2019-05-09 18:22:50 +01:00
Carsten Haitzler 17a8354a93 TH - finish ilist typebuffer 2019-05-09 18:13:01 +01:00
Carsten Haitzler d8e15e0606 TH - e textblock 2019-05-09 18:08:50 +01:00
Carsten Haitzler 92c3f1ce95 TH - efm finish off 2019-05-09 16:19:11 +01:00
Yeongjong Lee a47f062633 navigation_layout: set efl.content y-axis align to 0.0
Summary:
If `efl.content` min size is greater than edc area size, `efl.bar` and
`efl.content` are overlapped because default y-align is 0.5.

This patch avoid it.

Test Plan:
Sample code:
```
// gcc -o efl_ui_stack_example efl_ui_stack_example.c `pkg-config --cflags --libs elementary`

EAPI_MAIN void
efl_main(void *data EINA_UNUSED, const Efl_Event *ev EINA_UNUSED)
{
   Eo *win = efl_add(EFL_UI_WIN_CLASS, efl_main_loop_get());

   Eo *stack = efl_add(EFL_UI_STACK_CLASS, win);
   efl_content_set(win, stack);

   Eo *nl = efl_add(EFL_UI_NAVIGATION_LAYOUT_CLASS, stack,
                    efl_ui_stack_push(stack, efl_added));

   Eo *bn = efl_add(EFL_UI_NAVIGATION_BAR_CLASS, stack);
   efl_text_set(bn, "Title Text");
   efl_ui_navigation_layout_bar_set(nl, bn);

   Eo *btn = efl_add(EFL_UI_BUTTON_CLASS, nl,
                     efl_text_set(efl_added, "Button 1"),
                     efl_gfx_hint_size_min_set(efl_added, EINA_SIZE2D(50, 80)),
                     efl_content_set(nl, efl_added));

   efl_gfx_entity_size_set(win, EINA_SIZE2D(100, 80));
}
EFL_MAIN()
```

Reviewers: Jaehyun_Cho

Reviewed By: Jaehyun_Cho

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8868
2019-05-09 15:42:13 +09:00
Carsten Haitzler de01570dc0 TH - everything popup 2019-05-03 17:34:06 +01:00
Carsten Haitzler d515bfb53b Merge branch 'master' into feature/themes/flat 2019-04-18 12:06:51 +01:00
Carsten Haitzler c80ad31195 TH - panes 2019-04-18 12:04:30 +01:00
Marcel Hollerbach 4edf8036e0 meson: correctly use the correct dependency
Summary:
edje_cc calls epp, so we should not only add edje_cc to the depends on
target, but rather also ensure that epp is availble. Additionally, this
removes unneccessary depends on declarations when we do cross compile.
Depends on D8561

Reviewers: zmike, segfaultxavi, cedric

Reviewed By: zmike

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8562
2019-04-05 08:15:39 -04:00
Carsten Haitzler 2af38da300 TH - tiling 2019-04-01 01:09:55 +01:00
Carsten Haitzler 6a705567df TH - tiling 2019-04-01 01:02:10 +01:00
Carsten Haitzler 1758c0db4a TH - evry 2019-04-01 01:01:38 +01:00
Taehyub Kim 4e2003f741 efl_ui_alert_popup: add new feature for applying side button style of alert popup
Summary: This feature will apply side button style for each left and right button of alert popup

Reviewers: Jaehyun_Cho, cedric

Reviewed By: Jaehyun_Cho

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8492
2019-03-28 18:48:03 +09:00
Mike Blumenkrantz 4949a8f3a7 elm_code: add theme alias for layout group
with the rename of this (beta) widget, the efl/ group name is set so
add this to the theme for now until more work can be done here to resolve
the rest of the theme namespacing issues which will only be an issue
if the widget is ever made stable

ref T7713

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D8393
2019-03-19 19:20:01 +01:00
Carsten Haitzler 067b35104c TH - pkgkit1 2019-03-02 16:57:29 +00:00
Hosang Kim 493b095add efl_ui_scroller: apply handling focus.
Summary: Focus manager is applied to process key events.

Test Plan: elementary_test -> efl.ui.scroller

Reviewers: SanghyeonLee, YOhoho, marcelhollerbach, bu5hm4n

Reviewed By: bu5hm4n

Subscribers: woohyun, Jaehyun_Cho, bu5hm4n, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D7776
2019-02-26 16:53:13 +09:00
Marcel Hollerbach 2c259edd9f meson: add the elementary examples to the build 2019-02-21 08:56:13 +01:00
Carsten Haitzler cebdebc7a5 TH - init splash - fix 2nd screen 2019-02-14 09:38:12 +00:00
Carsten Haitzler 998d8c3957 TH - systray padding 2019-02-13 15:30:49 +00:00
Carsten Haitzler c4ad0169eb TH - make arrows flat white triangles - pager, ibox etc.
x
2019-02-13 15:17:08 +00:00
Carsten Haitzler e8346ffea4 TH - winlist 2019-02-13 12:24:12 +00:00
Carsten Haitzler 6514b7c07d TH - pointer - fade in on startup nicely 2019-02-13 12:04:20 +00:00
Carsten Haitzler 340d56347f TH - splash - fade in nicely and out too 2019-02-13 12:04:06 +00:00
Carsten Haitzler a22c88fd5b TH - do preview theme bits 2019-01-31 18:00:02 +00:00
Carsten Haitzler e1e9f66956 TH - conf - gagdet - remove box - looks nicer in shelf 2019-01-31 17:44:49 +00:00
Wonki Kim 31794a18e1 meson: fix to make results same as a way it does in autotools
I found that results of build are different by build tools.
this patch fixes meson.build to make results same as a way it does in autotools.
Differential Revision: https://phab.enlightenment.org/D7819
2019-01-30 13:32:04 +01:00
Carsten Haitzler db0d0d706c TH - fix popup close
fixes T7662
2019-01-30 10:10:13 +00:00
Carsten Haitzler 5b13eff273 TH - fix toolbar sizing when no icons 2019-01-30 09:56:22 +00:00
Stephen 'Okra' Houston 042888c0dd Flat theme: Fix cpuclock theme.` 2019-01-28 14:53:17 -06:00
Stefan Schmidt 41977fd19e Revert "Revert "efl_ui_pager: add tests for efl_ui_pager""
This reverts commit a686b7d9fe.

Turns out in my eagerness to un-break the build I did not check the
patch queue before reverting. If I would have done this I would have
seen the fix for the break alreay being submitted by Junsu Choi.

This is my bad, the two reverts could have been avoid. Sorry.
Note to self: give yourself a moment, and check the patch queue, before
rushing out a revert. :/
2019-01-25 09:49:49 +01:00
Stefan Schmidt a686b7d9fe Revert "efl_ui_pager: add tests for efl_ui_pager"
This reverts commit 0b79064f4c.

Appreciating the new tests but they are breaking the meson build.

/usr/bin/ld: src/bin/elementary/aea5856@@elementary_test@exe/test.c.o: in function `my_win_main':
test.c:(.text+0x501e): undefined reference to `test_ui_pager'
/usr/bin/ld: test.c:(.text+0x504d): undefined reference to `test_ui_pager_scroll'
collect2: error: ld returned 1 exit status

Once the meson build break is fixed this could go in again.
2019-01-25 09:32:46 +01:00
Jaeun Choi 0b79064f4c efl_ui_pager: add tests for efl_ui_pager 2019-01-25 14:32:26 +09:00
Jaeun Choi 1934afb47d efl_ui_pager: modify a part of default theme 2019-01-25 13:41:52 +09:00
Carsten Haitzler 6dedfddda7 meson - edje_cc use -fastcomp for fast builds in mesa 2019-01-24 14:04:07 +00:00
Carsten Haitzler 18c0096cfe elm theme - use -fastcomp again as it is actually much faster now 2019-01-24 14:04:07 +00:00
Carsten Haitzler aaf2eb1e52 TH - music control title 2019-01-24 14:03:43 +00:00
Stephen 'Okra' Houston 67a5bd2043 Wireless Theme: Make the cloud work as it is supposed to on wifi. 2019-01-23 16:13:46 -06:00
Stephen 'Okra' Houston a427979cce Flat theme: Finish converting new gadgets. 2019-01-23 15:24:16 -06:00
Carsten Haitzler a08f678ae3 TH - music control 2019-01-23 17:30:56 +00:00