author | ar <ar> | 2004-02-14 16:58:36 (UTC) |
---|---|---|
committer | ar <ar> | 2004-02-14 16:58:36 (UTC) |
commit | c6bca75c479533d064a782a5f27d3dfb3aa1c042 (patch) (unidiff) | |
tree | 69abff2d3ac0a763b203f1551b33a3cc38ff0dcc | |
parent | 1ab6282d6869ca200133a0e47323ae9a760b3400 (diff) | |
download | opie-c6bca75c479533d064a782a5f27d3dfb3aa1c042.zip opie-c6bca75c479533d064a782a5f27d3dfb3aa1c042.tar.gz opie-c6bca75c479533d064a782a5f27d3dfb3aa1c042.tar.bz2 |
improve support for BigScreen
-rw-r--r-- | noncore/graphics/drawpad/drawpad.cpp | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/noncore/graphics/drawpad/drawpad.cpp b/noncore/graphics/drawpad/drawpad.cpp index 71c9695..139c752 100644 --- a/noncore/graphics/drawpad/drawpad.cpp +++ b/noncore/graphics/drawpad/drawpad.cpp | |||
@@ -37,8 +37,9 @@ | |||
37 | #include <qpe/config.h> | 37 | #include <qpe/config.h> |
38 | #include <qpe/global.h> | 38 | #include <qpe/global.h> |
39 | #include <qmenubar.h> | ||
40 | #include <qpe/qpetoolbar.h> | 39 | #include <qpe/qpetoolbar.h> |
41 | #include <qpe/resource.h> | 40 | #include <qpe/resource.h> |
41 | #include <qpe/qpeapplication.h> | ||
42 | 42 | ||
43 | #include <qmenubar.h> | ||
43 | #include <qaction.h> | 44 | #include <qaction.h> |
44 | #include <qfile.h> | 45 | #include <qfile.h> |
@@ -602,7 +603,5 @@ void DrawPad::importPage() | |||
602 | ImportDialog importDialog(this); | 603 | ImportDialog importDialog(this); |
603 | 604 | ||
604 | importDialog.showMaximized(); | 605 | if ( QPEApplication::execDialog( &importDialog ) == QDialog::Accepted ) { |
605 | |||
606 | if (importDialog.exec() == QDialog::Accepted) { | ||
607 | const DocLnk* docLnk = importDialog.selected(); | 606 | const DocLnk* docLnk = importDialog.selected(); |
608 | 607 | ||
@@ -618,7 +617,5 @@ void DrawPad::exportPage() | |||
618 | ExportDialog exportDialog(m_pDrawPadCanvas->pagePosition(), m_pDrawPadCanvas->pageCount(), this); | 617 | ExportDialog exportDialog(m_pDrawPadCanvas->pagePosition(), m_pDrawPadCanvas->pageCount(), this); |
619 | 618 | ||
620 | exportDialog.showMaximized(); | 619 | if ( QPEApplication::execDialog( &exportDialog ) == QDialog::Accepted ) { |
621 | |||
622 | if (exportDialog.exec() == QDialog::Accepted) { | ||
623 | m_pDrawPadCanvas->exportPage(exportDialog.selectedFromPage(), exportDialog.selectedToPage(), | 620 | m_pDrawPadCanvas->exportPage(exportDialog.selectedFromPage(), exportDialog.selectedToPage(), |
624 | exportDialog.selectedName(), exportDialog.selectedFormat()); | 621 | exportDialog.selectedName(), exportDialog.selectedFormat()); |
@@ -630,5 +627,5 @@ void DrawPad::thumbnailView() | |||
630 | ThumbnailView thumbnailView(this, m_pDrawPadCanvas, this); | 627 | ThumbnailView thumbnailView(this, m_pDrawPadCanvas, this); |
631 | 628 | ||
632 | thumbnailView.showMaximized(); | 629 | QPEApplication::showWidget( &thumbnailView ); |
633 | thumbnailView.exec(); | 630 | thumbnailView.exec(); |
634 | } | 631 | } |