News:

Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com

Main Menu

Re: Clutter Exercise: Media List - [X] DONE

Started by tschak909, June 05, 2010, 03:21:12 AM

Previous topic - Next topic

uplink

Quote from: l3mce on October 17, 2010, 05:32:03 PM
Yes.

Every time I make headway my life folds in around me. Will have a working model before forever or never. Need a job.
* uplink wonders why that sounds familiar :)

DragonK

Thom,

I want to learn..... what would be the best way for a newbie? Qt or clutter?
Which one would u prefer we do it with?

Karel

tschak909


cfernandes

Tom ,

i go try to learn this.

Carlos

tschak909

The whole point of this, is to try and make some toys that we can play with.

I suggested Clutter due to its feature set, the fact that it is exceptionally fast, and can run on embedded and on-screen devices, and that it's flexible without being over-bearing. There is also the Mx toolkit which builds atop Clutter to create UI elements.

But in the end, it doesn't matter what toolkit is used, because the whole point here is to get a "clay model" that we can use with our bare hands.

-Thom

golgoj4

#20
should have something interesting as soon as i get scrolling implemented in a semi-interesting fashion. well that and cleanly laying out data grids :) Spent a few days trying to digest gui programming so far i have this...which a badly rendered grid. prototype 1st, refine later.



-golgoj4

left 2 things out.

1. On the qt-web browser, has resolved and integrated most stuff(i think?) but im getting tripped up by one include. Says its a reference to an undefined function but i can find the function in the include thats in that file. confusing.

2. anyone that wants to take a look and hack on what im doing as far as the experimental datagrid stuff http://gitorious.org/demo-file-grid-idea

good day!
Linuxmce - Where everyone is never wrong, but we are always behind xbmc in the media / ui department.

uplink

Quote from: golgoj4 on November 24, 2010, 10:43:18 AM
should have something interesting as soon as i get scrolling implemented in a semi-interesting fashion. well that and cleanly laying out data grids :) Spent a few days trying to digest gui programming so far i have this...which a badly rendered grid. prototype 1st, refine later.

http://flic.kr/p/8VRx65

-golgoj4


Looks alright so far. I like how I can move the image in the background with the scrollbar :D

Quote from: golgoj4 on November 24, 2010, 10:43:18 AM
left 2 things out.

1. On the qt-web browser, has resolved and integrated most stuff(i think?) but im getting tripped up by one include. Says its a reference to an undefined function but i can find the function in the include thats in that file. confusing.

I was looking around your code for a qt-web browser, and couldn't find it, to see what you were doing wrong. It's not there, but after thinking a bit it struck me what your problem might be. By your description your error is at link time, not at compile time.

I don't know what the proper way to do it in QtCreator is. In QDevelop I can tick a few boxes to add the needed libs for the link. Anyway, lacking those tickboxes, I think you achieve the same effect doing this:

In file demo_orbiter.pro, at line 7 change this:

QT       += core gui
to this:
QT       += core gui webkit

and run qmake to update your Makefile. This should get rid of your link error for qt-web, if I understand correctly and you use the QtWebkit stuff.

Quote from: golgoj4 on November 24, 2010, 10:43:18 AM
2. anyone that wants to take a look and hack on what im doing as far as the experimental datagrid stuff http://gitorious.org/demo-file-grid-idea

good day!

golgoj4

Sorry forgot to list the link to it :) http://gitorious.org/linuxmce-webkitbrowser. Im specifically having a problem with a link against a function in a dcecommon. Me being the rocket scientist i am, I overwrote my my directory earlier trying to generate what I thought would be an updated DCEcommon lib to link against which would have the function. Long story short, i need to rebuild from from git(where i backed up my progress thank goodness) and then see exactly where the error was.

-Golgoj4.
Linuxmce - Where everyone is never wrong, but we are always behind xbmc in the media / ui department.

uplink

I assume I'll have to go to my LinuxMCE development box, which is in fact Thom's development and girl amazement box :P, 'cause I get "Gen_Devices/QtWebBrowserBase.h: No such file or directory". That is if the Device Template is in the latest database. If it's just on your system, then I can't do much to help you, unless you give me direct access to your system to see what's going on.

coley

