
21 May
2014
21 May
'14
5:31 p.m.
2014-05-21 18:57 GMT+02:00 Tomasz Boczkowski <penginsbacon@...400...>:
Just one more:
- Should child widgets be stored as pointers as in glyph.h or directly as
in text-edit.h?
Storing child widgets directly (as members) is preferred, because it's harder to make mistakes resulting in memory leaks. However, this is up to you.
If you store widgets as pointers, you need to call Gtk::manage() on them upon creation and before adding them to the containing widget, so that they'll be destroyed correctly.
Be sure to follow the coding style, especially when it comes to variable and function naming: http://www.inkscape.org/en/develop/coding-style/
Regards, Krzysztof