mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 04:24:09 +00:00
25 lines
533 B
C++
25 lines
533 B
C++
|
/* This file is (c) 2008-2009 Konstantin Isakov <ikm@users.sf.net>
|
||
|
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
|
||
|
|
||
|
#ifndef __GROUPCOMBOBOX_HH_INCLUDED__
|
||
|
#define __GROUPCOMBOBOX_HH_INCLUDED__
|
||
|
|
||
|
#include <QComboBox>
|
||
|
#include "instances.hh"
|
||
|
|
||
|
/// This is a combo box which is for choosing the dictionary group
|
||
|
class GroupComboBox: public QComboBox
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
|
||
|
GroupComboBox( QWidget * parent );
|
||
|
|
||
|
/// Fills combo-box with the given groups
|
||
|
void fill( Instances::Groups const & );
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|