[Ubuntu-phone] Upcoming UI Toolkit Panel/Toolbar API changes

2013-09-11 Thread Tim Peeters
Hello, I would like to make you aware of some upcoming changes to the API and behavior of the Panel and Toolbar in the Ubuntu UI Toolkit, related to opening and closing the panel/toolbar. First, I like to point out that for applications using MainView with Pages (the recommended app structure), t

Re: [Ubuntu-phone] Upcoming UI Toolkit Panel/Toolbar API changes

2013-09-11 Thread Michael Zanetti
Hi Tim thanks for the heads up. On Wednesday 11 September 2013 11:11:51 Tim Peeters wrote: > > These changes were made recently in the UITK: > * ADDED IN Panel: function open() > * ADDED IN Panel: function closed() > * DEPRECATED IN Panel: writable property opened. Will be made read-only. Too b

Re: [Ubuntu-phone] [SDK][Theming] Styling a compound widget

2013-09-11 Thread Michał Sawicz
On 09.09.2013 19:54, Robert Schroll wrote: > Maybe I'm just being dense, but I don't see how this helps me out. I > don't want to implement a CustomOptionSelectorDelegate that uses the > same style as the default one; I want to take the existing one and tweak > one aspect of its style. It seems t

[Ubuntu-phone] Cross-compiling QML extensions, using CMake

2013-09-11 Thread Dmitrijs Ledkovs
I've written up a quick how-to cross-compiling qml extensions using CMake https://wiki.ubuntu.com/Touch/CrossCompile Apart from cmake choosing DEB_HOST moc, instead of DEB_BUILD moc, it seems to work ok. I've successfully compiled: ./lib/SystemSettings/libSystemSettings.so ./tests/libtest-plugin

Re: [Ubuntu-phone] [Ubuntu-touch-coreapps] Upcoming UI Toolkit Panel/Toolbar API changes

2013-09-11 Thread Michael Spencer
On Wed, Sep 11, 2013 at 4:11 AM, Tim Peeters wrote: > Hello, > > I would like to make you aware of some upcoming changes to the API and > behavior of the Panel and Toolbar in the Ubuntu UI Toolkit, related to > opening and closing the panel/toolbar. > > First, I like to point out that for applicat

Re: [Ubuntu-phone] Catching CPU run-aways on Touch

2013-09-11 Thread Jamie Strandboge
On 09/09/2013 01:09 AM, Alberto Mardegan wrote: > On 09/05/2013 08:09 PM, Jamie Strandboge wrote: >> On 09/05/2013 07:01 AM, Alberto Mardegan wrote: >>> Well, if we don't have a myAppIsRunning() API, apps can simply >>> busy-loop whenever they want, so I don't see much harm in adding >>> this API.

Re: [Ubuntu-phone] Catching CPU run-aways on Touch

2013-09-11 Thread Thomas Voß
On Thu, Sep 5, 2013 at 8:04 PM, Evan Dandrea wrote: > On 5 September 2013 18:35, Steve Langasek wrote: >>> Is this a proposal for 13.10? >> >> I think it's unrealistic to think anything discussed here would land for >> 13.10. We already have plenty of other things on our plate that are on the >>

Re: [Ubuntu-phone] Cross-compiling QML extensions, using CMake

2013-09-11 Thread Sergio Schvezov
On Wed, Sep 11, 2013 at 8:22 AM, Dmitrijs Ledkovs wrote: > I've written up a quick how-to cross-compiling qml extensions using CMake > > https://wiki.ubuntu.com/Touch/CrossCompile > > Apart from cmake choosing DEB_HOST moc, instead of DEB_BUILD moc, it > seems to work ok. > > I've successfully co

Re: [Ubuntu-phone] [Ubuntu-touch-coreapps] Upcoming UI Toolkit Panel/Toolbar API changes

