~ubuntu-branches/ubuntu/maverick/scribus-ng/maverick-backports

« back to all changes in this revision

Viewing changes to scribus/plugins/pixmapexport/dialog.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Oleksandr Moskalenko
  • Date: 2010-07-15 12:43:00 UTC
  • mfrom: (0.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100715124300-2u304r2rvy55vpkv
Tags: 1.3.7.dfsg~svn20100715-1
* Upstream svn. update.
* debian/scribus-ng.lintian: Updated overrides.
* debian/control: Updated standards version to 3.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        QDirModel * dirModel = new QDirModel(this);
33
33
        dirModel->setFilter(QDir::AllDirs);
34
34
        outputDirectory->setCompleter(new QCompleter(dirModel, this));
35
 
        
 
35
 
36
36
        outputDirectory->setText( QDir::convertSeparators(prefs->get("wdir", QDir::currentPath())) );
37
37
        QList<QByteArray> imgs = QImageWriter::supportedImageFormats();
38
38
        for (int a = 0; a < imgs.count(); a++)
42
42
        setCurrentComboItem(bitmapType, type.toLower());
43
43
        qualityBox->setValue(quality);
44
44
        qualityBox->setWrapping(true);
45
 
        
 
45
 
46
46
        DPIBox->setValue(size);
47
47
        enlargementBox->setValue(size);
48
48
        onePageRadio->setChecked( true );
53
53
        languageChange();
54
54
        readConfig();
55
55
        computeSize();
56
 
        
 
56
 
57
57
        connect(outputDirectoryButton, SIGNAL(clicked()), this, SLOT(OutputDirectoryButton_pressed()));
58
58
        connect(intervalPagesRadio, SIGNAL(clicked()), this, SLOT(IntervalPagesRadio_stateChanged()));
59
59
        connect(allPagesRadio, SIGNAL(clicked()), this, SLOT(AllPagesRadio_stateChanged()));
132
132
{
133
133
        DPIBox->setValue(prefs->getUInt("DPIBox", 72));
134
134
        enlargementBox->setValue(prefs->getInt("EnlargementBox", 100));
135
 
        qualityBox->setValue(prefs->getUInt("QualityBox", -1));
 
135
        qualityBox->setValue(prefs->getInt("QualityBox", -1));
136
136
        int b = prefs->getUInt("ButtonGroup1", 0);
137
137
        switch (b)
138
138
        {