示例#1
0
void PopupChatWindow::setStyle()
{
	ChatDialog *cd = getCurrentDialog();

	if (cd && cd->setStyle()) {
		calculateStyle(cd);
	}
}
void DialogHierarchy::start()
{
    setCurrentDialog(getRootDialog());
    retrieveReponses();
    getCurrentDialog()->start();
}
void DialogHierarchy::retrieveReponses()
{
    _mfCurrentDialogResponses = getCurrentDialog()->getResponses();
}