Re: ANNOUNCE: Wayland Live CD that starts directly to Wayland

2013-05-30 Thread nerdopolis
On Monday, May 27, 2013 01:12:57 PM Ilyes Gouta wrote: Hi, On Mon, May 27, 2013 at 12:57 PM, Rune Kjær Svendsen wrote: On Sat, May 25, 2013 at 7:15 AM, Ilyes Gouta wrote: Hi, Would it be possible to place that ISO image on a usb key and to boot from it? If you're using GRUB2 you can do e

RE: [PATCH v2 wfits] gtk: Add test_button.cpp and gtk/ButtonClickTest

2013-05-30 Thread Eoff, Ullysses A
Thanks Brian... committed. U. Artie > -Original Message- > From: wayland-devel-bounces+ullysses.a.eoff=intel@lists.freedesktop.org > [mailto:wayland-devel- > bounces+ullysses.a.eoff=intel@lists.freedesktop.org] On Behalf Of Brian > Lovin > Sent: Thursday, May 30, 2013 4:17 PM >

[PATCH v2 wfits] gtk: Add test_button.cpp and gtk/ButtonClickTest

2013-05-30 Thread Brian Lovin
Added test_button.cpp and the gtk+ test case ButtonClickTest Signed-off-by: Brian Lovin --- src/test/gtk+/Makefile.am | 3 +- src/test/gtk+/test_button.cpp | 138 ++ 2 files changed, 140 insertions(+), 1 deletion(-) create mode 100644 src/test/gtk+/

RE: [PATCH wfits] gtk: Add test_button.cpp and gtk/ButtonClickTest

2013-05-30 Thread Eoff, Ullysses A
Brian, Looks good other than a few stylistic issues and some const corrections. Be sure to remove all trailing whitespaces (git diff should show them). See other comments inline. Thanks, U. Artie > -Original Message- > From: wayland-devel-bounces+ullysses.a.eoff=intel@lists.freedes

[PATCH wfits] gtk: Add test_button.cpp and gtk/ButtonClickTest

2013-05-30 Thread Brian Lovin
Added test_button.cpp and the gtk+ test case ButtonClickTest Signed-off-by: Brian Lovin --- src/test/gtk+/Makefile.am | 3 +- src/test/gtk+/test_button.cpp | 138 ++ 2 files changed, 140 insertions(+), 1 deletion(-) create mode 100644 src/test/gtk+/

Re: [PATCH 4/5] editor: Improve checks on delete add asserts

2013-05-30 Thread Bill Spitzak
On 05/30/2013 04:57 AM, Jan Arne Petersen wrote: - if (entry->pending_commit.delete_index + length > text_length) { + if (length > text_length || + entry->pending_commit.delete_index + length > text_length) { This is to detect wrap-around of the unsigned values, right? Th

Re: [PATCH 2/5] editor: Support deleting text in preedit_string

2013-05-30 Thread Bill Spitzak
On 05/30/2013 04:57 AM, Jan Arne Petersen wrote: From: Jan Arne Petersen Delete text marked with wl_text_input::delete_surrounding_text on preedit_string event. When text is explicitly marked with delete_surrounding_text do not delete selected text. I think it would be more consistent to dele

Re: [PATCH 00/15] weston scaling support

2013-05-30 Thread Bill Spitzak
On 05/30/2013 12:42 AM, Alexander Larsson wrote: The compositor will produce regions that are not integers in surface space. For instance the damage from an overlapping window atop a surface who's scale is not an integer will produce a region that is fractional in that lower surface's space. D

[PATCH weston] Don't fail if colord or libunwind are not present

2013-05-30 Thread Armin K
This patch adds auto detection for presence of the colord and libunwind packages. --- configure.ac | 43 +++ 1 file changed, 31 insertions(+), 12 deletions(-) diff --git a/configure.ac b/configure.ac index 323bd87..ba1fcac 100644 --- a/configure.ac +++ b/co

[PATCH 1/5] editor: Fix text selection

2013-05-30 Thread Jan Arne Petersen
From: Jan Arne Petersen Signed-off-by: Jan Arne Petersen --- clients/editor.c | 76 1 file changed, 44 insertions(+), 32 deletions(-) diff --git a/clients/editor.c b/clients/editor.c index 7c90ed9..03cdc12 100644 --- a/clients/editor.c +

[PATCH 5/5] editor: Do not commit/preedit after invalid delete

2013-05-30 Thread Jan Arne Petersen
From: Jan Arne Petersen Ignore the whole commit-string or preedit_string transaction when the delete_surrounding event was invalid. Signed-off-by: Jan Arne Petersen --- clients/editor.c | 55 +-- 1 file changed, 41 insertions(+), 14 deletions

[PATCH 2/5] editor: Support deleting text in preedit_string

2013-05-30 Thread Jan Arne Petersen
From: Jan Arne Petersen Delete text marked with wl_text_input::delete_surrounding_text on preedit_string event. When text is explicitly marked with delete_surrounding_text do not delete selected text. Signed-off-by: Jan Arne Petersen --- clients/editor.c | 13 +++-- 1 file changed, 11

[PATCH 4/5] editor: Improve checks on delete add asserts

2013-05-30 Thread Jan Arne Petersen
From: Jan Arne Petersen Signed-off-by: Jan Arne Petersen --- clients/editor.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/clients/editor.c b/clients/editor.c index 35f6d08..cd24f6a 100644 --- a/clients/editor.c +++ b/clients/editor.c @@ -214,7 +214,8 @@ text_input_d

[PATCH 0/5] Fix some bugs in editor example

2013-05-30 Thread Jan Arne Petersen
From: Jan Arne Petersen Fix some bugs I noticed when testing the editor example with latest Wayland enabled Maliit. Jan Arne Petersen (5): editor: Fix text selection editor: Support deleting text in preedit_string editor: Properly adjust cursor on delete editor: Improve checks on delete

[PATCH 3/5] editor: Properly adjust cursor on delete

2013-05-30 Thread Jan Arne Petersen
From: Jan Arne Petersen Signed-off-by: Jan Arne Petersen --- clients/editor.c | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/clients/editor.c b/clients/editor.c index 16ede4f..35f6d08 100644 --- a/clients/editor.c +++ b/clients/editor.c @@ -837,16 +837,19 @@ tex

Re: [PATCH 00/15] weston scaling support

2013-05-30 Thread Alexander Larsson
On ons, 2013-05-29 at 07:55 -0700, Bill Spitzak wrote: > On 05/29/2013 12:31 AM, Alexander Larsson wrote: > > >> I don't think you can avoid non-integer scaling. What happens if a > >> client says it's scale is 3 and the output has a scale of 2? This is not > >> just hypothetical, it will certainl

Re: Compiling weston now needs colord

2013-05-30 Thread Stefan Schmidt
Hello. On 05/30/2013 07:24 AM, Michael Hasselmann wrote: On Tue, 2013-05-28 at 22:16 -0700, Bill Spitzak wrote: Running autogen.sh in weston with --disable-colord works to avoid this, I suspect nothing I care about is lost this way. I ran into the very same problems. I would have preferred if