/guitone-1.0rc5/src/view/dialogs/Message.cpp
C++ | 38 lines | 14 code | 7 blank | 17 comment | 0 complexity | de6629d875b73feed0e6851b6af22260 MD5 | raw file
Possible License(s): GPL-3.0
1/***************************************************************************
2 * Copyright (C) 2009 by Thomas Keller *
3 * me@thomaskeller.biz *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 3 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. *
17 ***************************************************************************/
18
19#include "Message.h"
20
21#include <QFont>
22
23Message::Message(QWidget * parent, const QString & title, const QString & msg) : Dialog(parent)
24{
25 setupUi(this);
26 Dialog::init();
27
28 setWindowTitle(title);
29
30 QFont f;
31 f.setStyleHint(QFont::Courier);
32 f.setFamily("Courier");
33 message->setFont(f);
34 message->setPlainText(msg);
35}
36
37Message::~Message() {}
38