/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ /* Rosegarden A MIDI and audio sequencer and musical notation editor. Copyright 2000-2011 the Rosegarden development team. Other copyrights also apply to some parts of this work. Please see the AUTHORS file and individual file headers for details. 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. See the file COPYING included with this distribution for more information. */ #include "WarningDialog.h" #include "gui/general/IconLoader.h" #include #include #include #include #include #include #include namespace Rosegarden { WarningDialog::WarningDialog(QWidget *parent) : QDialog(parent) { QVBoxLayout *layout = new QVBoxLayout; setLayout(layout); m_tabWidget = new QTabWidget; layout->addWidget(m_tabWidget); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok); layout->addWidget(buttonBox); connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept())); setWindowTitle(tr("Performance Problems Detected")); setWindowIcon(IconLoader().load("warning")); } WarningDialog::~WarningDialog() { } void WarningDialog::addWarning(Message message) { QWidget *tab = new QWidget; QVBoxLayout *layout = new QVBoxLayout; layout->setAlignment(Qt::AlignTop); tab->setLayout(layout); QLabel *text = new QLabel(message.first.first); text->setWordWrap(true); layout->addWidget(text); QLabel *informativeText = new QLabel(message.first.second); informativeText->setWordWrap(true); layout->addWidget(informativeText); informativeText->setOpenExternalLinks(true); QIcon icon = IconLoader().load("warning"); QString headline(tr("Warning")); switch (message.second) { case Midi: icon = IconLoader().load("midi-nok"); headline = tr("MIDI"); break; case Audio: icon = IconLoader().load("audio-nok"); headline = tr("Audio"); break; case Timer: icon = IconLoader().load("timer-nok"); headline = tr("System timer"); break; case Info: icon = IconLoader().load("messagebox-information"); headline = tr("Information"); break; case Other: default: // icon and text were initialized suitable for this case, so there's // nothing to do here break; } m_tabWidget->addTab(tab, icon, headline); } } #include "WarningDialog.moc"