qt

I want to make my own source code editor, what are the good choices to make ?

I've had it of those dozens of editors which never provides simple things like: distinguish type keywords and instruction keywords so I can put different colors on them. being cross platform using a standard GUI lib like qt gtk etc (notepad++, yes, I almost hate you). enough keyboard shortcut like duplicate line, comment selection, and...

Qt get children from layout

Hi, I try to hide all widgets in layout. But looks like findChildren doesn't work for layout. Here's my sample code: QLayout * layout = widget -> findChild<QLayout *> (layoutName); QList<QWidget *> list = layout -> findChildren<QWidget *> (); cout << list.size() << endl; size is 0, but inside this layout I have a fe...