C++ GUI with Qt 5 [or Qt 6] | Create Notes app - Part 3: Add features and customize GUI

preview_player
Показать описание
This is the part 3 of the video series that will create a Notes application using C++ and Qt 5 or Qt 6. This particular video is about adding more ui features to the application, like: a custom widget as item into QListWidget and a rename dialog.

Next video:

In case you missed the previous videos:

Рекомендации по теме
Комментарии
Автор

Spotted a mistake: forgot to pass the parent parameter forward to the QWidget contructor, so the NoteWidget constructor should become: NoteWidget::NoteWidget(const Note& note, QWidget *parent) : QWidget(parent)

CreativeProgrammingProjects
Автор

Thanks for sharing knowledge! I have been following successfully until I stumbled on a little problem with the labels. The 'lastModified' label is drawn on top of 'title' label even though I have used setSizeHint() as suggested. Tried to Google for solution but there is precious little info about Qt. Any ideas? Thank you

PanThistle