Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. desktop
    Log in to post

    • UNSOLVED Hiring C++/Qt GUI developer to work on Qt based desktop software internationalization
      Jobs • qml c++ gui desktop globalization • • Xiaoli  

      4
      0
      Votes
      4
      Posts
      247
      Views

      https://www.linkedin.com/in/sujan-d-6a980151/ This is my Linked In profile. Let me know if visa sponsor is available with you ? I am interested but I am Indian, if you sponsor me work visa, I will be able to move.
    • UNSOLVED Deploying a QML widget embedded in a QQuickWidget in Windows
      Installation and Deployment • qml windows desktop deployment qquickwidget • • JDePedro  

      2
      0
      Votes
      2
      Posts
      85
      Views

      @JDePedro Ok. I found the cause why I was not getting anything QML related from the tool. My widget is not in the exe file but in a DLL so I had to specify the dll instead. But the list of files the tool is getting is huge compared with the one I got by doing the process "manually" and includes most of the .qml files. So my doubt is, do we need to deploy all this files with my application? is not enough with the dlls???
    • SOLVED Custom behavior for QSlider - tips/hints needed
      General and Desktop • desktop qslider mouse events • • MasterBLB  

      14
      0
      Votes
      14
      Posts
      864
      Views

      Thank you @JKSH .
    • SOLVED Enumerate application profiles using QSettings
      General and Desktop • desktop qsettings configuration • • Anton Pleskanovskyy  

      5
      0
      Votes
      5
      Posts
      435
      Views

      @jsulm you are right! I guess that is my case List files in sub-directories with QDir's filter
    • SOLVED Subscriptions in MQTT
      General and Desktop • qtquick desktop mingw mqtt • • Pamast  

      6
      0
      Votes
      6
      Posts
      743
      Views

      Glad you found out and thanks for sharing !
    • SOLVED what is the correct way to implement a Database class in a application
      General and Desktop • qt5.5 database desktop sqlite • • realhamidrezakp  

      10
      0
      Votes
      10
      Posts
      839
      Views

      What do you mean by modify the model ? i mean updating model , like a search window that needs to update model every time user change input. You can see how to handle QtSQL models and views in the QtSQL modules examples. i saw it, and figure out some of examples. but i need to read more about MVC in qt. thanks you.
    • SOLVED How to use Qt classes defined accross multiple files?
      General and Desktop • desktop qmainwindow qmenu gui developer • • MakingTheEight  

      8
      0
      Votes
      8
      Posts
      704
      Views

      @jsulm @mrjj @ig Thanks for all the help. I was able to fix the inheritance issue by creating a new FileMenu instance in the main window.
    • SOLVED Problems with providing arguments to QProcess
      General and Desktop • qprocess desktop qt4 qstringlist • • Thanos  

      6
      0
      Votes
      6
      Posts
      2775
      Views

      @Thanos thanks for your feedback. So please mark this topic as SOLVED now.
    • UNSOLVED FlowLayout uses too much height
      General and Desktop • desktop mingw32 flow • • JoeAB  

      1
      0
      Votes
      1
      Posts
      235
      Views

      No one has replied

    • SOLVED Problem facing with QT serial port module
      General and Desktop • desktop serial port qt5.9.1 • • Dhani  

      3
      0
      Votes
      3
      Posts
      1235
      Views

      Thanks for your feedback. I have identified that the problem is due to the EDBG chip (usb-serial bridge) which requires DTR signal to enable the serial port RXD and TXD pins. Including the line of code "serial->setDataTerminalReady(true);" after opening the serial port, the serial port application is now working fine. I guess this is automatically carried out on hyper-terminal software and tera-term software. Whether the communication uses the flow control or not,some of the hardware bridge requires the flow control signals to be set for the first time after power ON.
    • SOLVED How to create a task in windows task scheduler using QT?
      General and Desktop • c++ windows desktop • • Tusharh  

      3
      0
      Votes
      3
      Posts
      2149
      Views

      @mrjj Thanks, used Schtasks.exe to create task & to run it as admin used shellexecute with verb "runas".
    • SOLVED How to get USER ACCOUNT ID in windows?
      General and Desktop • windows desktop account • • Tusharh  

      3
      0
      Votes
      3
      Posts
      859
      Views

      @matobodo Thanks! The links helped. Get process id from GetCurrentProcessID() & ProcessIdToSessionId() gives you session id by inputting process id. #include<windows.h> to access these methods.
    • UNSOLVED How Best to Prevent Focus Leaving a Widget?
      General and Desktop • qt 5.7 desktop • • GBWarren  

      4
      0
      Votes
      4
      Posts
      1906
      Views

      You could go and set all other widgets to disabled void QWidget::setDisabled(bool disable) convenient enough, if you have a good Layouttree
    • UNSOLVED Upload large files HTTP request, without increasing the application memory.
      General and Desktop • c++ desktop http qnetworkrequest upload • • Tusharh  

      9
      0
      Votes
      9
      Posts
      3944
      Views

      @raven-worx Yes, this is the code. I also did separate new code QNAM()->PUT(request,QFile*) & QNAM()->POST(request,QFile*) on my QT 5.4.1 setup. Everytime after executing the request application memory goes on increasing till it is equivalent to given file size(here I used 1GB file & memory increased by 1GB).
    • UNSOLVED Modal from a modal (Mac)
      General and Desktop • desktop mac dialog modal dialog • • KevinD  

      5
      0
      Votes
      5
      Posts
      3162
      Views

      @KevinD said in Modal from a modal (Mac): Hi, Don't use these two: box.setModal(true); box.setWindowFlags(box.windowFlags() | Qt::Popup); You're calling QDialog::exec which is for modal-only dialogs, and Qt::Popup isn't for dialogs, leave the window flags be. If you prepare a MWE (the download-and-build type) I can test on Linux (I have no Mac, sorry). Also you might consider filing a bug report if everything else fails. Kind regards.
    • SOLVED Best way to create new window (QWidget) and interactions between QWidgets
      General and Desktop • qwidget desktop qt4 slot connect slot • • vitorfhcosta  

      4
      0
      Votes
      4
      Posts
      2856
      Views

      difference between exec() and show(), Only QDialog have exec() Qwidgets have show. When you call show on a Dialog, it becomes visible but do not wait for input. example mainw::func() { MyDialog *dia=new MyDialog(this); dia->show(); int a=0; // this code is run the moment dialog is shown on screen, } using exec() mainw::func() { MyDialog dia; dia.exec(); int a=0; // this code is run only after dialog is dismissed. } The version of dialog where u call show() could be called floating so when user click ok it should emit signal that something should happen. ( to maiwindow ) The exec() version will report back the result ok/cancel/closed at once. learn when to use QObject, QWidget, QFrame QWidget is often used if making own widget. QFrame is used if you just need something to draw a frame. If you use Designer you can check out the Widgets that are available. QDialog is useful for any type of windows that pop ups up or open via a menu. I have to set anything inside Register. Yes, Register should be able to give the data back. the widgets inside are private so you need a function to return the data. You might also need to call http://doc.qt.io/qt-5/qdialog.html#accept in your Register buttons clicked slot.
    • UNSOLVED Libraries for Desktop and Android
      Mobile and Embedded • android cross compile desktop cross platform gamekit • • Ferni  

      1
      0
      Votes
      1
      Posts
      477
      Views

      No one has replied

    • Qt gives me an error when application is launched in Desktop compilation in qt 5.7.0
      General and Desktop • desktop qt5.7 webengine qt5 chromium ssl failed • • AmazingQt  

      1
      0
      Votes
      1
      Posts
      502
      Views

      No one has replied

    • UNSOLVED App runs on both Android and desktop, but something is not working on Android...
      General and Desktop • android desktop map qt5.7 • • eiriham  

      1
      0
      Votes
      1
      Posts
      469
      Views

      No one has replied

    • SOLVED Why Qt version recognize as for desktop? not for embedded linux?
      Tools • desktop embedded creator yocto version • • rickY79  

      7
      0
      Votes
      7
      Posts
      1342
      Views

      @jsulm Ok, i will makes progress goes on. Thank you very much. Best Regards.
    • UNSOLVED Can a Qt 5.6 Desktop app (msvc 2015) use WinRT libraries (C++/CX)?
      General and Desktop • visual studio desktop windows 10 winrt c++cx • • Simurr  

      2
      0
      Votes
      2
      Posts
      1438
      Views

      @Simurr Hi, I am not sure whether WiFi Direct is among the supported APIs which can be co-used for classic apps. But usually you need to take care of a couple of things. Most promintently you will need to link against runtimeobject.lib to find Activation symbols. I just pushed a change for positioning to showcase, how a "generic" porting from WinRT to classic apps can work. See https://codereview.qt-project.org/#/c/159330/ for some details.
    • UNSOLVED Restart application with session
      General and Desktop • desktop restart session manager • • Matthias.Meulien  

      1
      0
      Votes
      1
      Posts
      419
      Views

      No one has replied

    • UNSOLVED QToolbar on OSX: no hover effect
      General and Desktop • desktop os x qtoolbar icon qaction • • Xanx  

      5
      0
      Votes
      5
      Posts
      1635
      Views

      Please have some patience, this forum is community driven and not all users live in the same timezone as you. The picture you are linking to doesn't show a hovered button but a checked button. You will have that visual effect if you set the checkable property of the action to corresponding to the button as true and you check it.
    • SOLVED Does Qt5 have a framework for logging user actions?
      General and Desktop • windows qt5.4 desktop framework logging • • Jakob  

      5
      0
      Votes
      5
      Posts
      1931
      Views

      Since the obvious answer to the question is a resounding 'no', I'll mark this question as 'solved', although I'll still have to think about a way to achieve what we want in the most convenient way.
    • UNSOLVED QOpenGLContext window flickers on resize
      General and Desktop • opengl desktop qopenglfunction flickering • • Row_Rebel  

      1
      0
      Votes
      1
      Posts
      709
      Views

      No one has replied

    • SOLVED [SOLVED] Put application on notification bar.
      General and Desktop • desktop application notification bar • • vibolvireak  

      12
      0
      Votes
      12
      Posts
      3393
      Views

      @mcosta Thank you it all finally working fine :)
    • [Solved] cross-compiling to pandaboard ES
      Mobile and Embedded • cross compile desktop deploying pandaboard • • m4kas  

      23
      0
      Votes
      23
      Posts
      5496
      Views

      Yes i already did it. Thanks!
    • UNSOLVED GUI does not update when standard C++ file operation takes place
      General and Desktop • qwidget desktop update qprogressbar • • kzarog  

      7
      0
      Votes
      7
      Posts
      2429
      Views

      Thank you for your answers, I will look into both QThread and QtConcurrent.
    • UNSOLVED Ui rendering fails
      General and Desktop • linux qt quick desktop • • Jan Roorda  

      1
      0
      Votes
      1
      Posts
      510
      Views

      No one has replied

    • Weird crashes in multi-threaded application
      General and Desktop • desktop crash qt application qt5.5.0 multi-thread • • Moonlight-Angel  

      5
      0
      Votes
      5
      Posts
      3352
      Views

      Here's an example of the errors I got. http://hastebin.com/qalutirici.coffee This seems like a false positive or something that isn't in my code (maybe I'm wrong). In each error I got, the "at" is pointing to a function that isn't part of my code.
    • BOOST link problem related to the migration of Qt4 to Qt5 using MinGW on Windows
      General and Desktop • qt5.5 desktop mingw32 linker errors windows7 boost migration • • Claude  

      11
      0
      Votes
      11
      Posts
      4582
      Views

      For b, check whether the library has other dependencies. You might be missing one.
    • Can't drag or add any widgets onto mainwindow.ui in design mode
      Tools • linux qt creator desktop widgets mint 17.2 • • mike  

      1
      1
      Votes
      1
      Posts
      663
      Views

      No one has replied

    • Some issues about Qt programming in building MySQL driver
      General and Desktop • mysql desktop • • Berlloon  

      6
      0
      Votes
      6
      Posts
      1289
      Views

      Not the most clean solution, you are downgrading Qt to a series that has seen its last release a few month ago.
    • show confirmation message and block screen before leave(close or loose focus) main window[SOLVED]
      General and Desktop • desktop window • • Giorgi  

      3
      0
      Votes
      3
      Posts
      1698
      Views

      Thank you for reply. I also used this->setWindowFlags(Qt::WindowStaysOnTopHint); and QMainWindow::showFullScreen(); to stay my confirmation message on top. that was my goal.
    • Android control UI on Desktop
      QML and Qt Quick • android desktop style • • dridk2  

      1
      0
      Votes
      1
      Posts
      638
      Views

      No one has replied

    • [SOLVED] Error while trying to add Icon to QPushButton
      General and Desktop • error desktop qpushbutton qicon • • Aram  

      3
      0
      Votes
      3
      Posts
      1319
      Views

      @Aram Its completely ok. Just mark it as SOLVED and all will be happy
    • Is Qt Quick ready for full featured desktop application?
      QML and Qt Quick • desktop • • wqking  

      4
      0
      Votes
      4
      Posts
      4342
      Views

      Thanks all. Now I have confidence with Quick on desktop.
    • Import Qt project for iOS
      General and Desktop • ios desktop mobile • • RDiGuida  

      2
      0
      Votes
      2
      Posts
      896
      Views

      Hi As far as I know, using Desktop widgets in ios is not an option. QML is meant for mobile development and for application where the user interface is not the good old desktop program but more like apps as seen on phone and tablets. It gives far more control over the look and and function (out of the box) than using Widgets. I did not find any books but started with http://doc.qt.io/qt-4.8/gettingstartedqml.html and the found tons of videos on youtube. Also notice that there is a QML group here with tons of people using it and can provide better answer than me as I only fooled around with it some evenings :)
    • Ponto de entrada do procedimento não encontrado
      Portuguese • desktop • • Ticianelli  

      3
      0
      Votes
      3
      Posts
      2457
      Views

      Boa tarde. Consegui resolver o problema fazendo uma nova build, acredito que os arquivos da outra poderiam estar corrompidos de alguma forma. De qualquer forma, obrigado pelo auxilio.