mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
c664ac315c
use qmap to replace the double for loop check.
47 lines
1.3 KiB
C++
47 lines
1.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 __ORDERANDPROPS_HH_INCLUDED__
|
|
#define __ORDERANDPROPS_HH_INCLUDED__
|
|
|
|
#include "ui_orderandprops.h"
|
|
#include "groups_widgets.hh"
|
|
#include <QSortFilterProxyModel>
|
|
|
|
class OrderAndProps: public QWidget
|
|
{
|
|
Q_OBJECT;
|
|
|
|
public:
|
|
|
|
OrderAndProps( QWidget * parent, Config::Group const & dictionaryOrder,
|
|
Config::Group const & inactiveDictionaries,
|
|
std::vector< sptr< Dictionary::Class > > const & allDictionaries ,
|
|
QMap<std::string, sptr< Dictionary::Class > > const & dictMap);
|
|
|
|
Config::Group getCurrentDictionaryOrder() const;
|
|
Config::Group getCurrentInactiveDictionaries() const;
|
|
|
|
private slots:
|
|
|
|
void dictionarySelectionChanged( const QItemSelection ¤t );
|
|
void inactiveDictionarySelectionChanged( const QItemSelection ¤t );
|
|
void contextMenuRequested( const QPoint & pos );
|
|
void filterChanged( QString const & filterText );
|
|
void dictListFocused();
|
|
void inactiveDictListFocused();
|
|
void showDictNumbers();
|
|
|
|
private:
|
|
|
|
Ui::OrderAndProps ui;
|
|
|
|
void disableDictionaryDescription();
|
|
void describeDictionary( DictListWidget *, QModelIndex const & );
|
|
|
|
signals:
|
|
void showDictionaryHeadwords( QString const & dictId );
|
|
};
|
|
|
|
#endif
|