goldendict-ng/orderandprops.hh
Tvangeste 5035f6aa0d Better keyboard support in Dictionaries tab:
1. Pressing Down Arrow allows to jump from the Quick Filter to the dictionaries list.
2. Navigating through dictionary list via keyboard (Up/Down) results in dictionary details
   to be shown on the right. Previously, only mouse clicks updated the dictionary info.
2013-01-07 09:57:34 +01:00

42 lines
1.2 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 );
Config::Group getCurrentDictionaryOrder() const;
Config::Group getCurrentInactiveDictionaries() const;
private slots:
void dictionarySelectionChanged( const QItemSelection &current );
void inactiveDictionarySelectionChanged( const QItemSelection &current );
void contextMenuRequested( const QPoint & pos );
void filterChanged( QString const & filterText );
void dictListFocused();
void inactiveDictListFocused();
private:
Ui::OrderAndProps ui;
void disableDictionaryDescription();
void describeDictionary( DictListWidget *, QModelIndex const & );
};
#endif