2013-09-11 Thread Leo Arias
Hello! On Wed, Sep 11, 2013 at 3:11 AM, Tim Peeters wrote > > Also please check your app's autopilot tests for assumptions on whether > the toolbar/panel is opened/closed by default and how it responds > (opens/closes) to user interaction, because this behavior will be changed > and then the tests

Re: [Ubuntu-phone] [SDK][Theming] Styling a compound widget

2013-09-11 Thread Robert Schroll
On Wed, Sep 11, 2013 at 8:43 AM, Michał Sawicz wrote: I feel like there has been a misunderstanding here... IIUC, you want an OptionSelector with: Ubuntu DejaVu Liberation ... Each of those in the font it describes, right? IMO that's the exact place where you create a custom OptionSelectorDe

[Ubuntu-phone] QML d-bus

2013-09-11 Thread Sam Bull
When talking about making an app in a different language, someone said that it would be possible using d-bus. I'm looking to start a Bitcoin app, and the best way would be to use existing code for the backend, which requires Java. So, how do I use d-bus in QML to be able to interface with this?

Re: [Ubuntu-phone] [Ubuntu-touch-coreapps] Upcoming UI Toolkit Panel/Toolbar API changes

2013-09-11 Thread Robert Park
I have seen many autopilot tests (across many projects) that, when needing to click a toolbar button, emulate the physical swipe up to open the toolbar, and then click on the button. Will that code break? On Wed, Sep 11, 2013 at 7:47 AM, Leo Arias wrote: > Hello! > > On Wed, Sep 11, 2013 at 3:1

Re: [Ubuntu-phone] Cross-compiling QML extensions, using CMake

2013-09-11 Thread Roman Shchekin
Hi all So, can I compile my plugin for armhf arch via cmake? I need it for showdown :) 2013/9/11 Sergio Schvezov > On Wed, Sep 11, 2013 at 8:22 AM, Dmitrijs Ledkovs wrote: > >> I've written up a quick how-to cross-compiling qml extensions using CMake >> >> https://wiki.ubuntu.com/Touch/CrossC

Re: [Ubuntu-phone] [Ubuntu-touch-coreapps] Upcoming UI Toolkit Panel/Toolbar API changes

2013-09-11 Thread Leo Arias
On Wed, Sep 11, 2013 at 12:51 PM, Robert Park wrote: > I have seen many autopilot tests (across many projects) that, when needing > to click a toolbar button, emulate the physical swipe up to open the > toolbar, and then click on the button. Will that code break? > That should never break if you

Re: [Ubuntu-phone] QML d-bus

2013-09-11 Thread Thomas Voß
Hey Sam, good to hear that you are thinking about a bitcoin client. Is there any specific reason you are preferring the java API over http://libbitcoin.dyne.org/? Browsing through the examples and the API documentation, the library seems to be quite usable and you can consume C/C++ easily with for

Re: [Ubuntu-phone] QML d-bus

2013-09-11 Thread Rasmus Eneman
Java isn't included by default with would men that you have to bundle the JRE with your app to be able to use it. That isn't very space efficient and would make many people avoid it. That is why Thomas recommended a C/C++ library for you :) 2013/9/11 Thomas Voß > Hey Sam, > > good to hear that

Re: [Ubuntu-phone] QML d-bus

2013-09-11 Thread brandon
A click package is incapable of requesting system installation of an apt package/dependancies? On Wed Sep 11 16:56:25 2013 Rasmus Eneman wrote: > Java isn't included by default with would men that you have > to bundle the JRE with your app to be able to use it. That > isn't very space efficient

Re: [Ubuntu-phone] QML d-bus

2013-09-11 Thread Rasmus Eneman
Yes it's boyd. Bring your own dependencies On Sep 12, 2013 1:13 AM, wrote: > A click package is incapable of requesting system installation of an apt > package/dependancies? > > On Wed Sep 11 16:56:25 2013 Rasmus Eneman wrote: > > Java isn't included by default with would men that you have > > t