c++ - How can one have smartphone/tablet -like GUI on a Raspberry Pi? -
i'm planning of developing application run on raspberry pi 2 equipped touch-screen, , should have , feel of smartphone/tablet application.
this means list views , other scrollable widgets should scroll via touch gestures, , not clicking on narrow scroll-bars on side. also, simulation of momentum (widget scrolls little while longer, gradually lower speed, if scrolled fast enough , let go of screen) should applied scrollable items.
i prefer develop in c++, , i'm used qt, preferable well.
however, qt widgets designed pc in mind, don't scroll hand gestures , have no simulation of momentum.
of course, derive own classes qt classes , implement these features myself, simpler if such gui classes existed.
you can use qml build gui if want mobile. here , here have how integrate qml c++ objects, can implement logic c++. in qml can use tableview can scroll via touch table.
Comments
Post a Comment