Add some whatsthis from kghostview

svn path=/trunk/kdegraphics/kpdf/; revision=251030
This commit is contained in:
Laurent Montel 2003-09-14 16:51:29 +00:00
parent 43285ccc9f
commit 63083bb505
2 changed files with 10 additions and 3 deletions

View file

@ -77,10 +77,15 @@ Part::Part(QWidget *parentWidget, const char *widgetName,
actionCollection(), "back");
KStdAction::forward (this, SLOT(forward()),
actionCollection(), "forward");
KStdAction::prior (this, SLOT(slotPreviousPage()),
m_prevPage = KStdAction::prior(this, SLOT(slotPreviousPage()),
actionCollection(), "previous_page");
KStdAction::next (this, SLOT(slotNextPage()),
m_prevPage->setWhatsThis( i18n( "Moves to the previous page of the document" ) );
m_nextPage = KStdAction::next(this, SLOT(slotNextPage()),
actionCollection(), "next_page" );
m_nextPage->setWhatsThis( i18n( "Moves to the next page of the document" ) );
m_firstPage = KStdAction::firstPage( this, SLOT( slotGotoStart() ),
actionCollection(), "goToStart" );
m_firstPage->setWhatsThis( i18n( "Moves to the first page of the document" ) );

View file

@ -101,8 +101,10 @@ namespace KPDF
PDFPartView * pdfpartview;
KAction* m_firstPage;
KAction* m_lastPage;
KAction* m_prevPage;
KAction* m_nextPage;
KToggleAction* m_fitToWidth;
KToggleAction* m_fitToWidth;
int m_currentPage;