author | sandman <sandman> | 2002-10-06 03:10:40 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-06 03:10:40 (UTC) |
commit | b9cbdf51e961eb51ea60fc81de7dc9bb1023545e (patch) (side-by-side diff) | |
tree | ecfe3f7bae3d05169ab48ed6a88f2b1caae093d1 /noncore/unsupported | |
parent | 56276f60d5dd404c3cd8a65003faf75b289f1131 (diff) | |
download | opie-b9cbdf51e961eb51ea60fc81de7dc9bb1023545e.zip opie-b9cbdf51e961eb51ea60fc81de7dc9bb1023545e.tar.gz opie-b9cbdf51e961eb51ea60fc81de7dc9bb1023545e.tar.bz2 |
- uses OFileSelector now
- menu/toolbars are now QPE variants
-rw-r--r-- | noncore/unsupported/qpdf/qpdf.cpp | 10 | ||||
-rw-r--r-- | noncore/unsupported/qpdf/qpdf.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/noncore/unsupported/qpdf/qpdf.cpp b/noncore/unsupported/qpdf/qpdf.cpp index f338509..e78f081 100644 --- a/noncore/unsupported/qpdf/qpdf.cpp +++ b/noncore/unsupported/qpdf/qpdf.cpp @@ -20,9 +20,9 @@ #include <qclipboard.h> -#include <qtoolbar.h> +#include <qpe/qpetoolbar.h> #include <qtoolbutton.h> -#include <qmenubar.h> +#include <qpe/qpemenubar.h> #include <qpopupmenu.h> #include <qwidgetstack.h> #include <qtimer.h> @@ -99,7 +99,7 @@ QPdfDlg::QPdfDlg ( ) : QMainWindow ( ) m_tb_menu = new QToolBar ( this ); m_tb_menu-> setHorizontalStretchable ( true ); - QMenuBar *mb = new QMenuBar ( m_tb_menu ); + QMenuBar *mb = new QPEMenuBar ( m_tb_menu ); m_pm_zoom = new QPopupMenu ( mb ); m_pm_zoom-> setCheckable ( true ); @@ -118,7 +118,7 @@ QPdfDlg::QPdfDlg ( ) : QMainWindow ( ) connect ( m_pm_zoom, SIGNAL( activated ( int )), this, SLOT( setZoom ( int ))); - m_tb_tool = new QToolBar ( this ); + m_tb_tool = new QPEToolBar ( this ); new QToolButton ( Resource::loadIconSet ( "fileopen" ), tr( "Open..." ), QString::null, this, SLOT( openFile ( )), m_tb_tool, "open" ); m_tb_tool-> addSeparator ( ); @@ -134,7 +134,7 @@ QPdfDlg::QPdfDlg ( ) : QMainWindow ( ) new QToolButton ( Resource::loadIconSet ( "forward" ), tr( "Next page" ), QString::null, this, SLOT( nextPage ( )), m_tb_tool, "next" ); new QToolButton ( Resource::loadIconSet ( "fastforward" ), tr( "Last page" ), QString::null, this, SLOT( lastPage ( )), m_tb_tool, "last" ); - m_tb_find = new QToolBar ( this ); + m_tb_find = new QPEToolBar ( this ); addToolBar ( m_tb_find, "Search", QMainWindow::Top, true ); m_tb_find-> setHorizontalStretchable ( true ); m_tb_find-> hide ( ); diff --git a/noncore/unsupported/qpdf/qpdf.h b/noncore/unsupported/qpdf/qpdf.h index 8b3cff9..fd4f013 100644 --- a/noncore/unsupported/qpdf/qpdf.h +++ b/noncore/unsupported/qpdf/qpdf.h @@ -5,7 +5,7 @@ #include <qmainwindow.h> -#define QPDF_QPE_ONLY 1 // ofileselector does not work right currently +//#define QPDF_QPE_ONLY 1 class QPEOutputDev; class PDFDoc; |