![]() |
2011-04-06
, 12:20
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#92
|
Item { id: delegate signal delegateClicked(int index) width: delegate.ListView.view.width height: 40 Rectangle { id: background anchors.fill: delegate color: "black" opacity: 0.5 // or some other value } Text { id: titleText elide: Text.ElideRight text: name color: "white" font.pixelSize: standardFontSize anchors.fill: delegate horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter } }
![]() |
2011-04-06
, 12:44
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#93
|
i installted the QT Mobility 1.1 and now it works....
i'm confused why the needed packages wasn' installed automatically...
The Following 5 Users Say Thank You to marxian For This Useful Post: | ||
![]() |
2011-04-06
, 14:06
|
Posts: 2,829 |
Thanked: 1,459 times |
Joined on Dec 2009
@ Finland
|
#94
|
I reduced the maximum flick velocity, as the default setting seemed too sensitive to me. I'm open to changing it, based on feedback from users.
Video list items are only as tall as they need to be to accommodate the thumbnail.
This is very subjective, but I prefer the buttons as they are, and this application will be cross platform, so consistency with Symbian is important (it's the largest market for this application).
This is under consideration, and would require that raising the menu be treated the same as raising a dialog (i.e. dim the background). I would then also implement the ability to dismiss the menu by clicking outside of it.
I don't really like the idea of having different actions within each list item. It would be annoying to accidentally click the thumbnail and start playback.
I'm not qualified to offer a technical explanation, but I think this is simply a performance issue with the device (perhaps partly due to lack of vsync). I will be testing on an N8 soon, so it will be interesting to observe any differences in performance. Generally, visual elements are only loaded where necessary (there are a couple of exceptions), so I don't think there is much more I can do to optimise performance. You may have noticed that the lists containing simple delegates are not really affected. It is the busier views that contain more elements that suffer from some slowdown (Video Info view is the worst affected).
I promise this option will remain.
![]() |
2011-04-06
, 14:16
|
Posts: 457 |
Thanked: 600 times |
Joined on Jan 2010
|
#95
|
.edit
Scrolling/animations are slower in portrait than in landscape. Can someone confirm this.
![]() |
2011-04-06
, 14:18
|
Posts: 291 |
Thanked: 398 times |
Joined on Jan 2011
@ USA
|
#96
|
function toggleMenu() { /* Toggle the state of the menu */ if (menuLoader.source == "") { menuLoader.source = "MenuList.qml"; menuTimer.running = true; ------->added } else { menuLoader.item.state = ""; menuTimer.running = true; } }
Timer { id: menuTimer interval: 600 --------> change to 3000 onTriggered: menuLoader.source = "" }
The Following User Says Thank You to khuong For This Useful Post: | ||
![]() |
2011-04-06
, 14:31
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#98
|
Hmm. Not sure what that means, but scrolling speed should be in par with velocity speed of flick. Not just constant speed scrolling. Or letīs say that it should be possible to scroll tiny-winy faster or accelerate scrollingActually.. any link for all variables that control flick scrolling speed. (drag distance, drag velocity, drag+drag->more speed, possibility to give more and more speed to list scrolling)
The Following User Says Thank You to marxian For This Useful Post: | ||
![]() |
2011-04-06
, 14:34
|
|
Posts: 2,448 |
Thanked: 9,523 times |
Joined on Aug 2010
@ Wigan, UK
|
#99
|
Marxian, please add this auto-rectract thing to the next version...it won't take long to change...only like 6 files....Thanks!
![]() |
2011-04-06
, 14:56
|
Posts: 86 |
Thanked: 54 times |
Joined on Mar 2010
|
#100
|
![]() |
Tags |
cutetube, marxian = god, marxian legend, son of a gun, son of douche, son of fail, son of god, youtube |
|
For example making menu popup window more consistent with settings window (transparent black background). We can simply reverse the color by edit file MenuDelegate.qml