Тёмный

C++ Qt 47 - Intro to model view programming 

VoidRealms
Подписаться 84 тыс.
Просмотров 137 тыс.
50% 1

QML Beginners: www.udemy.com/course/qml-for-...
Qt Core Beginners: www.udemy.com/course/qt-core-...
Qt Core Intermediate: www.udemy.com/course/qt-core-...
QT Core Advanced: www.udemy.com/course/qt-core-...
Qt Widgets Beginners: www.udemy.com/course/qt-widge...

Опубликовано:

 

5 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 44   
@electrotsmishar
@electrotsmishar 4 года назад
man, you've made this tutorial series long ago. still shines like 1000Watts LEDs
@tmst2199
@tmst2199 6 лет назад
This is a breath of fresh air after watching web programming tutorials.
@abcxyz-nd6xh
@abcxyz-nd6xh 4 года назад
Like your typing sounds, proving that I am watching a real teacher, not a CG Robot.
@michaelbleau442
@michaelbleau442 7 лет назад
Brian, thank you. Watching this made all the documentation clear to me.
@ArrigoLupori
@ArrigoLupori 6 лет назад
Quick and straight to the point.. AMAZING!
@NachoMontamat
@NachoMontamat 9 лет назад
Like the way you keep it simple. Thanks for sharing all this! Cheers.-
@mariorossi2671
@mariorossi2671 11 лет назад
I am quite an experienced programmer and I was looking something to understand the MVC under QT, because I'm writing a new program under Linux, something I don't do really often (and I am new to QT). This short video did the job. Great work! I will give a look to the other videos on this channel.
@maxx666mayhem
@maxx666mayhem 8 лет назад
Superb tutorial on MV programming in Qt... Thanks for sharing
@Nikitoz9595
@Nikitoz9595 7 лет назад
Man, you are the best! I made my university project with your videos. Thanks a lot!
@FusungWang
@FusungWang 4 года назад
This tutorial is awesome and helps me a lot. Thank you very much.
@Brick10Man
@Brick10Man 6 лет назад
Perfect tutorial, thank you
@stefanoreali8410
@stefanoreali8410 9 лет назад
Good, thank you very much!
@CreMindES
@CreMindES 13 лет назад
I'm just playing around with model views, so thanks for the tutorial :)
@richeek10
@richeek10 12 лет назад
great Videos Brian... I am learning a lot from your videos !
@jasonjone7
@jasonjone7 12 лет назад
really helpful, thank you!
@rogerwilco2
@rogerwilco2 9 лет назад
Very nice, thanks.
@UkrTrashRemix
@UkrTrashRemix 2 года назад
thanks, it was a great tutorial!
@cezudas
@cezudas 12 лет назад
thank you, Brian! It's getting clear clear to me now what's the catch about model views
@cedricngoran7045
@cedricngoran7045 7 лет назад
thank you very much
@monteavila7946
@monteavila7946 8 лет назад
Thank you!!!!
@rooman2209
@rooman2209 8 лет назад
Man, i love you
@mengliu5342
@mengliu5342 5 лет назад
Thank you !
@stage666
@stage666 12 лет назад
very helpful!!! man my qt intructor last semester was also a Brian. And i skipped the lectures when he talked about mvc. kinda wish i didnt. anyways very helpful video!!!
@feraudyh
@feraudyh 11 лет назад
excellent
@MrSebita82
@MrSebita82 12 лет назад
NICE !!!!! ThankssSSSSSSS
@zakariachahboun
@zakariachahboun 6 лет назад
Thank You :)
@hieupvma
@hieupvma 12 лет назад
thank u very very much :)
@ezequiel2006
@ezequiel2006 12 лет назад
@supadox thx !!!
@renaldi3800
@renaldi3800 8 лет назад
Tutorial above can arguably Model View Delegate in Qt C++?
@ezequiel2006
@ezequiel2006 12 лет назад
Please, can help me.. error this line : model->insertRow(row,1); error: no matching function for call to 'QStringListModel::insertRow(int&, int)' candidates are: bool QAbstractItemModel::insertRow(int, const QModelIndex&)
@tmusic591
@tmusic591 6 лет назад
Not sure why .currentIndex() is not enough and why we need currentIndex().row(). Seems I dont quite understand what the Index and the row refer to here.
@bhanupro1997
@bhanupro1997 4 года назад
Nice, but bro I want send qstringlist into qml of combo box please how to do that...?
@gigagames21
@gigagames21 9 лет назад
if i understant it correclty, the only "main" feature why to use it, is becouse you can have the data in 2 objects ?
@DGDG0000000
@DGDG0000000 9 лет назад
no. The feature of this "design technic": Model / View, is to separate the control of datas gestion and the control of views. Like that, you can work on and concentrate on only one part at a time (like two teams could do for a project... one on the view, the other one on the model... for exemple). Or... you can just define a model with some functions to do with your datas without look at your datas... a generic model you will use for some other projetc (for exemple), for be able to use the datas and like thme to a view quickly and easier. BUT if you look at this design conept for one little code only... sure... you can not understand the advantage of this design Model / View.
@rammcconnell
@rammcconnell 4 года назад
It would have been nice to see how to subclass QAbstractItemModel and do more complicated things with icons and check states and multiple columns
@adminos15
@adminos15 12 лет назад
Brian hi. Good job again :). I want to ask you why when i try to run the program in the folder it gives me lot of dlls missing? Please help me. I really need this answer because i want to make some big project when i finish all of your tutorials and go to some IT race. This is my dream. Thank you
@junderfitting8717
@junderfitting8717 2 года назад
go to your project directory and double click your executable file I.e. .exe file. You will get a series warnings that lack of .dll files. Then you find these .dll from ur coworkers or internet and paste them into the folder.
@gijsvanoort
@gijsvanoort 10 лет назад
Hi Brian, I don't really get it... Why don't you update the data instead of the model??
@DGDG0000000
@DGDG0000000 9 лет назад
beacuse the model is a class who implement some features around the update and other stuff... you can see model like an object who can do some actions between datas and view(s)... automatically. For little jobs, model are not necessary and you can do like you think. But for big works with many views and big datas... you will yourself finish by construct a class who do the job of a "model type design". Qt is not Model/View/controller... but only Model/View. you want to see MVC really in action... go to see Ruby on Rails (framework for web site build in Ruby OO langage).
@cagedtigersteve
@cagedtigersteve 9 лет назад
kittens and cats are different. lol
@tmst2199
@tmst2199 6 лет назад
So true. Especially with *big* ones!
@talamatur
@talamatur 11 лет назад
hey, thanks for the tutorial. but next time pls make sure we have a better view on your monitor. in this case the screen was very small and the half screen was shown the Project solution or the Output window. You type at the end of the line and the left side was scrolling away. you voice, speech speed and sound was good.
@avtem
@avtem 5 лет назад
Why in this tutorial all data stored in the model? What is the point of model without data? Please, someone explain me, I will be grateful!
@MukeshKamath
@MukeshKamath 4 года назад
kittens and cats are not two different animals
Далее
C++ Qt 48 - QDirModel and QTreeView
13:25
Просмотров 76 тыс.
best way out of the labyrinth🌀🗝️🔝
00:17
Просмотров 1,4 млн
Это реально работает?!
00:33
Просмотров 3 млн
C++ Qt 62 - Viewer Feedback Signals and Slots in depth
17:33
BEST WAY to make Desktop Applications in C++
26:00
Просмотров 900 тыс.
Why The Windows Phone Failed
24:08
Просмотров 249 тыс.
Day at Work: Video Game Designer
4:07
Просмотров 1,2 млн
C++ Qt 68 - QTcpServer using multiple threads
27:14
Просмотров 70 тыс.
C++ Qt 66 - QTCPSocket using signals and slots
16:34
Просмотров 57 тыс.
Rust and RAII Memory Management - Computerphile
24:22
Просмотров 222 тыс.
best way out of the labyrinth🌀🗝️🔝
00:17
Просмотров 1,4 млн