view ui/tests/common.cpp @ 754:27043d74dc90

(Issue25) Align header contents in their own column. We now also stretch column 3 so that the contents are aligned with the descriptive labels without a space in between. Sadly this causes the quit button to be resized to it's minimum instead of sharing the space with the installation button as the installation button is so large that it squeezes the push button.
author Andre Heinecke <andre.heinecke@intevation.de>
date Mon, 07 Jul 2014 12:38:33 +0200
parents 17e1c8f37d72
children
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 <QString>
#include <QTemporaryFile>
#include <QDebug>
#include "common.h"

QString getRandomDataFile(size_t size, const QDir &inDir)
{
    QTemporaryFile *tmpfile;
    if (inDir != QDir()) {
        tmpfile = new QTemporaryFile(inDir.path() + "/downloadertest");
    } else {
        tmpfile = new QTemporaryFile();
    }
    tmpfile->setAutoRemove(false);
    tmpfile->open();
    size_t bufsize = 1024 * 1024;
    if (bufsize > size) {
        bufsize = size;
    }
    char buf[bufsize];

    for (size_t i = 0; i < bufsize; i++) {
        buf[i] = (char) qrand() % 255;
    }

    size_t bytesWritten=0;
    int retval = 0;
    do {
        size_t toWrite = size - bytesWritten;
        if (toWrite < bufsize) {
            retval = tmpfile->write(buf, toWrite);
        } else {
            retval = tmpfile->write(buf, bufsize);
        }
        bytesWritten += retval;
    } while (retval != -1 && bytesWritten < size);

    tmpfile->close();
    QString ret = tmpfile->fileName();
    delete tmpfile;
    return ret;
}

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