File size: 15,609 Bytes
b6bd94d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 |
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#pragma once
#include <QAction>
#include <QMap>
#include <QSet>
#include <list>
#include "article_netmgr.hh"
#include "audio/audioplayerinterface.hh"
#include "instances.hh"
#include "groupcombobox.hh"
#include "globalbroadcaster.hh"
#include "article_inspect.hh"
#include "ankiconnector.hh"
#include "webmultimediadownload.hh"
#include "base_type.hh"
#include "articlewebview.hh"
#include "ui/searchpanel.hh"
#include "ui/ftssearchpanel.hh"
#include "dictionary_group.hh"
class ResourceToSaveHandler;
class ArticleViewAgent;
/// A widget with the web view tailored to view and handle articles -- it
/// uses the appropriate netmgr, handles link clicks, rmb clicks etc
class ArticleView: public QWidget
{
Q_OBJECT
ArticleNetworkAccessManager & articleNetMgr;
const AudioPlayerPtr & audioPlayer;
std::unique_ptr< DictionaryGroup > dictionaryGroup;
bool popupView;
QString customTitle;
const Config::Class & cfg;
QWebChannel * channel;
ArticleViewAgent * agent;
AnkiConnector * ankiConnector;
QAction pasteAction, articleUpAction, articleDownAction, goBackAction, goForwardAction, selectCurrentArticleAction,
copyAsTextAction, inspectAction;
bool expandOptionalParts;
/// An action used to create Anki notes.
QAction sendToAnkiAction{ tr( "&Create Anki note" ), this };
/// For resources opened via desktop services
QSet< QString > desktopOpenedTempFiles;
/// For audio temporary files created for clipboard operations
QSet< QString > audioTempFiles;
QAction * dictionaryBarToggled;
unsigned currentGroupId;
const QLineEdit * translateLine;
/// current searching word.
QString currentWord;
/// current active dict id list;
QStringList currentActiveDictIds;
bool historyMode = false;
//current active dictionary id;
QString activeDictId;
QString audioLink_;
/// Search in results of full-text search
QString firstAvailableText;
QStringList uniqueMatches;
QString delayedHighlightText;
/// Flag indicating if this view is dedicated for website browsing
bool isWebsiteView = false;
/// Host part of the website URL for identification
QString websiteHost;
void highlightFTSResults();
void performFtsFindOperation( bool backwards );
public:
/// The popupView flag influences contents of the context menus to be
/// appropriate to the context of the view.
/// The groups aren't copied -- rather than that, the reference is kept
ArticleView( QWidget * parent,
ArticleNetworkAccessManager &,
bool popupView,
const Config::Class & cfg,
const QLineEdit * translateLine,
QAction * dictionaryBarToggled = nullptr,
unsigned currentGroupId = 0 );
void setCurrentGroupId( unsigned currengGrgId );
unsigned getCurrentGroupId();
void setAudioLink( QString audioLink );
QString getAudioLink() const;
QSize minimumSizeHint() const override;
void clearContent();
~ArticleView();
/// Loads a page at @p url into view.
void load( const QUrl & url, const QString & customTitle = {} );
void load( QString url, const QString & customTitle = {} );
void setCustomTitle( const QString & customTitle );
/// Returns "gdfrom-" + dictionaryId.
static QString scrollToFromDictionaryId( const QString & dictionaryId );
/// Shows the definition of the given word with the given group.
/// scrollTo can be optionally set to a "gdfrom-xxxx" identifier to position
/// the page to that article on load.
/// contexts is an optional map of context values to be passed for dictionaries.
/// The only values to pass here are ones obtained from showDefinitionInNewTab()
/// signal or none at all.
void showDefinition( const QString & word,
unsigned group,
const QString & scrollTo = QString(),
const Contexts & contexts = Contexts() );
void showDefinition( const QString & word,
const QStringList & dictIDs,
const QRegularExpression & searchRegExp,
unsigned group,
bool ignoreDiacritics );
void showDefinition( const QString & word, const QStringList & dictIDs, unsigned group, bool ignoreDiacritics );
void sendToAnki( const QString & word, const QString & text, const QString & sentence );
/// Clears the view and sets the application-global waiting cursor,
/// which will be restored when some article loads eventually.
void showAnticipation();
/// Create a new Anki card from a currently displayed article with the provided id.
/// This function will call QWebEnginePage::runJavaScript() to fetch the corresponding HTML.
void makeAnkiCardFromArticle( const QString & article_id );
/// Opens the given link. Supposed to be used in response to
/// openLinkInNewTab() signal. The link scheme is therefore supposed to be
/// one of the internal ones.
/// contexts is an optional map of context values to be passed for dictionaries.
/// The only values to pass here are ones obtained from showDefinitionInNewTab()
/// signal or none at all.
void openLink( const QUrl & url,
const QUrl & referrer,
const QString & scrollTo = QString(),
const Contexts & contexts = Contexts() );
void playAudio( const QUrl & url );
void audioDownloadFinished( const sptr< Dictionary::DataRequest > & req );
/// Called when the state of dictionary bar changes and the view is active.
/// The function reloads content if the change affects it.
void updateMutedContents();
bool canGoBack();
bool canGoForward();
/// Called when preference changes
void setSelectionBySingleClick( bool set );
void setDelayedHighlightText( const QString & text );
/// \brief Set background as black if darkreader mode is enabled.
void syncBackgroundColorWithCfgDarkReader() const;
QString getCurrentWord();
/// Returns whether this view is an internal page (welcome, untitled, etc.)
bool isInternalPage() const
{
return webview->url().scheme() == "gdinternal";
}
private:
// widgets
ArticleWebView * webview;
SearchPanel * searchPanel;
FtsSearchPanel * ftsSearchPanel;
public slots:
/// Goes back in history
void back();
/// Goes forward in history
void forward();
/// Takes the focus to the view
void focus()
{
webview->setFocus();
}
/// Sends *word* to Anki.
void handleAnkiAction();
public:
/// Reloads the view
void reload();
void stopSound();
/// Returns true if there's an audio reference on the page, false otherwise.
void hasSound( const std::function< void( bool has ) > & callback );
/// Plays the first audio reference on the page, if any.
void playSound();
void setZoomFactor( qreal factor )
{
qreal existedFactor = webview->zoomFactor();
if ( !qFuzzyCompare( existedFactor, factor ) ) {
qDebug() << "zoom factor ,existed:" << existedFactor << "set:" << factor;
webview->setZoomFactor( factor );
//webview->page()->setZoomFactor(factor);
}
}
/// Returns whether this view is for website browsing
bool isWebsite() const
{
return isWebsiteView;
}
/// Sets whether this view is for website browsing
void setWebsite( bool website )
{
isWebsiteView = website;
}
/// Returns the website host
QString getWebsiteHost() const
{
return websiteHost;
}
/// Sets website host
void setWebsiteHost( const QString & host );
/// Returns current article's text in .html format
void toHtml( const std::function< void( QString & ) > & callback );
void setHtml( const QString & content, const QUrl & baseUrl );
QWebEnginePage * page();
void setContent( const QByteArray & data, const QString & mimeType = QString(), const QUrl & baseUrl = QUrl() );
/// Returns current article's title
QString getTitle();
/// Returns the phrase translated by the current article.
QString getWord() const;
/// Prints current article
void print( QPrinter * ) const;
/// Closes search if it's open and returns true. Returns false if it
/// wasn't open.
bool closeSearch();
bool isSearchOpened();
/// Jumps to the article specified by the dictionary id,
/// by executing a javascript code.
void jumpToDictionary( const QString &, bool force );
/// Returns all articles currently present in view, as a list of dictionary
/// string ids.
QStringList getArticlesList();
/// Returns the dictionary id of the currently active article in the view.
QString getActiveArticleId();
void setActiveArticleId( const QString & );
ResourceToSaveHandler * saveResource( const QUrl & url, const QString & fileName );
void findText( QString & text,
const QWebEnginePage::FindFlags & f,
const std::function< void( bool match ) > & callback = nullptr );
signals:
void titleChanged( ArticleView *, const QString & title );
void pageLoaded( ArticleView * );
/// Signals that the following link was requested to be opened in new tab
void openLinkInNewTab( const QUrl &, const QUrl & referrer, const QString & fromArticle, const Contexts & contexts );
/// Signals that the following definition was requested to be showed in new tab
void showDefinitionInNewTab( const QString & word,
unsigned group,
const QString & fromArticle,
const Contexts & contexts );
/// Put translated word into history
void sendWordToHistory( const QString & word );
/// Emitted when user types a text key. This should typically be used to
/// switch focus to word input.
void typingEvent( const QString & text );
void statusBarMessage( const QString & message, int timeout = 0, const QPixmap & pixmap = QPixmap() );
/// Signals that the dictionaries pane was requested to be showed
void showDictsPane();
/// Signals that the founded dictionaries ready to be showed
void updateFoundInDictsList();
/// Emitted when an article becomes active,
/// typically in response to user actions
/// (clicking on the article or using shortcuts).
/// id - the dictionary id of the active article.
void activeArticleChanged( const ArticleView *, const QString & id );
/// Signal to add word to history even if history is disabled
void forceAddWordToHistory( const QString & word );
/// Signal to close popup menu
void closePopupMenu();
void sendWordToInputLine( const QString & word );
void storeResourceSavePath( const QString & );
void zoomIn();
void zoomOut();
/// signal finished javascript;
void notifyJavascriptFinished();
void inspectSignal( QWebEnginePage * page );
void saveBookmarkSignal( const QString & bookmark );
public slots:
/// Opens the search (Ctrl+F)
void openSearch();
void on_searchPrevious_clicked();
void on_searchNext_clicked();
void onJsActiveArticleChanged( const QString & id );
/// Handles F3 and Shift+F3 for search navigation
bool handleF3( QObject * obj, QEvent * ev );
/// Selects an entire text of the current article
void selectCurrentArticle();
//receive signal from weburlinterceptor.
void linkClicked( const QUrl & );
//aim to receive signal from html. the fragment url click to navigation through page wil not be intecepted by weburlinteceptor
Q_INVOKABLE void linkClickedInHtml( const QUrl & );
private slots:
void inspectElement();
void loadFinished( bool ok );
void handleTitleChanged( const QString & title );
void attachWebChannelToHtml();
void linkHovered( const QString & link );
void contextMenuRequested( const QPoint & );
bool isAudioLink( QUrl & targetUrl )
{
return ( targetUrl.scheme() == "gdau" || Utils::Url::isAudioUrl( targetUrl ) );
}
void resourceDownloadFinished( const sptr< Dictionary::DataRequest > & req, const QUrl & resourceDownloadUrl );
/// We handle pasting by attempting to define the word in clipboard.
void pasteTriggered();
unsigned getCurrentGroup();
/// Nagivates to the previous article relative to the active one.
void moveOneArticleUp();
/// Nagivates to the next article relative to the active one.
void moveOneArticleDown();
void on_searchText_textEdited();
void on_searchText_returnPressed();
void on_searchCloseButton_clicked();
void on_searchCaseSensitive_clicked( bool );
void on_ftsSearchPrevious_clicked();
void on_ftsSearchNext_clicked();
/// Handles the double-click from the definition.
void doubleClicked( QPoint pos );
/// Handles audio player error message
void audioPlayerError( const QString & message );
/// Copy current selection as plain text
void copyAsText();
void copyResourceToClipboard( const QUrl & url );
void setActiveDictIds( const ActiveDictIds & ad );
void dictionaryClear( const ActiveDictIds & ad );
private:
/// Deduces group from the url. If there doesn't seem to be any group,
/// returns 0.
unsigned getGroup( const QUrl & );
/// Returns current article in the view, in the form of "gdfrom-xxx" id.
QString getCurrentArticle();
/// Sets the current article by executing a javascript code.
/// If moveToIt is true, it moves the focus to it as well.
/// Returns true in case of success, false otherwise.
bool setCurrentArticle( const QString &, bool moveToIt = false );
/// Checks if the given article in form of "gdfrom-xxx" is inside a "website"
/// frame.
void isFramedArticle( const QString & article, const std::function< void( bool framed ) > & callback );
/// Sees if the last clicked link is from a website frame. If so, changes url
/// to point to url text translation instead, and saves the original
/// url to the appropriate "contexts" entry.
void tryMangleWebsiteClickedUrl( QUrl & url, Contexts & contexts );
/// Injects Dark Reader JavaScript for dark mode support
void injectDarkModeJavaScript();
/// Injects website-specific configuration script
void injectWebsiteConfigScript();
bool isDarkModeEnabled() const;
/// Attempts removing last temporary file created.
void cleanupTemp();
bool eventFilter( QObject * obj, QEvent * ev ) override;
void performFindOperation( bool backwards );
/// Returns the comma-separated list of dictionary ids which should be muted
/// for the given group. If there are none, returns empty string.
QString getMutedForGroup( unsigned group );
QStringList getMutedDictionaries( unsigned group );
};
class ResourceToSaveHandler: public QObject
{
Q_OBJECT
public:
explicit ResourceToSaveHandler( ArticleView * view, QString fileName );
void addRequest( const sptr< Dictionary::DataRequest > & req );
bool isEmpty()
{
return downloadRequests.empty();
}
signals:
void done();
void statusBarMessage( const QString & message, int timeout = 0, const QPixmap & pixmap = QPixmap() );
public slots:
void downloadFinished();
private:
std::list< sptr< Dictionary::DataRequest > > downloadRequests;
QString fileName;
bool alreadyDone;
};
class ArticleViewAgent: public QObject
{
Q_OBJECT
ArticleView * articleView;
public:
explicit ArticleViewAgent( ArticleView * articleView );
public slots:
Q_INVOKABLE void onJsActiveArticleChanged( const QString & id );
Q_INVOKABLE void linkClickedInHtml( const QUrl & );
Q_INVOKABLE void collapseInHtml( const QString & dictId, bool on = true ) const;
};
|