/* ScummVM - Scumm Interpreter * Copyright (C) 2002 The ScummVM project * * 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 2 * 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, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * * $Header$ */ #include "stdafx.h" #include "message.h" #include "newgui.h" MessageDialog::MessageDialog(NewGui *gui, const String &message) : Dialog(gui, 30, 20, 260, 124) { // First, determine the size the dialog needs. For this we have to break // down the string into lines, and taking the maximum of their widths. // Using this, and accounting for the space the button(s) need, we can set // the real size of the dialog const char *str = message.c_str(); const char *start = str; int lineWidth, maxlineWidth = 0; int lineCount; while (*str) { if (*str == '\n') { lineWidth = addLine(start, str - start); if (maxlineWidth < lineWidth) maxlineWidth = lineWidth; start = str + 1; } ++str; } // Add the last line lineWidth = addLine(start, str - start); if (maxlineWidth < lineWidth) maxlineWidth = lineWidth; // Calculate the desired dialog size (maxing out at 300*180 for now) _w = maxlineWidth + 20; lineCount = _lines.size(); _h = lineCount * kLineHeight + 40; if (_h > 180) { lineCount = (180 - 34) / kLineHeight; _h = lineCount * kLineHeight + 34; } _x = (320 - _w) / 2; _y = (200 - _h) / 2; for (int i = 0; i < lineCount; i++) { new StaticTextWidget(this, 10, 10+i*kLineHeight, maxlineWidth, kLineHeight, _lines[i], kTextAlignCenter); } // FIXME - allow for multiple buttons, and return in runModal() which one // was selected. addButton((_w - kButtonWidth)/2, _h - 24, "OK", kCloseCmd, '\n'); // Confirm dialog } int MessageDialog::addLine(const char *line, int size) { int width = 0, maxWidth = 0; const char *start = line, *pos = line, *end = start + size; String tmp; while (pos < end) { int w = _gui->getCharWidth(*pos); // Check if we exceed the maximum line width, if so, split the line. // If possible we split at whitespaces. if (width + w > 280) { // Scan backward till we find a space or we get back to the start const char *newPos = pos; while (newPos > start && !isspace(*newPos)) newPos--; if (newPos > start) pos = newPos; // Add the substring from intervall [start, i-1] tmp = String(start, pos - start); _lines.push_back(tmp); // Determine the width of the string, and adjust maxWidth accordingly width = _gui->getStringWidth(tmp); if (maxWidth < width) maxWidth = width; start = pos; width = 0; } else { width += w; pos++; } } if (maxWidth < width) maxWidth = width; if (start < pos) { tmp = String(start, pos - start); _lines.push_back(tmp); } return maxWidth; }