MontyTheSoftwareEngineer
MontyTheSoftwareEngineer
  • 19
  • 263 685
Testing GitHub Copilot in Qt Creator!
Showing how powerful this included plugin/tool can be within Qt!
Installation/Setup instructions:
doc.qt.io/qtcreator/creator-copilot.html
How to use C++ within QML:
ua-cam.com/video/ragZPvRe6Pk/v-deo.html
Переглядів: 1 678

Відео

QML Property Binding Mistake and Fix!
Переглядів 5104 місяці тому
In this video we go over: What a basic QML Property Binding is, a common mistake when using property bindings, how to detect the mistake and how to re-establish the property binding!
Drone Flight Planner Demo. Source in Description!
Переглядів 9889 місяців тому
Demo of a random application I made. Unfortunately didn't make a tutorial video on my channel, but I have all the source code available online. Some key concepts in the application: QAbstractListModel QML Map Plugin Dynamic Waypoints on QML Map Using C Model Dynamic route creation between waypoints Saving/Retrieving drone and map data Let me know in the comments if you want me to make a video o...
Demo Qt/QML Running on Steam Deck!
Переглядів 2,8 тис.Рік тому
Demo Qt/QML Running on Steam Deck!
Part 2: Let's Recreate the Tesla UI in Qt and QML
Переглядів 18 тис.2 роки тому
Part 2 of recreating Tesla Infotainment UI in Qt/QML! I recommend checking part 1 beforehand if you haven't already!
Let's Recreate the Tesla UI in Qt and QML PART 1!
Переглядів 73 тис.2 роки тому
Part one of implementing the Tesla Infotainment in Qt with a QML frontend!
Fancy QML Button: Preview
Переглядів 2 тис.2 роки тому
Preview of a fancy QML button I made based off Andrew Millen's codepen design. Concept is a button that turns into a progress bar and displays progress from a C object. Once the progress has hit 100%, the button then animates into an image displaying progress complete. If you want to check out the source code : github.com/MontyTheSoftwareEngineer/CoolQMLButton (Original concept/inspiration by A...
Testing out QML Preview with a Fitness Tracker!
Переглядів 6 тис.2 роки тому
In this video I try out a new feature I found within Qt Creator, the Live QML Preview! I'll run through implementing a quick fitness app example to test out the QML Preview for the first time.
My course is live!
Переглядів 1,7 тис.2 роки тому
Very excited, my course is live, go check it out here: www.udemy.com/course/from-start-to-finish-qt-qml-online-multiplayer-game/?referralCode=70DCA7EEB8DF62074185
How to add Firebase Authentication to your Qt Application!
Переглядів 6 тис.3 роки тому
This video goes over how to use Firebase Authentication within your Qt app in order to add User Accounts to your application with just the REST API. We go over how to sign a user up with email/password, how to sign in with user/password, how to restrict reading from the database created in the last video to only authenticated users, and how to view/manage existing users within the Firebase Cons...
How to setup and add a Firebase Database in your Qt Application!
Переглядів 9 тис.3 роки тому
In this video I go over quickly how to use a Firebase Realtime Database within you Qt application using just the REST API allowing you to quickly spin up and use a free database within your Qt application! In a future video I will be creating a mobile app that uses a firebase cloud database, so stay tuned for that!
Drink Dispenser UI in QML Part 2: QML Development
Переглядів 8 тис.3 роки тому
In this video, I take the UI mockups created in the last video and implement it in QML from start to finish in less than 1 hour. If you didn't watch last video, this UI is for an imaginary drink dispenser possibly if Keurig combined their discontinued KeurigKold and regular coffee machine into one to have a machine that could serve either hot or cold beverages. The Qt project demonstrates the u...
Drink Dispenser UI in QML Part 1: UI Mockup
Переглядів 3,2 тис.3 роки тому
In this video I'm starting another series where I first mock up a UI for a hot/cold drink dispenser from scratch, then in a follow-up video, I'll take the mock ups and develop them from start to finish in a Qt/QML application. Since this is the ui mockup video, it will contain zero code, whereas the next video will contain all the Qt/QML/C code, so stay tuned! Disclaimer: I'm purely an embedded...
Using Qt for WebAssembly on Windows
Переглядів 19 тис.3 роки тому
In this video we go over how to set up Qt for WebAssembly, and then take the Smart Thermostat example we developed in the last video and turn it into a web app using Qt for WebAssembly!
Smart Thermostat UI in QML Part 2: QML Development
Переглядів 18 тис.3 роки тому
In this video we take the mockups of the smart thermostat we created in the last video and develop it in Qt C and QML. If you're intersted in seeing how I created the mockups using a free tool called Figma and where I obtain the free icon assets from, please watch my previous video. The smart thermostat we develop here has a QML frontend that communicates with a c backend. For UI elements in th...
Smart Thermostat UI in QML Part 1: UI Mockup
Переглядів 10 тис.3 роки тому
Smart Thermostat UI in QML Part 1: UI Mockup
Integrating C++ with QML
Переглядів 50 тис.3 роки тому
Integrating C with QML
QML: StackView vs Loader; Complete code example!
Переглядів 21 тис.3 роки тому
QML: StackView vs Loader; Complete code example!
QML: Create Dynamic Objects
Переглядів 13 тис.3 роки тому
QML: Create Dynamic Objects