#24
...knocking the dust off here...
I've played a bit with QML on this.
This is a start - for me - taking a bit of this and that from QML seeing how it operates. It is in no way a consistent UI, and more than likely breaks most paradigms.
I've attached a deb for maemo as I've been testing this on windows and my N900.
What it does - not a lot but
- scrolling side menu akin to groupings on current orbiter
- touch lights - menu fades out(sample transition) touch anywhere to get menu back
- touch webadmin - quess what web page appears (assuming 192.168.80.1 for core)(no scrolling panning yet, but available)
- a lot of the menu items do nothing but clicking on each unloads the current component at least if not loading its own component, at the moment.
- touch music a CD case appears - tap it, it flips and flick-able track-listing appears - tracks are selectable
- touch video - grid of sample videos appear, again flick-able, zooming to fill area currently broken - well it zooms in but zooming out doesn't, so I've it disabled
- touch arrow at top of screen - quick access area appears - can put status here, at the moment has quit button.

suggestions criticisms please form an orderly queue
now where did I leave my flame retardant suit....

-Coley.

attached deb updated - shouldn't depend on qtmobility.
update 2: deb updated, more sensible name, scroll menu working.
~ 12.04 Alpha: [url="http://linuxmce.iptp.org/snapshots"]http://linuxmce.iptp.org/snapshots[/url]
~ 10.04 Final: [url="http://linuxmce.iptp.org/release/LinuxMCE-1004-final.iso"]http://linuxmce.iptp.org/release/LinuxMCE-1004-final.iso[/url]
~ My setup: [url="http://wiki.linuxmce.org/index.php/User:Coley"]http://wiki.linuxmce.org/index.php/User:Coley[/url]

tschak909

awesome. I will have to set up a maemo 5 SDK (if it's still out there), to test this. :) I do not have my N900 any more, as it was nicked in a hotel room.. :(

I wonder if we could get some more targets built for testing? ;)


-Thom

golgoj4

Quote from: coley on March 08, 2011, 01:27:07 AM
...knocking the dust off here...
I've played a bit with QML on this.
This is a start - for me - taking a bit of this and that from QML seeing how it operates. It is in no way a consistent UI, and more than likely breaks most paradigms.
I've attached a deb for maemo as I've been testing this on windows and my N900.
What it does - not a lot but
- scrolling side menu akin to groupings on current orbiter
- touch lights - menu fades out(sample transition) touch anywhere to get menu back
- touch webadmin - quess what web page appears (assuming 192.168.80.1 for core)(no scrolling panning yet, but available)
- a lot of the menu items do nothing but clicking on each unloads the current component at least if not loading its own component, at the moment.
- touch music a CD case appears - tap it, it flips and flick-able track-listing appears - tracks are selectable
- touch video - grid of sample videos appear, again flick-able, zooming to fill area currently broken - well it zooms in but zooming out doesn't, so I've it disabled
- touch arrow at top of screen - quick access area appears - can put status here, at the moment has quit button.

suggestions criticisms please form an orderly queue
now where did I leave my flame retardant suit....

-Coley.

and why would we flame you for doing awesome stuff? :)
Linuxmce - Where everyone is never wrong, but we are always behind xbmc in the media / ui department.

rperre

screenshots, video, youtube, anything?

Great work,

Richard
My setup at: [url="http://wiki.linuxmce.com/index.php/User:Rperre"]http://wiki.linuxmce.com/index.php/User:Rperre[/url]

coley

Thom - sorry to hear about your N900 being nicked, not nice!!

will try and get screenshots, though screencast would be better, tried one already but it wasn't smooth at all.

-Coley.
~ 12.04 Alpha: [url="http://linuxmce.iptp.org/snapshots"]http://linuxmce.iptp.org/snapshots[/url]
~ 10.04 Final: [url="http://linuxmce.iptp.org/release/LinuxMCE-1004-final.iso"]http://linuxmce.iptp.org/release/LinuxMCE-1004-final.iso[/url]
~ My setup: [url="http://wiki.linuxmce.org/index.php/User:Coley"]http://wiki.linuxmce.org/index.php/User:Coley[/url]

Marie.O

Installed it on my n900 - only shows a black screen
If I helped you, feel free to buy me a coffee: [url="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2VKASZLTJH7ES"]https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2VKASZLTJH7ES[/url]