view ui/processwaitdialog.cpp @ 633:6c090638b2b4

Use static buffer for module file name. According to the msdn examle the return value of getmodulefilename should be used to indicate success and not the size. And according to comments on that function on Windows 8.1 it does not return the needed size. So better be more robust and just use max_path as a limit.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 23 Jun 2014 15:29:48 +0200
parents 47235ae3fa9a
children 320a64d58e62
line wrap: on
line source
/* Copyright (C) 2014 by Bundesamt für Sicherheit in der Informationstechnik
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU GPL (v>=2)
 * and comes with ABSOLUTELY NO WARRANTY!
 * See LICENSE.txt for details.
 */
#include <QHBoxLayout>
#include <QListWidget>
#include <QTimer>
#include <QList>
#include <QLabel>
#include <QApplication>

#include "processwaitdialog.h"
#include "processhelp.h"

ProcessWaitDialog::ProcessWaitDialog(QWidget *parent, const QStringList& processNames) :
    QDialog(parent),
    mProcessNames(processNames) {
    QHBoxLayout *theLayout = new QHBoxLayout(this);

    setWindowTitle(tr("Applications need to be closed."));
    setWindowFlags(Qt::Dialog | Qt::CustomizeWindowHint | Qt::WindowTitleHint);

    QLabel *warnLabel = new QLabel(tr("Close all running firefox and thunderbird instances to continue installation!"));
    QLabel *warnIcon = new QLabel();
    warnIcon->setPixmap(QApplication::style()->standardPixmap(QStyle::SP_MessageBoxWarning));

    theLayout->addWidget(warnIcon);
    theLayout->addWidget(warnLabel);

    theLayout->setSizeConstraint(QLayout::SetFixedSize);
 //   mProcessList = new QListWidget();
//    theLayout->addWidget(mProcessList);
    updateProcesses();
}

void ProcessWaitDialog::updateProcesses() {
    QList<int> pids;
    foreach (const QString& pName, mProcessNames) {
        pids.append(ProcessHelp::getProcessesIdForName(pName));
    }
    if (pids.isEmpty()) {
        accept();
        return;
    }

  /*  mProcessList->clear();

    foreach (int pId, pids) {
        mProcessList->addItem(QString::fromLatin1("Pid ") + pId);
    }
*/
    QTimer::singleShot(500, this, SLOT(updateProcesses()));
}

http://wald.intevation.org/projects/trustbridge/