summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-reader/CloseDialog.cpp
blob: 741fa6749b4fae2d06ee81fa7de57dd2f34296be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "CloseDialog.h"
#include "qlayout.h"

CCloseDialog::CCloseDialog(const QString& fname, bool fs, QWidget* parent, const char* name) : QDialog(parent, name, true)
{
    setCaption(tr("Tidy-up"));
    QVBoxLayout *tmp = new QVBoxLayout(this);
    QVButtonGroup* vb = new QVButtonGroup(tr("Delete"), this);
    tmp->addWidget(vb);
    QString filestring = tr("Delete") + " " + fname;
    file = new QCheckBox(filestring, vb);
    marks = new QCheckBox(tr("Delete Bookmarks"), vb);
    config = new QCheckBox(tr("Delete Configuration"), vb);
    file->setChecked(false);
    marks->setChecked(true);
    config->setChecked(true);
    if (fs) showMaximized();
}