Navigation

    Qt Forum

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

    • UNSOLVED Qt Webassembly number of screens
      Qt for WebAssembly • webassembly screen monitor • • AliGB  

      1
      0
      Votes
      1
      Posts
      65
      Views

      No one has replied

    • UNSOLVED QGuiApplication::screens() problem
      General and Desktop • linux screen qguiapplication • • 0...-5  

      12
      0
      Votes
      12
      Posts
      1904
      Views

      @Kent-Dorfman I'm sorry, but I steel don't get it...I have two physical monitors each of which is 1280x1024px. If they span into one display I should get a screen with 1280x2048 resolution, shouldn't I? But my screens list contains one an entity with {0, 1024, 1280, 1024} rect for available geometry. I can test what returns availableVirtualGeometry method tomorrow in the office, but no matter it does I can't find a way to render a GUI on the second physical monitor properly.
    • SOLVED change ApplicationWindow size on Android
      Mobile and Embedded • android window screen • • morte  

      5
      0
      Votes
      5
      Posts
      416
      Views

      @morte ApplicationWindow { Item { id: banner x: 0; y: 0 width: parent width; height: 50 } Item { id: content width: parent.width anchors { top: banner.bottom bottom: parent.bottom } } }
    • UNSOLVED Screens Info
      QML and Qt Quick • screen qguiapplication • • Alessio V.  

      4
      0
      Votes
      4
      Posts
      795
      Views

      Do you have that error on both platforms ? By the way, can post a minimal sample code that shows this behaviour ?
    • SOLVED Android first Activity
      Mobile and Embedded • android qt 5.7 screen start android 6 • • romsharkov  

      4
      0
      Votes
      4
      Posts
      1625
      Views

      @romsharkov You may use a custom theme to turn off the ActionBar. Example: quickandroid/apptheme.xml at master · benlau/quickandroid quickandroid/AndroidManifest.xml at master · benlau/quickandroid Document: Complete Guide to Making a Splash Screen for your QML Android Application — Medium
    • UNSOLVED Scalability on different screens resolution, wrong DPI
      QML and Qt Quick • scaling resolution screen devices • • AllanE  

      3
      0
      Votes
      3
      Posts
      1598
      Views

      I have been looking into this myself, with no conclusive information on how to reliably accomplish this. It feels like Qt 5.6 ought to automagically do the scaling for you; I intend to post a new question in this forum asking about this. In the meanwhile, the first part of this video will be of interest to you: https://youtu.be/nNyhsdX6BsI?t=6m24s There is code at 06:24 that extracts the dpi value from the Android framework. Maybe that will work better, I have not tried it myself.
    • UNSOLVED blit_setup(): Screen depth 32 not supported!
      Mobile and Embedded • linux screen qt4.8.5 arm embedded pr • • Anas_Deshmukh  

      2
      0
      Votes
      2
      Posts
      1762
      Views

      Issue resolved by configuring qt4.8.6 with configure option as follow :: sudo ./configure -prefix /usr/QT4.8.6 -opensource -embedded arm -depths all -xplatform qws/linux-imx6-g++ -release -shared -fast -pch -no-qt3support -qt-sql-sqlite -qt-libmng -qt-libjpeg -qt-zlib -qt-libpng -qt-freetype -no-openssl -nomake examples -nomake demos -nomake tools -optimized-qmake -no-phonon -no-nis -no-opengl -no-cups -no-xcursor -no-xfixes -no-xrandr -no-xrender -no-xkb -no-sm -no-xinerama -no-xshape -no-separate-debug-info -no-qvfb -qt-gfx-linuxfb -no-gfx-qvfb -no-kbd-qvfb -no-mouse-qvfb-qt-kbd-usb -confirm-license -svg -webkit -javascript-jit -script -scripttools -declarative -declarative-debug -multimedia -exceptions -xmlpatterns -plugin-mouse-tslib -qt-mouse-tslib -qt-freetype -qt-gfx-linuxfb -qt-kbd-tty -qt-kbd-linuxinput -qt-mouse-linuxinput option -depth all :: fix the issue
    • Macosx QWarning "Attempt to set a screen on a child window."
      General and Desktop • window mainwindow macosx screen child • • mmirsky  

      2
      0
      Votes
      2
      Posts
      2236
      Views

      Compiled and rebuilt with Qt5.5.0 (beta). Unfortunately, the problem persists.
    • make layout suitable for any smartphone screen
      Mobile and Embedded • android user interface androidqt screen • • Endar  

      1
      0
      Votes
      1
      Posts
      461
      Views

      No one has replied

    • How can I draw on a screen (ultimately a beaglrbone black lcd touchscreen) without showing a window with a border and all that other stuff ?
      General and Desktop • windows screen • • QT_VW_Rider  

      2
      0
      Votes
      2
      Posts
      567
      Views

      Hi and welcome to devnet, Do you mean showing a fullscreen widget or just a decoration-less widget ?
    • How to print Qdate value on screen
      General and Desktop • string screen qdate stdout • • RDiGuida  

      3
      0
      Votes
      3
      Posts
      3619
      Views

      @RDiGuida To add to @Mario84's answer, QString is Qt based class and your using standard c++ API's to print it which it doesnot understand. To print values of pure Qt based API's you can use qDebug(). Eg: QString dt ((dates[0]).toString()); qDebug() << dt;