Hi,
Thanks for advice, but still I do not see my widget. There is 'something transparent" on or under the widget, but I do not see it.
Maverick
Hi,
Thanks for advice, but still I do not see my widget. There is 'something transparent" on or under the widget, but I do not see it.
Maverick
wysotaQt allows you to use everything you want
--------------------------------------------------------------------------------
#if defined(Q_OS_UNIX) && defined(QT_DEBUG)
abort(); // trap; generates core dump
#else
exit(1); // goodbye cruel world
#endif
You create the widget with the gv as parent. If you accidentally position this widget outside the bounds of the parent it will get clipped( you won't see it at all ).
So, double check you give the correct coordinates( try (0,0)).
Or, to make sure everything is ok with the widget and it can be seen, create it with a NULL parent and give it some position. It should appear at that position.
Regards
Bookmarks