2010-11-14 15:47:03 +00:00
|
|
|
/* This file is (c) 2008-2011 Konstantin Isakov <ikm@users.berlios.de>
|
2009-01-28 20:55:45 +00:00
|
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
|
|
|
|
#ifndef __ARTICLEVIEW_HH_INCLUDED__
|
|
|
|
#define __ARTICLEVIEW_HH_INCLUDED__
|
|
|
|
|
|
|
|
#include <QWebView>
|
|
|
|
#include <QUrl>
|
2009-05-29 19:48:50 +00:00
|
|
|
#include <QMap>
|
2009-03-26 19:00:08 +00:00
|
|
|
#include <list>
|
2009-01-28 20:55:45 +00:00
|
|
|
#include "article_netmgr.hh"
|
|
|
|
#include "instances.hh"
|
2009-05-14 19:27:19 +00:00
|
|
|
#include "groupcombobox.hh"
|
2009-01-28 20:55:45 +00:00
|
|
|
#include "ui_articleview.h"
|
|
|
|
|
|
|
|
/// 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 QFrame
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
ArticleNetworkAccessManager & articleNetMgr;
|
2009-04-12 16:22:42 +00:00
|
|
|
std::vector< sptr< Dictionary::Class > > const & allDictionaries;
|
2009-01-28 20:55:45 +00:00
|
|
|
Instances::Groups const & groups;
|
|
|
|
bool popupView;
|
2009-04-10 21:07:03 +00:00
|
|
|
Config::Class const & cfg;
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
Ui::ArticleView ui;
|
|
|
|
|
2009-05-29 22:04:43 +00:00
|
|
|
QAction pasteAction, articleUpAction, articleDownAction,
|
|
|
|
goBackAction, goForwardAction, openSearchAction;
|
2009-05-16 11:14:43 +00:00
|
|
|
bool searchIsOpened;
|
2009-05-12 10:52:11 +00:00
|
|
|
|
2010-11-14 15:38:41 +00:00
|
|
|
#ifdef Q_OS_WIN32
|
|
|
|
// Used in Windows only for PlaySound mode
|
|
|
|
vector< char > winWavData;
|
|
|
|
#endif
|
|
|
|
|
2009-03-26 19:00:08 +00:00
|
|
|
/// Any resource we've decided to download off the dictionary gets stored here.
|
|
|
|
/// Full vector capacity is used for search requests, where we have to make
|
|
|
|
/// a multitude of requests.
|
|
|
|
std::list< sptr< Dictionary::DataRequest > > resourceDownloadRequests;
|
|
|
|
/// Url of the resourceDownloadRequests
|
|
|
|
QUrl resourceDownloadUrl;
|
|
|
|
|
|
|
|
/// For resources opened via desktop services
|
2009-02-08 21:54:19 +00:00
|
|
|
QString desktopOpenedTempFile;
|
2009-02-08 14:40:26 +00:00
|
|
|
|
2009-09-23 18:44:38 +00:00
|
|
|
QAction * dictionaryBarToggled;
|
2010-03-30 20:15:55 +00:00
|
|
|
Config::MutedDictionaries * mutedDictionaries;
|
2009-05-14 19:27:19 +00:00
|
|
|
GroupComboBox const * groupComboBox;
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
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 &,
|
2009-04-12 16:22:42 +00:00
|
|
|
std::vector< sptr< Dictionary::Class > > const & allDictionaries,
|
2009-01-28 20:55:45 +00:00
|
|
|
Instances::Groups const &,
|
2009-04-10 21:07:03 +00:00
|
|
|
bool popupView,
|
2009-05-14 19:27:19 +00:00
|
|
|
Config::Class const & cfg,
|
2009-09-23 18:44:38 +00:00
|
|
|
QAction * dictionaryBarToggled = 0,
|
2010-03-30 20:15:55 +00:00
|
|
|
Config::MutedDictionaries * mutedDictionaries = 0,
|
2009-05-14 19:27:19 +00:00
|
|
|
GroupComboBox const * groupComboBox = 0 );
|
|
|
|
|
|
|
|
/// Sets the currently active group combo box. When looking up selections,
|
|
|
|
/// this allows presenting a choice of looking up in the currently chosen
|
|
|
|
/// group. Setting this to 0 disables this. It is 0 by default.
|
|
|
|
void setGroupComboBox( GroupComboBox const * );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-02-06 15:37:37 +00:00
|
|
|
~ArticleView();
|
|
|
|
|
2009-05-29 19:48:50 +00:00
|
|
|
typedef QMap< QString, QString > Contexts;
|
|
|
|
|
2009-05-11 19:14:28 +00:00
|
|
|
/// 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.
|
2009-05-29 19:48:50 +00:00
|
|
|
/// 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.
|
2009-05-11 19:14:28 +00:00
|
|
|
void showDefinition( QString const & word, unsigned group,
|
2009-05-29 19:48:50 +00:00
|
|
|
QString const & scrollTo = QString(),
|
|
|
|
Contexts const & contexts = Contexts() );
|
2009-02-01 00:08:08 +00:00
|
|
|
|
2009-02-08 16:50:18 +00:00
|
|
|
/// Clears the view and sets the application-global waiting cursor,
|
|
|
|
/// which will be restored when some article loads eventually.
|
|
|
|
void showAnticipation();
|
2009-04-30 19:57:25 +00:00
|
|
|
|
2009-02-08 15:49:17 +00:00
|
|
|
/// 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.
|
2009-05-29 19:48:50 +00:00
|
|
|
/// 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.
|
2009-05-11 19:14:28 +00:00
|
|
|
void openLink( QUrl const & url, QUrl const & referrer,
|
2009-05-29 19:48:50 +00:00
|
|
|
QString const & scrollTo = QString(),
|
|
|
|
Contexts const & contexts = Contexts() );
|
2009-04-30 19:57:25 +00:00
|
|
|
|
2009-09-23 18:44:38 +00:00
|
|
|
/// Called when the state of dictionary bar changes and the view is active.
|
|
|
|
/// The function reloads content if the change affects it.
|
|
|
|
void updateMutedContents();
|
|
|
|
|
2009-05-29 22:04:43 +00:00
|
|
|
public slots:
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
/// Goes back in history
|
|
|
|
void back()
|
2009-05-29 22:04:43 +00:00
|
|
|
{ saveHistoryUserData(); ui.definition->back(); }
|
2009-01-28 20:55:45 +00:00
|
|
|
|
|
|
|
/// Goes forward in history
|
|
|
|
void forward()
|
2009-05-29 22:04:43 +00:00
|
|
|
{ saveHistoryUserData(); ui.definition->forward(); }
|
|
|
|
|
|
|
|
public:
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-03-29 17:38:54 +00:00
|
|
|
/// Takes the focus to the view
|
|
|
|
void focus()
|
|
|
|
{ ui.definition->setFocus( Qt::ShortcutFocusReason ); }
|
|
|
|
|
2009-05-11 11:03:36 +00:00
|
|
|
/// Reloads the view
|
|
|
|
void reload()
|
|
|
|
{ ui.definition->reload(); }
|
|
|
|
|
2009-04-10 21:07:03 +00:00
|
|
|
/// Returns true if there's an audio reference on the page, false otherwise.
|
|
|
|
bool hasSound();
|
|
|
|
|
|
|
|
/// Plays the first audio reference on the page, if any.
|
|
|
|
void playSound();
|
|
|
|
|
2009-04-30 19:57:25 +00:00
|
|
|
void setZoomFactor( qreal factor )
|
|
|
|
{ ui.definition->setZoomFactor( factor ); }
|
|
|
|
|
2009-05-01 11:17:29 +00:00
|
|
|
/// Returns current article's text in .html format
|
|
|
|
QString toHtml();
|
|
|
|
|
|
|
|
/// Returns current article's title
|
|
|
|
QString getTitle();
|
2009-05-01 12:20:33 +00:00
|
|
|
|
|
|
|
/// Prints current article
|
|
|
|
void print( QPrinter * ) const;
|
2009-05-16 11:14:43 +00:00
|
|
|
|
|
|
|
/// Closes search if it's open and returns true. Returns false if it
|
|
|
|
/// wasn't open.
|
|
|
|
bool closeSearch();
|
2009-05-01 11:17:29 +00:00
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
signals:
|
|
|
|
|
|
|
|
void iconChanged( ArticleView *, QIcon const & icon );
|
|
|
|
|
|
|
|
void titleChanged( ArticleView *, QString const & title );
|
|
|
|
|
2009-05-14 19:27:19 +00:00
|
|
|
void pageLoaded( ArticleView * );
|
2009-04-10 21:07:03 +00:00
|
|
|
|
2009-02-08 15:49:17 +00:00
|
|
|
/// Singals that the following link was requested to be opened in new tab
|
2009-05-11 19:14:28 +00:00
|
|
|
void openLinkInNewTab( QUrl const &, QUrl const & referrer,
|
2009-05-29 19:48:50 +00:00
|
|
|
QString const & fromArticle,
|
|
|
|
ArticleView::Contexts const & contexts );
|
2009-02-08 15:49:17 +00:00
|
|
|
/// Singals that the following definition was requested to be showed in new tab
|
2009-05-11 19:14:28 +00:00
|
|
|
void showDefinitionInNewTab( QString const & word, unsigned group,
|
2009-05-29 19:48:50 +00:00
|
|
|
QString const & fromArticle,
|
|
|
|
ArticleView::Contexts const & contexts );
|
2009-02-08 15:49:17 +00:00
|
|
|
|
2009-05-12 13:25:18 +00:00
|
|
|
/// Emitted when user types a text key. This should typically be used to
|
|
|
|
/// switch focus to word input.
|
|
|
|
void typingEvent( QString const & text );
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
private slots:
|
|
|
|
|
2009-02-08 16:50:18 +00:00
|
|
|
void loadFinished( bool ok );
|
2009-01-28 20:55:45 +00:00
|
|
|
void handleTitleChanged( QString const & title );
|
|
|
|
void handleUrlChanged( QUrl const & url );
|
|
|
|
void linkClicked( QUrl const & );
|
|
|
|
void contextMenuRequested( QPoint const & );
|
|
|
|
|
2009-03-26 19:00:08 +00:00
|
|
|
void resourceDownloadFinished();
|
|
|
|
|
2009-05-12 10:52:11 +00:00
|
|
|
/// We handle pasting by attempting to define the word in clipboard.
|
|
|
|
void pasteTriggered();
|
|
|
|
|
2009-05-15 14:11:54 +00:00
|
|
|
/// Nagivates to the previous article relative to the active one.
|
|
|
|
void moveOneArticleUp();
|
|
|
|
|
|
|
|
/// Nagivates to the next article relative to the active one.
|
|
|
|
void moveOneArticleDown();
|
|
|
|
|
2009-05-16 11:14:43 +00:00
|
|
|
/// Opens the search area
|
|
|
|
void openSearch();
|
|
|
|
|
|
|
|
void on_searchPrevious_clicked();
|
|
|
|
void on_searchNext_clicked();
|
|
|
|
void on_searchText_textEdited();
|
|
|
|
void on_searchText_returnPressed();
|
|
|
|
void on_searchCloseButton_clicked();
|
|
|
|
|
2010-04-08 20:37:59 +00:00
|
|
|
/// Handles the double-click from the definition.
|
|
|
|
void doubleClicked();
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
/// Deduces group from the url. If there doesn't seem to be any group,
|
2009-04-10 12:48:40 +00:00
|
|
|
/// returns 0.
|
|
|
|
unsigned getGroup( QUrl const & );
|
2009-01-28 20:55:45 +00:00
|
|
|
|
2009-05-11 22:25:22 +00:00
|
|
|
/// Returns all articles current present in view, as a list of dictionary
|
|
|
|
/// string ids.
|
|
|
|
QStringList getArticlesList();
|
|
|
|
|
|
|
|
/// Returns current article in the view, in the form of "gdfrom-xxx" id.
|
2009-05-11 19:14:28 +00:00
|
|
|
QString getCurrentArticle();
|
|
|
|
|
2009-05-11 22:25:22 +00:00
|
|
|
/// Sets the current article by executing a javascript code.
|
2009-05-15 14:11:54 +00:00
|
|
|
/// If moveToIt is true, it moves the focus to it as well.
|
|
|
|
void setCurrentArticle( QString const &, bool moveToIt = false );
|
2009-05-11 22:25:22 +00:00
|
|
|
|
2009-05-29 19:48:50 +00:00
|
|
|
/// Checks if the given article in form of "gdfrom-xxx" is inside a "website"
|
|
|
|
/// frame.
|
|
|
|
bool isFramedArticle( QString const & );
|
|
|
|
|
|
|
|
/// Checks if the given link is to be opened externally, as opposed to opening
|
|
|
|
/// it in-place.
|
|
|
|
bool isExternalLink( QUrl const & url );
|
|
|
|
|
|
|
|
/// 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 );
|
|
|
|
|
|
|
|
/// Use the known information about the current frame to update the current
|
|
|
|
/// article's value.
|
|
|
|
void updateCurrentArticleFromCurrentFrame( QWebFrame * frame = 0 );
|
|
|
|
|
2009-05-29 22:04:43 +00:00
|
|
|
/// Saves current article and scroll position for the current history item.
|
|
|
|
/// Should be used when leaving the page.
|
|
|
|
void saveHistoryUserData();
|
|
|
|
|
2009-02-08 21:54:19 +00:00
|
|
|
/// Attempts removing last temporary file created.
|
|
|
|
void cleanupTemp();
|
2009-04-30 19:57:25 +00:00
|
|
|
|
2009-05-12 13:25:18 +00:00
|
|
|
bool eventFilter( QObject * obj, QEvent * ev );
|
|
|
|
|
2009-05-16 11:14:43 +00:00
|
|
|
void performFindOperation( bool restart, bool backwards );
|
|
|
|
|
2010-11-15 15:22:35 +00:00
|
|
|
void reloadStyleSheet();
|
|
|
|
|
2009-09-23 18:44:38 +00:00
|
|
|
/// 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 );
|
|
|
|
|
2009-01-28 20:55:45 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
// We need this to hide the search bar when we're showed
|
|
|
|
void showEvent( QShowEvent * );
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|