Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Qt's signal-driven design is simulation of signal of UNIX?
QtWS25 Last Chance

Qt's signal-driven design is simulation of signal of UNIX?

Scheduled Pinned Locked Moved Solved General and Desktop
4 Posts 2 Posters 786 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #1

    Hi guys.

    I am using PyQt5 in the my develop project. I have a question on that project design. I need event-driven in my project for the multi window system. But, Qt is a signal-driven. So, I fixed event-driven to signal-driven on my project for the simple design.
    Qt's signal-driven is a real signal? That is a simulation of signal of UNIX for the software design? That is able of communication of process to process?
    Do not I have to worry too much to the multi driven on design?

    Thanks.

    1 Reply Last reply
    0
    • ? Offline
      ? Offline
      A Former User
      wrote on last edited by
      #2

      Qt is event-driven? "signal" and "slot" is a I/F of event-driven?

      1 Reply Last reply
      0
      • mrjjM Offline
        mrjjM Offline
        mrjj
        Lifetime Qt Champion
        wrote on last edited by mrjj
        #3

        Hi
        Signals are still just messages put on an event queue and executed.
        When you use connect, you can ask it to use Queued connect and then
        it works between threads.

        http://doc.qt.io/qt-5/signalsandslots.html

        yes Qt is event driven.

        1 Reply Last reply
        1
        • ? Offline
          ? Offline
          A Former User
          wrote on last edited by
          #4

          Hi mrjj. Thanks to response.
          I understood it by your answer. Thank you.

          1 Reply Last reply
          1

          • Login

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • Users
          • Groups
          • Search
          • Get Qt Extensions
          • Unsolved