
21 May
2014
21 May
'14
5:25 p.m.
2014-05-21 18:39 GMT+02:00 Tomasz Boczkowski <penginsbacon@...400...>:
Hi!
I started porting inkscape widgets to gtkmm and c++ and have a few questions:
- There are two directories src/widgets and src/ui/widget. Is the former
deprecated?
Yes, src/widgets and src/dialogs are deprecated and should eventually be removed. There are also several widgets in files in the src/ directory.
- Should I move classes to src/ui/widget after c++-sification?
Yes. Note: a lot of code uses Java-like deeply nested namespaces, e.g. Inkscape::UI::Widget::Foo. I think this is completely unnecessary, you can use Inkscape::UI::FooWidget.
- What is the proper macro to differentiate between gtk versions?
GTK_CHECK_VERSION(3,0,0) or WITH_GTKMM_3_0?
The latter, but be sure to include config.h whenever you check this macro.
Regards, Krzysztof