代码拉取完成,页面将自动刷新
#ifndef NOTE_H
#define NOTE_H
#include <QString>
#include <QDateTime>
#include <QVector>
#include <QTextEdit>
#include "ndb.h"
#include <QObject>
#include <QPushButton>
#include <QLabel>
#include <QMessageBox>
struct Note
{
int m_id=-1;
int m_taskId=-1;
QString m_text;
QDateTime m_datetime;
Note(QString text="");
Note(int id, int taskId, QString text, QDateTime datetime);
};
using NoteList = QVector<Note>;
class Notes: public QObject
{
Q_OBJECT
public:
NoteList *m_pnote_list=nullptr;
QTextEdit *m_pnote_edit=nullptr;
QPushButton *m_front_btn=nullptr;
QPushButton *m_next_btn=nullptr;
QPushButton *m_save_btn=nullptr;
QLabel *m_note_edit_time=nullptr;
QLabel *m_note_page=nullptr;
int m_taskId=-1;
Notes(QTextEdit *note_edit, QPushButton *front_btn, QPushButton *next_btn, QPushButton *save_btn,QLabel *note_edit_time, QLabel *note_page, QObject *parent=nullptr);
bool getNotes(int taskId);
void showNote();
void showNote(const Note ¬e);
void showNote(int index);
// 索引
int getIndex() const {return m_index;}
bool setIndex(int index);
bool addIndex();
bool reduceIndex();
bool isLast() const {return m_index >= m_pnote_list->size()-1;}
bool nextNote();
bool createNoteAndUpdateIndex(int taskId);
bool updateNote(Note ¬e);
bool deleteNoteFromListIndex(int index);
void update(int taskId);
void textChanged_slot();
void frontClick_slot();
void nextClick_slot();
void saveClick_slot();
private:
int m_index; // 当前笔记的索引
};
#endif // NOTE_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。