AtCore  1.0.70
AtCore is a API to manage the serial connection between the computer and 3D Printers.
logwidget.h
Go to the documentation of this file.
1 /* AtCore Test Client
2  Copyright (C) <2018>
3  Author: Chris Rizzitello - rizzitello@kde.org
4 
5  This program is free software: you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation, either version 3 of the License, or
8  (at your option) any later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18 #pragma once
19 
20 #include <QWidget>
21 
22 #include "atcorewidgets_export.h"
23 
24 class QPlainTextEdit;
25 class QTemporaryFile;
26 
30 class ATCOREWIDGETS_EXPORT LogWidget : public QWidget
31 {
32  Q_OBJECT
33 public:
34  LogWidget(QTemporaryFile *tempFile, QWidget *parent = nullptr);
35  LogWidget(QWidget *parent = nullptr);
36 
41  void appendLog(const QString &msg);
42 
47  void appendRLog(const QByteArray &bmsg);
48 
53  void appendSLog(const QByteArray &bmsg);
54 
60  bool endsWith(const QString &string);
61 
62 private:
63  void initialize();
64 
69  QString getTime();
70 
74  void savePressed();
75 
80  void writeTempFile(const QString &text);
81 
85  void flushTemp();
86  QStringList unsyncedStrings;
87  QTemporaryFile *logFile = nullptr;
88  QPlainTextEdit *textLog = nullptr;
89 };
The LogWidget will display the log for the connected atcore. Create with a pointer to a new QTemporar...
Definition: logwidget.h:30
QStringList unsyncedStrings
Definition: logwidget.h:86