icon renaming:

- pencil -> draw-freehand

svn path=/trunk/KDE/kdegraphics/okular/; revision=746342
remotes/origin/KDE/4.0
Pino Toscano 19 years ago
parent 9b4e3bd80a
commit 1022878a5a
  1. 2
      part.cpp
  2. 2
      ui/pageview.cpp
  3. 2
      ui/pageviewutils.cpp
  4. 2
      ui/presentationwidget.cpp

@ -195,7 +195,7 @@ m_cliPresentation(false), m_generatorGuiClient(0)
// [left toolbox: Reviews] | []
Reviews * reviewsWidget = new Reviews( 0, m_document );
m_sidebar->addItem( reviewsWidget, KIcon("pencil"), i18n("Reviews") );
m_sidebar->addItem( reviewsWidget, KIcon("draw-freehand"), i18n("Reviews") );
m_sidebar->setItemEnabled( 2, false );
// [left toolbox: Bookmarks] | []

@ -471,7 +471,7 @@ void PageView::setupActions( KActionCollection * ac )
d->aMouseTextSelect->setShortcut( Qt::CTRL + Qt::Key_4 );
d->aMouseTextSelect->setActionGroup( actGroup );
d->aToggleAnnotator = new KToggleAction(KIcon( "pencil" ), i18n("&Review"), this);
d->aToggleAnnotator = new KToggleAction(KIcon( "draw-freehand" ), i18n("&Review"), this);
ac->addAction("mouse_toggle_annotate", d->aToggleAnnotator );
d->aToggleAnnotator->setCheckable( true );
connect( d->aToggleAnnotator, SIGNAL( toggled( bool ) ), SLOT( slotToggleAnnotator( bool ) ) );

@ -176,7 +176,7 @@ void PageViewMessage::display( const QString & message, Icon icon, int durationM
switch ( icon )
{
case Annotation:
symbol = SmallIcon( "pencil" );
symbol = SmallIcon( "draw-freehand" );
break;
case Find:
symbol = SmallIcon( "zoom-original" );

@ -445,7 +445,7 @@ void PresentationWidget::paintEvent( QPaintEvent * pe )
connect( m_pagesEdit, SIGNAL( returnPressed() ), this, SLOT( slotPageChanged() ) );
m_topBar->addAction( KIcon( layoutDirection() == Qt::RightToLeft ? "go-next-rtl" : "go-next" ), i18n("Next Page"), this, SLOT( slotNextPage() ) );
m_topBar->addSeparator();
QAction * drawingAct = m_topBar->addAction( KIcon( "pencil" ), i18n( "Toggle Drawing Mode" ) );
QAction * drawingAct = m_topBar->addAction( KIcon( "draw-freehand" ), i18n( "Toggle Drawing Mode" ) );
drawingAct->setCheckable( true );
connect( drawingAct, SIGNAL( toggled( bool ) ), this, SLOT( togglePencilMode( bool ) ) );
QAction * eraseDrawingAct = m_topBar->addAction( KIcon( "draw-eraser" ), i18n( "Erase Drawings" ) );

Loading…
Cancel
Save