goldendict-ng/editdictionaries.hh
xiaoyifang c664ac315c dictionary group ,id match performance improve .
use qmap to replace the double for loop check.
2022-03-14 00:17:34 +08:00

99 lines
2.3 KiB
C++

/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef __EDITDICTIONARIES_HH_INCLUDED__
#define __EDITDICTIONARIES_HH_INCLUDED__
#include "dictionary.hh"
#include "config.hh"
#include "ui_editdictionaries.h"
#include "sources.hh"
#include "orderandprops.hh"
#include "groups.hh"
#include "instances.hh"
#include "helpwindow.hh"
#include <QNetworkAccessManager>
#include <QAction>
class EditDictionaries: public QDialog
{
Q_OBJECT
public:
EditDictionaries( QWidget * parent, Config::Class & cfg,
std::vector< sptr< Dictionary::Class > > & dictionaries,
QMap<std::string, sptr< Dictionary::Class > > & dictMap_,
Instances::Groups & groupInstances, // We only clear those on rescan
QNetworkAccessManager & dictNetMgr );
~EditDictionaries()
{ if( helpWindow ) delete helpWindow; }
/// Instructs the dialog to position itself on editing the given group.
void editGroup( unsigned id );
/// Returns true if any changes to the 'dictionaries' vector passed were done.
bool areDictionariesChanged() const
{ return dictionariesChanged; }
/// Returns true if groups were changed.
bool areGroupsChanged() const
{ return groupsChanged; }
protected:
virtual void accept();
private slots:
void on_tabs_currentChanged( int index );
void buttonBoxClicked( QAbstractButton * button );
void rescanSources();
void helpRequested();
void closeHelp();
signals:
void showDictionaryInfo( QString const & dictId );
void showDictionaryHeadwords( QString const & dictId );
private:
bool isSourcesChanged() const;
void acceptChangedSources( bool rebuildGroups );
void save();
private:
Config::Class & cfg;
std::vector< sptr< Dictionary::Class > > & dictionaries;
QMap<std::string, sptr< Dictionary::Class > > & dictMap;
Instances::Groups & groupInstances;
QNetworkAccessManager & dictNetMgr;
// Backed up to decide later if something was changed or not
Config::Class origCfg;
Ui::EditDictionaries ui;
Sources sources;
sptr< OrderAndProps > orderAndProps;
sptr< Groups > groups;
bool dictionariesChanged;
bool groupsChanged;
int lastCurrentTab;
Help::HelpWindow * helpWindow;
QAction helpAction;
};
#endif