/* ScummVM - Graphic Adventure Engine * * ScummVM is the legal property of its developers, whose names * are too numerous to list here. Please refer to the COPYRIGHT * file distributed with this source distribution. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #include "bagel/spacebar/dialogs/next_cd_dialog.h" #include "bagel/spacebar/dialogs/opt_window.h" #include "bagel/spacebar/baglib/cursor.h" #include "bagel/spacebar/baglib/bagel.h" #include "bagel/spacebar/boflib/std_keys.h" namespace Bagel { namespace SpaceBar { #define OK_BTN 5 CBagNextCDDialog::CBagNextCDDialog() { // Inits _nReturnValue = -1; _pButton = nullptr; _lFlags = 0; } void CBagNextCDDialog::onInitDialog() { assert(isValidObject(this)); CBofDialog::onInitDialog(); setReturnValue(-1); assert(_pBackdrop != nullptr); CBofPalette *pPal = _pBackdrop->getPalette(); selectPalette(pPal); // Build all our buttons _pButton = new CBofBmpButton; CBofBitmap *pUp = loadBitmap(buildSysDir("CDOKUP.BMP"), pPal); CBofBitmap *pDown = loadBitmap(buildSysDir("CDOKDN.BMP"), pPal); CBofBitmap *pFocus = loadBitmap(buildSysDir("CDOKUP.BMP"), pPal); CBofBitmap *pDis = loadBitmap(buildSysDir("CDOKUP.BMP"), pPal); _pButton->loadBitmaps(pUp, pDown, pFocus, pDis); _pButton->create("NextCD", 77, 127, 60, 30, this, OK_BTN); _pButton->show(); // Show System cursor CBagCursor::showSystemCursor(); } void CBagNextCDDialog::onClose() { assert(isValidObject(this)); CBagCursor::hideSystemCursor(); // Destroy my buttons delete _pButton; _pButton = nullptr; CBofDialog::onClose(); } void CBagNextCDDialog::onPaint(CBofRect *pRect) { assert(isValidObject(this)); assert(pRect != nullptr); _bFirstTime = false; // Paint the dialog if (_pBackdrop != nullptr) { _pBackdrop->paint(this, pRect, pRect, 1); } _bHavePainted = true; validateAnscestors(); } void CBagNextCDDialog::onKeyHit(uint32 lKey, uint32 nRepCount) { assert(isValidObject(this)); switch (lKey) { // Cancel case BKEY_ENTER: case BKEY_ESC: close(); break; default: CBofDialog::onKeyHit(lKey, nRepCount); break; } } void CBagNextCDDialog::onBofButton(CBofObject * /*pObject*/, int nFlags) { assert(isValidObject(this)); if (nFlags == BUTTON_CLICKED) { close(); } } } // namespace SpaceBar } // namespace Bagel