КОМЕНТАРІ

  • @Amine-gz7gq
    @Amine-gz7gq 13 годин тому

    I noticed that in recent versions of Qt, you can't call the property setter directly, it won't work and an error message will appear on the standard output. use the assignment operator on the property instead.

  • @Amine-gz7gq
    @Amine-gz7gq День тому

    I managed to run your example under Qt6, it displays well but I get these error messages related to AboutPage.qml displayed on the console: AboutPage.qml:6:5: TypeError: Cannot read property 'height' (and width too) of null and AboutPage.qml:3:1: QML AboutPage: StackView has detected conflicting anchors. Transitions may not execute properly.

  • @Amine-gz7gq
    @Amine-gz7gq День тому

    on recent Qt versions (with CMake), onValueChanged: systemController.setTargetTemp(value) doesn't work you have to use : systemController.targetTemp = value

  • @Amine-gz7gq
    @Amine-gz7gq 2 дні тому

    I like your style man ! I quit my last job because I hated WPF (and C#, there's no such thing as thread safe signal/slots in that language and async stuff sucks, what I love about Qt is that I can make a multithreaded program without using locks and therefore a very deterministic program with which I can easily reason), QML is more sane than XAML

  • @Amine-gz7gq
    @Amine-gz7gq 3 дні тому

    RowLayout doesn't behave correctly like in your video with the latest Qt version.

  • @Amine-gz7gq
    @Amine-gz7gq 3 дні тому

    so this can be used to create message dialogs for example ?

  • @RichardsonHulda
    @RichardsonHulda 4 дні тому

    4422 Streich Manors

  • @Amine-gz7gq
    @Amine-gz7gq 4 дні тому

    if you have a crash when using Q_PROPERTY, just clean the build files and rebuild the app.

  • @DanetteKshlerin
    @DanetteKshlerin 6 днів тому

    Thompson Scott Jones Betty Rodriguez Betty

  • @MoniHira-l9x
    @MoniHira-l9x 10 днів тому

    Hall Deborah Taylor Jason Young Maria

  • @AdamGerald-s7s
    @AdamGerald-s7s 11 днів тому

    Harris Kimberly Smith Jeffrey Thompson Lisa

  • @Shulzvannuys
    @Shulzvannuys 12 днів тому

    Thompson Melissa Lee Joseph Jackson Robert

  • @ObadiahTess
    @ObadiahTess 13 днів тому

    Smith Matthew Lopez Nancy Jackson Melissa

  • @grahamshackley5941
    @grahamshackley5941 17 днів тому

    Harris Carol Miller Jennifer Hall George

  • @adamsantamaria1876
    @adamsantamaria1876 18 днів тому

    Really clear tutorial, thanks 😁

  • @Haziguliyevxa-x4y
    @Haziguliyevxa-x4y 19 днів тому

    Lewis Daniel Clark Scott Moore Patricia

  • @MartinRudolf-n7e
    @MartinRudolf-n7e 23 дні тому

    Martinez Amy White Sarah Gonzalez Donald

  • @MartinRudolf-n7e
    @MartinRudolf-n7e 23 дні тому

    Clark Michael Miller Amy Jones Michelle

  • @BruceMaximusLee
    @BruceMaximusLee 24 дні тому

    Actually under the macro QOBJECT all variables are private.

  • @QuillerIris
    @QuillerIris 24 дні тому

    White Mary Garcia Margaret Walker Donna

  • @AmandaNajera-u7u
    @AmandaNajera-u7u 24 дні тому

    Moore Scott Rodriguez Paul Lee Jennifer

  • @RayleignMarcus-v9i
    @RayleignMarcus-v9i 26 днів тому

    Moore Eric Harris Donald Moore Patricia

  • @JibonKhan-v5l
    @JibonKhan-v5l 26 днів тому

    White Linda Lopez Anna Jones Michael

  • @simonnoellington4523
    @simonnoellington4523 26 днів тому

    Williams Donna Lopez Lisa Taylor Jason

  • @SherriBischof
    @SherriBischof 26 днів тому

    Thompson Steven Hall Melissa Johnson Steven

  • @ShaunaRauschenberg-w7h
    @ShaunaRauschenberg-w7h 27 днів тому

    Frami Plaza

  • @BillyPenny-t2r
    @BillyPenny-t2r 29 днів тому

    Thompson Melissa Hernandez Deborah Lewis Susan

  • @aboaon9257
    @aboaon9257 Місяць тому

    first gui work with me with no errors !! please dont stop

  • @HalimMondole
    @HalimMondole Місяць тому

    Gonzalez Laura Lopez Jose Hernandez Amy

  • @MrButter765
    @MrButter765 Місяць тому

    Isnt it not secure to store the API key on the frontend?

  • @MO-fg2cm
    @MO-fg2cm Місяць тому

    why is qml so hard

  • @abdullahafifi4231
    @abdullahafifi4231 Місяць тому

    I greatly appreciate your effort; it has been very helpful. I have some questions concerning Qt. If you are available, could I get your contact information?

  • @Independent_AI
    @Independent_AI Місяць тому

    Great job 👏🏻

  • @AlainDjiZ
    @AlainDjiZ Місяць тому

    most clear and easy tuto , thanks bro . [ if Monty isn't available at you , you can use QQmlContext also ].

  • @fezinho_
    @fezinho_ 2 місяці тому

    Saved my life with this file management! Awesome work

  • @Chris-qg6kc
    @Chris-qg6kc 2 місяці тому

    Nice work. What aspect of software engineering do you do for work? I ask because qt is moving towards embedded design and most ppl nowadays cover web dev like react, angular, etc for clones.

  • @aleo6479
    @aleo6479 2 місяці тому

    Need refactor, need chat, no of it function have copilot in qt creator :(

  • @dakshchhabra934
    @dakshchhabra934 2 місяці тому

    tutorial???

  • @tylrkngns
    @tylrkngns 2 місяці тому

    Hey! Could you help me code a custom gauge cluster. I’ll make all of the renders of what I want it to look then hand it to you to code. Let me know!

  • @ashrafalmatary
    @ashrafalmatary 2 місяці тому

    How can Fix That error (TLS initialization failed )

  • @MO-fg2cm
    @MO-fg2cm 3 місяці тому

    Hi, Im new to qt creator .. For QtLocation it shows QML module not found How do I fix this and get the module

  • @shristisinha7264
    @shristisinha7264 3 місяці тому

    Thanks for the much needed tutorial 😃 but can you plz tell if i want to access a particular part of the JSON file then how it will be done?

  • @NickEnchev
    @NickEnchev 3 місяці тому

    I respect people that respect my time. Thanks!

  • @nikoheino3927
    @nikoheino3927 3 місяці тому

    thank you so much! im on my third day of learning c++ so took me a bit of work, but i somehow managed to figure out how to set the variables inside of c++ on the basis of what i learned from this video, and now i can migrate my logic over from wxWidget project and make it looks pretty.

  • @rifkyahmadfahrezi9321
    @rifkyahmadfahrezi9321 4 місяці тому

    great tutorial sir, thanksfor that but I am facing a problem while adding the map. My app is not responding when the map is loaded. why is this problem happening? any suggestions?

    • @MO-fg2cm
      @MO-fg2cm 3 місяці тому

      For QtLocation it shows QML module not found How do I fix this and get the module

  • @shahrearhossain9875
    @shahrearhossain9875 4 місяці тому

    Please please please part 2 of this video

  • @EvelynIsDeprecated
    @EvelynIsDeprecated 4 місяці тому

    I was exacly the 1000th like! This is also a great video, as i can barley find any good turorials on qml

    • @leonstone3443
      @leonstone3443 2 місяці тому

      yeah whats up with the lack of tutorials?

  • @alfredorodrigopereiramunoz6064
    @alfredorodrigopereiramunoz6064 4 місяці тому

    Best QML educational videos!! Please keep generating comprehensive videos like these

  • @tbranch227
    @tbranch227 4 місяці тому

    I thought they wrote it in Qt.

  • @nguyenuctuan5156
    @nguyenuctuan5156 4 місяці тому

    search location feature is trick, isn't it? Can you implement search location, route, POI, vv that's the same with gg map?