Questions tagged [qt5.3]

Version 5.3 of the Qt library, that is a cross-platform application development application and UI framework. Tag this only for the issues with Qt 5.3 not other versions.

Version 5.3 of the Qt library, that is a cross-platform application development application and UI framework.

More information about new features in Qt 5.3 is here

114 questions
0
votes
1 answer

Qt setting an app icon for a windows app .rc file not found

I followed everything described here to set an app icon. Created .rc file / placed it in the same directory where .pro file is. Added the following line to the .rc file IDI_ICON1 ICON DISCARDABLE "myappico.ico" Added the…
Tim Tuffley
  • 605
  • 1
  • 6
  • 20
0
votes
1 answer

QImage, possible to change background of resource image (png/jpg)

Can I change the background of a QImage created from a resource (png, jpg) file? static QPixmap changeBackground(const QString resource, Qt::GlobalColor color) { QImage i(resource); // load png/img i.fill(color); …
Horst Walter
  • 13,663
  • 32
  • 126
  • 228
0
votes
1 answer

QT5.3 How can I add my Qobject to the QQmlEngine and access it's Properties via QML?

I'm starting out with QT5.3, or rather QT in general. Now I basically want to program C/C++ console applications and add a front-end. I created a QT Quick Application and have trouble getting my back-end code to interact with the front-end. What I…
ViGi
  • 140
  • 1
  • 11
0
votes
1 answer

unable to run exe created in Qt 5.3 on different windows machine

I am facing issues to run .exe files created in Qt 5.3 on different windows system. I have included all the .dll files. The issue is that on the latest system with graphics card support the application runs without any issues but on older systems it…
prakashpun
  • 259
  • 4
  • 19
0
votes
1 answer

Load page with QWebPage

I want QWebPage for load html page (because I am in console application and I can't use QWebView). When I do this : bool webview::load(Arguments *args) { QRegularExpression url("^(file|http)://"); QRegularExpression fullPath("^/"); …
Nymeria
  • 267
  • 4
  • 13
0
votes
2 answers

Fully disable Qt main window including menu bar?

I need to temporarily disable the main window, including the menu bar. The main window can be disabled simply using setEnabled(false) however it seems that doesn't disable the menu bar, so the user can still click menu items (which in my case break…
laurent
  • 88,262
  • 77
  • 290
  • 428
-1
votes
1 answer

Call to funtion ambiguous when Compiling QT5.3 on OSX 10.10 Yosmite

I am trying to compile qt5.3 on OSX 10.10. When I run "make" I get the following error: >cd widgets/ && ( test -e Makefile || /Volumes/Untitled/5.3/Src/qtbase/bin/qmake /Volumes/Untitled/5.3/Src/qtbase/src/widgets/widgets.pro -o Makefile ) &&…
San Zhang
  • 155
  • 2
  • 9
-1
votes
3 answers

boost::multi_index_container in QMap

Is it possible to use constructions like QMap< QString, boost::multi_index_container<...> >? On the one hand, we have private: BOOST_COPYABLE_AND_MOVABLE(multi_index_container) in the containers declaration. It should tell us not to put…
Illia Levandovskyi
  • 1,228
  • 1
  • 11
  • 20
-1
votes
1 answer

Error "Unresolved inclusion" while buidling Blackberry app

Trying to build BlackBerry 10 app . Some of its parts already has been done.I have downloaded ECLIPSE indigo, QT5.31, Blackberry SDK. Now i am trying to open it in Eclipse. But getting error : Unresolved inclusion on following lines…
mark
  • 623
  • 3
  • 21
  • 54
1 2 3 4 5 6 7
8