1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
/* 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;
}
|