Signals and Slots in Qt | Qt QML Tutorial #3 | Scythe Studio

Поделиться
HTML-код
  • Опубликовано: 14 окт 2024

Комментарии • 25

  • @MiiDev69
    @MiiDev69 Год назад +4

    This is amazing. I love the super realistic internet explorer example! I was laughing while learning!!

    • @scythe-studio
      @scythe-studio  Год назад

      ScytheStudio entertains and educates 😄

  • @hasansalihoglu5581
    @hasansalihoglu5581 11 месяцев назад +1

    The only source that explains QML sign language with QT 6. Great, I'm very happy to have found this, thank you.

  • @chemdimon
    @chemdimon 21 день назад

    thanks for information!

  • @johannesgreiner2690
    @johannesgreiner2690 5 месяцев назад

    Great, I like it how you have demonstrated the Qt signal/slot mechanism over a small set of classes. Did not fully understand the qOverload template thing, but hope to figure it out through Qt documentation..

  • @brzico
    @brzico Год назад +1

    This is gold! Thanks for great series. ❤

  • @RupamitaSarkar
    @RupamitaSarkar 3 месяца назад

    hi, how can I invoke the connect method from C++ if my MainWindow is derived from QMainWindow and not from QObject

  • @piotrjaga6929
    @piotrjaga6929 7 месяцев назад

    "We need to slow down the internet exploler" I am dead XDD

  • @bluehornet6752
    @bluehornet6752 Год назад +1

    Nice tip, that qOverload() bit. I had forgotten about that!

  • @drjovan3344
    @drjovan3344 Год назад +2

    I have a problem, I copied your code completely and ran it. It gave me the message in the console "Type in your search phrase" but when I typed it, the program doesnt want to continue. Any tips?

    • @whykozhoma
      @whykozhoma Год назад +1

      I have the same here.
      Seems like the problem is in 03-signals-and-slots/initial/UserInteractor.cpp:15 where it calls s.readline()
      Somehow it blocks and doesn't return. I am on MacBook M2

    • @whykozhoma
      @whykozhoma Год назад +1

      for the sake of quick progress you can just replace with const auto &phrase = QString("my phrase");
      to avoid that readline call. It worked for me.

    • @breadiusloafus5068
      @breadiusloafus5068 8 месяцев назад +1

      You can try Projects -> Run -> Run Setting -> Tick Run in the terminal.
      This is a quite old image I stole from some guy:
      imagizer.imageshack.com/img923/8415/vPJ9Rx.png

    • @artiem6995
      @artiem6995 6 месяцев назад

      QT Applicatin Output window does not accept input. I had to call generated exe file from windows terminal. From the qt Applcation Output you can see the path of generated exe file. But in order to run that exe file, I needed to edit path environment variable by adding path of mingw bin directory because it needs dll files.

    • @johannesgreiner2690
      @johannesgreiner2690 5 месяцев назад +3

      Worked for me with Qt Creator 13.0.0. Have unchecked "use internal terminal" under "Edit --> Preferences --> Terminal" and
      checked "Run in terminal" under "Project --> Build & Run --> Run.

  • @emrecansuster5454
    @emrecansuster5454 Год назад +1

    It's kinda funny when you implement the InternetExplorer's browse function with "Not responding..." text :)

    • @scythe-studio
      @scythe-studio  Год назад

      The other episodes are full of easter eggs as well :D

  • @mateusz4140
    @mateusz4140 3 месяца назад

    very nice Łukasz

  • @trrcs-035rachithkumar5
    @trrcs-035rachithkumar5 Год назад

    Sir how to call signal location to qml maps

  • @pradeepkumarreddykondreddy7048
    @pradeepkumarreddykondreddy7048 11 месяцев назад +2

    You should have explained it with much simpler example rather than explaining it with connecting a chain of signals and slots.