Qt Weekly #1: Categorized Logging
Categorized logging allows you to structure your logging statements into categories, and to conveniently configure logging for individual categories in a central place. The feature is part of Qt 5.2,...
View ArticleQt Weekly #2: Localizing Qt Quick Apps
Most people feel more comfortable using applications in their native language. To attract as many users as possible for your apps, you should localize the apps to the languages spoken by the users in...
View ArticleQt Weekly #3: Qt for Android – Tips and Tricks
The Qt installation packages contain Qt for Android libraries and useful tools for developing Qt apps for Android devices. However, you will need to install the Android NDK and SDK, and some other...
View ArticleQt Weekly #4: Benchmarking Code
Qt provides several built-in ways to benchmark the runtime costs of code. Let’s have a quick glance at the most common ones. There comes a time in every non-trivial application when performance starts...
View ArticleQt Weekly #6: Sorting and filtering a TableView
The QtQuick Controls TableView offers a variety of ways to provide data. Supported data model types include the traditional QAbstractItemModel derivative models, QObjectList, JS arrays, and even plain...
View ArticleQt Weekly #10: Creating Server-side, Cross-Platform and N-Screen Todo...
Today, many applications can be used with native desktop operating systems accompanied with mobile optimized applications and web browser based clients. Qt Cloud Services makes it possible for you to...
View ArticleQt Weekly #13: QStringLiteral
QStringLiteral is a macro that allows you to create QString objects from string literals with little to no runtime overhead. However, its usage can be tricky especially in code that must compile with...
View ArticleQt Weekly #14 Testing Accessibility on OS X
When talking about accessibility, the question of how blind people interact with computers often comes up. This article will explain the basics and take OS X as an example to let you test an...
View Article