alsor.zhou
unread,Aug 30, 2009, 9:28:18 AM8/30/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to LibFetion
Currently (v1.0), most of the messaging mechanism was thru native
invoke, like
class FxSetting
{
FxMainWindow *m_mainwindow;
}
In this case, FxSetting will keep a mainwindow instance. It might cost
memories, and make code mysterious. If FxSetting really need that
mainwindow instance, it can be implemented thru signal/slot, which is
dynamically used and destroied.
Generally, different components should not contain other component
unless the sub component.