code_production/app/HGProductionTool/form_texttips.h

26 lines
409 B
C
Raw Normal View History

2022-12-14 06:39:22 +00:00
#ifndef FORM_TEXTTIPS_H
#define FORM_TEXTTIPS_H
#include <QWidget>
namespace Ui {
class Form_textTips;
}
class Form_textTips : public QWidget
{
Q_OBJECT
public:
explicit Form_textTips(QWidget *parent = nullptr);
~Form_textTips();
2022-12-14 12:28:25 +00:00
void setViewContent(QString content);
2023-03-06 09:44:08 +00:00
void addContent(QString content, bool isNormal);
2022-12-14 06:39:22 +00:00
private:
Ui::Form_textTips *ui;
};
#endif // FORM_TEXTTIPS_H