Navigation

    Qt Forum

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

    • UNSOLVED Qt online installer
      General and Desktop • qtinstallerfram • • Mitchell  

      1
      0
      Votes
      1
      Posts
      356
      Views

      No one has replied

    • UNSOLVED Qt Installer Framework: How to check if application already installed?
      Tools • qtinstallerfram • • gusa  

      1
      0
      Votes
      1
      Posts
      640
      Views

      No one has replied

    • How to include to installer MSVC libraries?
      General and Desktop • msvc msvc2013 qtinstallerfram • • Abylay  

      6
      0
      Votes
      6
      Posts
      1669
      Views

      @alex_malyu Very helpful post, thanks!
    • Qt Installer Framework: How to allow only Updates?
      General and Desktop • installer qtifw ifw installer frame qt installer fr qtinstallerfram • • j1elo  

      2
      0
      Votes
      2
      Posts
      2433
      Views

      Solution: Controller.prototype.IntroductionPageCallback = function() { // Installer is "updater" when it is run with "--updater" // or Controller does "installer.setUpdater()" if (installer.isUpdater()) { var widget = gui.currentPageWidget(); // Same as gui.pageById(QInstaller.Introduction); widget.findChild("UpdaterRadioButton").checked = true; // Disable paint events on these widgets, through the QWidget::updatesEnabled property. // I tried with the "visible" property, but it is not enough, because for some reason // that property gets reset under some conditions. For example, if "Next" button is pressed // and no updates are available. widget.findChild("PackageManagerRadioButton").updatesEnabled = false; widget.findChild("UninstallerRadioButton").updatesEnabled = false; } }
    • Qt Installer Framework - local, portable installation
      Tools • installer qtinstallerfram portable • • googie  

      1
      0
      Votes
      1
      Posts
      827
      Views

      No one has replied