mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
29 lines
594 B
C++
29 lines
594 B
C++
/* 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__
|