goldendict-ng/src/ui/chineseconversion.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
594 B
C++
Raw Normal View History

/* This file is (c) 2015 Zhe Wang <0x1997@gmail.com>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef __CHINESE_CONVERSION_HH_INCLUDED__
#define __CHINESE_CONVERSION_HH_INCLUDED__
#include <QGroupBox>
#include "config.hh"
namespace Ui {
class ChineseConversion;
}
class ChineseConversion: public QGroupBox
{
Q_OBJECT
public:
ChineseConversion( QWidget * parent, Config::Chinese const & );
~ChineseConversion();
void getConfig( Config::Chinese & ) const;
private:
Ui::ChineseConversion * ui;
};
#endif // __CHINESE_CONVERSION_HH_INCLUDED__