2010-05-08 18:59:59 +00:00
|
|
|
/* This file is (c) 2008-2010 Konstantin Isakov <ikm@users.berlios.de>
|
2009-05-18 18:01:50 +00:00
|
|
|
* 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"
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
2009-05-24 15:45:37 +00:00
|
|
|
private slots:
|
|
|
|
|
|
|
|
void on_dictionaryOrder_clicked( QModelIndex const & );
|
|
|
|
void on_inactiveDictionaries_clicked( QModelIndex const & );
|
|
|
|
|
2009-05-18 18:01:50 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
Ui::OrderAndProps ui;
|
|
|
|
|
2009-05-24 15:45:37 +00:00
|
|
|
void disableDictionaryDescription();
|
|
|
|
void describeDictionary( DictListWidget *, QModelIndex const & );
|
2009-05-18 18:01:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|