Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I was searching for a open software project (medium or large scale) that uses QML and could be taken as an example of QML/QtQuick usage in practice. There are indeed a lot of small examples that come with the documentation but are there any actively developed projects?
Plasma Media Center and Qt Media Hub are the two I could find but they seem a little dated or not really maintained (I may be wrong here)
Search github.
There is an open source desktop environement that is mostly in Qml and is actively developed :
https://github.com/hawaii-desktop
There is also SDDM which is a smaller project :
https://github.com/sddm/sddm
Finally you could check out : qml-material which implements Google's material UI as QML modules.
https://github.com/papyros/qml-material
Edit :
For generically searching the most trending QML projects on GitHub :
https://github.com/trending/qml
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am following a tutorial found here:
http://stevenbooks.com/2012/09/28/jquery-datetime-mobile-picker/
however when it comes to adding the iPhone like scroll wheels for selecting date/time the suggested "mobiscroll" has a hefty license fee.
http://mobiscroll.com/
I was hoping someone new of an opensource alternative that would offer similar functionality.
it is primarily for aesthetics as this date/time picker is intended to be accessed primarily across mobile devices.
The core of mobiscroll is open source, as per their FAQ page. Looking on the code their, it looks pretty complete.
The mobiscroll core is open source, and you can build your own custom
scrollers with it. The easiest way to get started with mobiscroll
development is through our GitHub page.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I need to visualize 3D models consisting of ~100.000 triangles in a Qt application. Colors, zoom in/out and rotation are required. The solution must work under Linux and Windows.
Should I use OpenGL directly or would you recommend using a certain library? There are game engines (ClanLib,...), but I'm not sure if they are appropriate at all. A good point to start would be appreciated.
You should consider the QtOpenGL module that comes with Qt. Take a look at the provided examples and look on YouTube for Qt OpenGL to find a few screencasts.
In Qt 4.8 that was just released a few days ago, QtOpenGL added support for multi-threading.
You can use OpenGL calls directly in a QGLWidget, so don't think that you may be constrained by Qt's OpenGL support.
You can do this yourself in QtOpenGL but you might find using a scenegraph is easier.
Open scenegraph plays nicely with Qt
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Could someone share list of active and popular open source Rich Internet Applications or desktop application (not library or framework) that are built by Adobe AIR/Flex? The popularity and quality I am looking for are something like Azureus/Vuze (Java), XBMC etc. Can't find good example from http://www.riaforge.org.
Thanks.
Check out sourceforge too: http://sourceforge.net/search/?q=adobe+air
Make sure, you will have also a look at GitHub:
https://github.com/search?langOverride=&q=Flex&repo=&start_value=1&type=Repositories
Not sure what you are looking for exactly, but you might want to check out Tour de Flex which has a bunch of great quick examples http://www.adobe.com/devnet/flex/tourdeflex.html that offer a great primer. I also always find myself visiting http://blog.flexexamples.com/ , which offers a large variety of source. Outside of that site, flash/flex has a bunch of other flex evangelist that also have some pretty comprehensive sites.
Hope that helps.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
What are some good Qt related blogs/forums/sites to follow so one can learn more about developing with Qt?
Also maybe some good (in terms of user interface richness) opensource apps that one can read the source code and learn from them.
Qt Developer Network Forum
PlanetQt
Try this too.
Qt-articles
I just wanted to mention for the french speaking community :
qtfr
and the qt subdomain of developpez :
qt.developpez
Also http://www.qtcentre.org/content/ and its wiki may be usable
Qt forum is another option.
http://qt-apps.org/ has a number of open source applications-source generally one of the download options.
http://planetkde.org/ is a kde blog aggregator but there is occasionaly some qt-only stuff.
I enjoy this one too.
http://ariya.blogspot.com/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to take any Text sting and form from it text formed by particles in actionscript 3 (In flash \ flex) I see I need some lib for this. but all libs Ive seen do not have such functionalyty by default...
So I want to get something like this
So Is there any sych lib? or way of doing it with some lib?
It should be Free and Opensource (any license like GPL, LGPL etc will be ok).
There's a method for doing this described here:
http://blog.soulwire.co.uk/laboratory/flash/as3-alphabet-particles
There are some other ready-made components here:
http://www.flashcomponents.net/component/advanced_text_particles.html
http://www.blogaboutflash.com/2008/08/using-particles-to-fill-dynamic-content.html
... but they might be less useful to you than the first link.
Hope this helps.