mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-19 03:54:07 +00:00
b5349478cf
The next commit will add `.git-blame-ignore-revs` https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view
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__
|