goldendict-ng/src/mainwindow.hh

152 lines
3.7 KiB
C++
Raw Normal View History

/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.berlios.de>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef __MAINWINDOW_HH_INCLUDED__
#define __MAINWINDOW_HH_INCLUDED__
#include <QMainWindow>
#include <QThread>
#include <QToolButton>
#include <QSystemTrayIcon>
#include <QNetworkAccessManager>
#include "ui_mainwindow.h"
#include "folding.hh"
#include "config.hh"
#include "dictionary.hh"
#include "initializing.hh"
#include "article_netmgr.hh"
#include "instances.hh"
#include "article_maker.hh"
#include "scanpopup.hh"
#include "articleview.hh"
2009-01-29 19:16:25 +00:00
#include "wordfinder.hh"
using std::string;
using std::vector;
class LoadDictionaries: public QThread, public Dictionary::Initializing
{
Q_OBJECT
vector< string > const & allFiles;
Config::Class const & cfg;
vector< sptr< Dictionary::Class > > dictionaries;
public:
LoadDictionaries( vector< string > const & allFiles, Config::Class const & cfg );
virtual void run();
vector< sptr< Dictionary::Class > > const & getDictionaries() const
{ return dictionaries; }
signals:
void indexingDictionarySignal( QString dictionaryName );
public:
virtual void indexingDictionary( string const & dictionaryName ) throw();
};
class MainWindow: public QMainWindow
{
Q_OBJECT
public:
MainWindow();
~MainWindow();
private:
QSystemTrayIcon * trayIcon;
Ui::MainWindow ui;
QToolBar * navToolbar;
QAction * navBack, * navForward, * enableScanPopup;
QMenu trayIconMenu;
QToolButton addTab;
Config::Class cfg;
vector< sptr< Dictionary::Class > > dictionaries;
vector< Instances::Group > groupInstances;
ArticleMaker articleMaker;
ArticleNetworkAccessManager articleNetMgr;
QNetworkAccessManager dictNetMgr; // We give dictionaries a separate manager,
// since their requests can be destroyed
// in a separate thread
2009-01-29 19:16:25 +00:00
WordFinder wordFinder;
sptr< ScanPopup > scanPopup;
::Initializing * initializing;
/// Creates, destroys or otherwise updates tray icon, according to the
/// current configuration and situation.
void updateTrayIcon();
void closeEvent( QCloseEvent * );
void makeDictionaries();
void updateStatusLine();
void updateGroupList();
void makeScanPopup();
void updateMatchResults( bool finished );
/// Returns the reference to dictionaries stored in the currently active
/// group, or to all dictionaries if there are no groups.
vector< sptr< Dictionary::Class > > const & getActiveDicts();
private slots:
// Executed in response to a user click on an 'add tab' tool button
void addNewTab();
// Executed in response to a user click on an 'close' button on a tab
void tabCloseRequested( int );
/// Triggered by the actions in the nav toolbar
void backClicked();
void forwardClicked();
/// ArticleView's title has changed
void titleChanged( ArticleView *, QString const & );
/// ArticleView's icon has changed
void iconChanged( ArticleView *, QIcon const & );
void editSources();
void editGroups();
void editPreferences();
void indexingDictionary( QString dictionaryName );
void currentGroupChanged( QString const & );
void translateInputChanged( QString const & );
void translateInputFinished();
void prefixMatchUpdated();
void prefixMatchFinished();
void wordListItemActivated( QListWidgetItem * );
void wordListSelectionChanged();
void openLinkInNewTab( QUrl const &, QUrl const & );
void showDefinitionInNewTab( QString const & word, QString const & group );
void showTranslationFor( QString const & );
void trayIconActivated( QSystemTrayIcon::ActivationReason );
void scanEnableToggled( bool );
void showMainWindow();
void visitHomepage();
void visitForum();
void showAbout();
};
#endif