Example #1
0
    void MessageBoxManager::createMessageBox (const std::string& message, bool stat)
    {
        MessageBox *box = new MessageBox(*this, message);

        if(stat)
            mStaticMessageBox = box;
        else
            removeMessageBox(message.length()*mMessageBoxSpeed, box);

        mMessageBoxes.push_back(box);
        std::vector<MessageBox*>::iterator it;

        if(mMessageBoxes.size() > 3) {
            delete *mMessageBoxes.begin();
            mMessageBoxes.erase(mMessageBoxes.begin());
        }

        int height = 0;
        for(it = mMessageBoxes.begin(); it != mMessageBoxes.end(); ++it)
        {
            (*it)->update(height);
            height += (*it)->getHeight();
        }
    }
Example #2
0
 void MessageBoxManager::removeStaticMessageBox ()
 {
     removeMessageBox(mStaticMessageBox);
     mStaticMessageBox = NULL;
 }