By James Martin The story of Google Glass is about more than a company and a product. It’s about the people who believed in what Glass could do.
Monthly Archives: May 2015
This Man Cannot Be Allowed to Decide the Fate of the Patriot Act
Senate Majority Leader Mitch McConnell has …
Jony Ive Is Becoming Apple’s Chief Design Officer
Jony Ive, Apple’s inspirational designer, is assuming a new position as Chief Design Officer at the company. The move will see him retain control over industrial design and user interface divisions at Apple, but with a step back from day-to-day operations.
…
Jony Ive Is Becoming Apple’s Chief Design Officer
Jony Ive, Apple’s inspirational designer, is assuming a new position as Chief Design Officer at the company. The move will see him retain control over industrial design and user interface divisions at Apple, but with a step back from day-to-day operations.
…
Jony Ive Is Becoming Apple’s Chief Design Officer
Jony Ive, Apple’s inspirational designer, is assuming a new position as Chief Design Officer at the company. The move will see him retain control over industrial design and user interface divisions at Apple, but with a step back from day-to-day operations.
…
Don’t Spy on Me: Senate Pushes Obama’s PATRIOT Act Renewal Bid to the Brink
By Jason Mick After hundreds of billions of dollars spent and no quantifiable gains, Orwellian homeland surveillance project may get the ax …read more
Don’t Spy on Me: Senate Pushes Obama’s PATRIOT Act Renewal Bid to the Brink
By Jason Mick After hundreds of billions of dollars spent and no quantifiable gains, Orwellian homeland surveillance project may get the ax …read more
Don’t Spy on Me: Senate Pushes Obama’s PATRIOT Act Renewal Bid to the Brink
By Jason Mick After hundreds of billions of dollars spent and no quantifiable gains, Orwellian homeland surveillance project may get the ax …read more
20 Images of Atomic Age Infrastructure
How to deal with dynamically created QQuickItem’s
Today I’d like to share some knowledge in form of small Qt C++/QML mixed project
The project is about chess game. Since its created for demonstration purposes, there is no battle mode, no AI and pieces moves checking missing some features such as en-passant etc
Code located here: ChessQML
Actually, inter-operate between C++ code and QML code in Qt framework pretty easy, however, there is few tips’n’tricks. For example: Make sure your objects’s pointer, created at C++ side and then passed to QML have to register its ownership to QML engine as C++ ownership:
QQmlEngine::setObjectOwnership(obj_ptr, QQmlEngine::CppOwnership);
This makes sense only for QObject’s derived classes
Please, leave your comments