summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/drawpad/importdialog.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/noncore/graphics/drawpad/importdialog.cpp b/noncore/graphics/drawpad/importdialog.cpp
index 0783ed8..1c447cb 100644
--- a/noncore/graphics/drawpad/importdialog.cpp
+++ b/noncore/graphics/drawpad/importdialog.cpp
@@ -58,37 +58,39 @@ ImportDialog::ImportDialog(QWidget* parent, const char* name)
58 mainLayout->addWidget(m_pFileSelector); 58 mainLayout->addWidget(m_pFileSelector);
59 mainLayout->addLayout(previewLayout); 59 mainLayout->addLayout(previewLayout);
60 60
61 preview(); 61 preview();
62} 62}
63 63
64ImportDialog::~ImportDialog() 64ImportDialog::~ImportDialog()
65{ 65{
66} 66}
67 67
68const DocLnk* ImportDialog::selected() 68const DocLnk* ImportDialog::selected()
69{ 69{
70 return m_pFileSelector->selected(); 70 // FIXME change from pointer to reference -zecke
71 DocLnk *lnk = new DocLnk( m_pFileSelector->selectedDocument() );
72 return lnk;
71} 73}
72 74
73void ImportDialog::fileChanged() 75void ImportDialog::fileChanged()
74{ 76{
75 if (m_pAutomaticPreviewCheckBox->isChecked()) { 77 if (m_pAutomaticPreviewCheckBox->isChecked()) {
76 preview(); 78 preview();
77 } 79 }
78} 80}
79 81
80void ImportDialog::preview() 82void ImportDialog::preview()
81{ 83{
82 const DocLnk* docLnk = m_pFileSelector->selected(); 84 const DocLnk* docLnk = selected();
83 85
84 if (docLnk) { 86 if (docLnk) {
85 QImage image(docLnk->file()); 87 QImage image(docLnk->file());
86 88
87 int previewWidth = m_pPreviewLabel->contentsRect().width(); 89 int previewWidth = m_pPreviewLabel->contentsRect().width();
88 int previewHeight = m_pPreviewLabel->contentsRect().height(); 90 int previewHeight = m_pPreviewLabel->contentsRect().height();
89 91
90 float widthScale = 1.0; 92 float widthScale = 1.0;
91 float heightScale = 1.0; 93 float heightScale = 1.0;
92 94
93 if (previewWidth < image.width()) { 95 if (previewWidth < image.width()) {
94 widthScale = (float)previewWidth / float(image.width()); 96 widthScale = (float)previewWidth / float(image.width());