mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 00:14:06 +00:00
1a0af48a7a
* allow the user to configure word,text,sentence Anki fields * if sentence field is not set, don't add it * mark the target word bold, if possible * Update how to connect with anki.md * rename default field names
29 lines
586 B
C++
29 lines
586 B
C++
#ifndef ANKICONNECTOR_H
|
|
#define ANKICONNECTOR_H
|
|
|
|
#include "config.hh"
|
|
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
#include <QObject>
|
|
|
|
class AnkiConnector : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit AnkiConnector( QObject * parent, Config::Class const & cfg );
|
|
|
|
void sendToAnki( QString const & word, QString const & text, QString const & sentence );
|
|
|
|
private:
|
|
QNetworkAccessManager * mgr;
|
|
Config::Class const & cfg;
|
|
public :
|
|
signals:
|
|
void errorText( QString const & );
|
|
private slots:
|
|
void finishedSlot(QNetworkReply * reply);
|
|
};
|
|
|
|
#endif // ANKICONNECTOR_H
|