Skip to content
QtWS25 Last Chance
  • 0 Votes
    7 Posts
    3k Views
    sierdzioS
    @mkre said in Android build issues with OpenSSL on 5.0/5.1: @sierdzio Is there a guide for either of these two solutions? Running into this issue now for an APK I'm trying to build for an Android 5.0/5.1 device that uses QNetworkRequest to download files from the internet. Option 2 (workaround) is described in the linkg @kviktor posted, just above your comment. As for compiling Qt statically, look in Qt docs and output of ./configure --help. Please remember license (LGPL, GPL) limitations when compiling statically.
  • How to design this widget?

    Solved General and Desktop pyqt node
    4
    0 Votes
    4 Posts
    1k Views
    mrjjM
    @agoose77 Then a composite widget is the way to go as you have done. Just as a note from other post in case you want inspiration. https://github.com/paceholder/nodeeditor
  • Pireal 2.0.2 - Educational tool for working with RA

    Unsolved Announcements qml pyqt python qt5 database
    1
    0 Votes
    1 Posts
    806 Views
    No one has replied
  • 0 Votes
    9 Posts
    4k Views
    ?
    Hello again, Finally, I found a solution : putting actions when creating tabs. Here is my code : def add_new_tab(self,index,text): new_tab = InterfaceTemplateDialog() self.tabs.addTab(new_tab,text) self.tabs.setTabText(index,text) new_tab.generate_btn.clicked.connect(self.launch) new_tab.run_tranus_btn.clicked.connect(self.run_tranus) new_tab.check_all_btn.clicked.connect(self.check_all) def onChange(self): index = self.tabs.currentIndex() tab_title = self.tabs.tabText(index) tab = self.tabs.currentWidget() if tab_title != "All checked scenarios": scenario = tab_title.split('-')[1] else : scenario ="ALL" return [tab,scenario] def run_tranus(self): tab = self.onChange()[0] scenario = self.onChange()[1] tab.console.append("Beginning of execution of basic TRANUS programs for scenario "+scenario) tab.console.append("Executing loop TRANUS for "+ `tab.spin_box.value()` +" iterations")
  • PyQt5 blurpicker example

    Unsolved Language Bindings pyqt pyqt5 python3 python qtcreator
    5
    0 Votes
    5 Posts
    2k Views
    A
    Thank you! I didnt noticed that. I did correct this mistakes, but still getting the same error:( and empty window :/
  • PyQt5 Events

    Unsolved Language Bindings python python3 pyqt5 pyqt pyqt4
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • Ninja-IDE 3.0 needs more ninjas

    Unsolved Announcements pyqt ninja-ide qml ide python ide
    7
    2 Votes
    7 Posts
    3k Views
    mrjjM
    @gabodev for me it just makes it hard to read and not pretty in any way. Its just a weakness for me. But its old horse. let us not beat it more :) The editor looks so slick so maybe its meant to be :)
  • 0 Votes
    8 Posts
    3k Views
    mrjjM
    @curiosport this is cpp files so you need cpp compiler. Then you would open the qiron.pro and compile it all. It would produce some DLLS in the plugin folder. Those should be copied to the plugin folder in QtCreator. Note: the source is for older Qt 4.6 so it might have compile errors u need to fix if using newer Qt.
  • QtSql Driver Not Loaded (using OSX)

    Unsolved Installation and Deployment pyqt installation mysql
    9
    0 Votes
    9 Posts
    4k Views
    I
    That is what I was thinking regarding the compatibility of the two versions, I will attempt the change and let you know
  • QFileSystemModel setRootPath segfault

    Unsolved General and Desktop pyqt4 pyqt linux
    3
    0 Votes
    3 Posts
    1k Views
    J
    The crash dump only tells me that its a shared memory error, I can't seem to get more detail than that. It seems related to the system clock time (my application lets users change the time), if it has changed that is when the crashing is occuring.
  • 0 Votes
    1 Posts
    7k Views
    No one has replied
  • 0 Votes
    4 Posts
    2k Views
    mariakatosvichM
    its a good tool that allows to evaluate queries written in the language of relational algebra and visualize the result of a particular query. i wish to use it in future some time Thanks Sr.Dev working on kubernetes nfs server setup
  • 0 Votes
    2 Posts
    2k Views
    SGaistS
    Hi, PyQt is a library providing python Qt bindings for python, that means you can write python application with e.g. Qt GUI. QtScript is a (now deprecated) official module from Qt providing javascript style scripting capabilities that is replaced by the QtQml module. QtLua is a external Qt module written to provide Lua scripting capabilities to Qt applications. Hope it helps
  • 0 Votes
    3 Posts
    3k Views
    T
    How can i create my signal for text edit with python3 ? With as many ways i tried, but I did not succeed .. :(
  • 0 Votes
    1 Posts
    2k Views
    No one has replied
  • PYQT and Displaying JPG

    General and Desktop jpg jpeg pyqt
    3
    0 Votes
    3 Posts
    2k Views
    Z
    app = QApplication(sys.argv) # in case qt can`t find image fomat plugins for jpeg app.addLibraryPath(os.path.join(os.environ['QT5DIR'], "plugins"))
  • 0 Votes
    1 Posts
    878 Views
    No one has replied
  • PyQt onClick page navigation

    General and Desktop pyqt
    2
    0 Votes
    2 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, QStackedWidget/Layout comes to mind for that kind of task, but you will need to do some coding anyway
  • 0 Votes
    1 Posts
    1k Views
    No one has replied
  • 0 Votes
    4 Posts
    4k Views
    safnaS
    @Tomasz-Ciesla said in is there an easy way to view GUI created in Qt Designer - pyqt via web browser?: Recently I've developed a control application on BeagleBone (similar to RaspberryPi). I'm controlling it remotely using TCP slot and client application with GUI wrote in Qt designer - pyqt. Now I want to do a step forward and replace the TCP slot with web app, so the hardware connected to the BeagleBone will be controlled via browser. It should be a simple app like wireless router configuration. My question: is there a simple way to publish QT designer - pyqt application into web? All I want is to have a possibility to make GUI quickly and easly and then access it via www. Yes, there are ways to publish a PyQt application as a web app to provide browser-based access to your GUI. One approach is to use a technology called PyQtWebEngine, which allows you to embed a web browser component within a PyQt application and display HTML content. Here's a general outline of the steps involved: Design your GUI using PyQt and Qt Designer as you would for a desktop application. Integrate PyQtWebEngine into your application. PyQtWebEngine provides a bridge between the PyQt framework and the underlying browser engine (Chromium). It allows you to load and display web content within a PyQt application. Create the web pages or web app interface using HTML, CSS, and JavaScript. You can design the UI using web technologies and incorporate interactivity and functionality as needed. Use PyQtWebEngine to load your HTML content within the PyQt application. You can load the web pages directly from local files or host them on a web server. Set up the necessary server infrastructure to handle communication between the web app and your BeagleBone device. This may involve implementing a server component that communicates with the BeagleBone over a network protocol such as TCP or WebSocket. Access the web app by running your PyQt application and opening the browser window. Users can then interact with the GUI via the web interface, controlling the BeagleBone remotely. Keep in mind that deploying a web app using PyQtWebEngine may have certain limitations and dependencies, and it may not be as straightforward as deploying a traditional web application. Additionally, you may need to consider security measures, such as authentication and encryption, to protect the communication between the web app and the BeagleBone device.