⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 link.cpp.svn-base

📁 okular
💻 SVN-BASE
字号:
/*************************************************************************** *   Copyright (C) 2004-2005 by Enrico Ros <eros.kde@email.it>             * *                                                                         * *   This program is free software; you can redistribute it and/or modify  * *   it under the terms of the GNU General Public License as published by  * *   the Free Software Foundation; either version 2 of the License, or     * *   (at your option) any later version.                                   * ***************************************************************************/// kde includes#include <klocale.h>// local includes#include "link.h"KPDFLink::~KPDFLink(){}QString KPDFLink::linkTip() const{    return "";}// Link TipsQString KPDFLinkGoto::linkTip() const{    return m_extFileName.isEmpty() ? "" : i18n("Open external file");}QString KPDFLinkExecute::linkTip() const{    return i18n( "Execute '%1'...", m_fileName );}QString KPDFLinkBrowse::linkTip() const{    return m_url;}QString KPDFLinkAction::linkTip() const{    switch ( m_type )    {        case PageFirst:            return i18n( "First Page" );        case PagePrev:            return i18n( "Previous Page" );        case PageNext:            return i18n( "Next Page" );        case PageLast:            return i18n( "Last Page" );        case HistoryBack:            return i18n( "Back" );        case HistoryForward:            return i18n( "Forward" );        case Quit:            return i18n( "Quit" );        case Presentation:            return i18n( "Start Presentation" );        case EndPresentation:            return i18n( "End Presentation" );        case Find:            return i18n( "Find..." );        case GoToPage:            return i18n( "Go To Page..." );        case Close:        default: ;    }    return "";}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -