2009-02-05 14:21:47 +00:00
|
|
|
/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.berlios.de>
|
2009-01-28 20:55:45 +00:00
|
|
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
|
|
|
|
|
|
|
#ifndef __GROUPS_HH_INCLUDED__
|
|
|
|
#define __GROUPS_HH_INCLUDED__
|
|
|
|
|
|
|
|
#include "ui_groups.h"
|
|
|
|
#include "config.hh"
|
|
|
|
#include "dictionary.hh"
|
|
|
|
#include "groups_widgets.hh"
|
|
|
|
#include <QToolButton>
|
|
|
|
|
2009-04-30 15:29:03 +00:00
|
|
|
class Groups: public QWidget
|
2009-01-28 20:55:45 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
Groups( QWidget * parent,
|
|
|
|
std::vector< sptr< Dictionary::Class > > const &,
|
|
|
|
Config::Groups const & );
|
|
|
|
|
|
|
|
Config::Groups getGroups() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::Groups ui;
|
|
|
|
std::vector< sptr< Dictionary::Class > > const & dicts;
|
|
|
|
Config::Groups groups;
|
|
|
|
|
|
|
|
// Reacts to the event that the number of groups is possibly changed
|
|
|
|
void countChanged();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void addNew();
|
|
|
|
void renameCurrent();
|
|
|
|
void removeCurrent();
|
2009-04-29 23:32:42 +00:00
|
|
|
void removeAll();
|
2009-01-28 20:55:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|