您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

39 行
685 B

  1. #ifndef STATUSWINDOW_H
  2. #define STATUSWINDOW_H
  3. #include <QWidget>
  4. #include <QStringList>
  5. //#define GENERAL_MESSAGES_MAX_LOG_LINES 5000
  6. namespace Ui {
  7. class CStatusWindow;
  8. }
  9. class CLogsSorter;
  10. class CStatusWindow : public QWidget
  11. {
  12. Q_OBJECT
  13. public:
  14. explicit CStatusWindow(QWidget *parent = 0);
  15. ~CStatusWindow();
  16. CLogsSorter *mProgramPtr;
  17. int AddGeneralMsgBoxLineEntry(QString NewLine,QColor Color);
  18. int AddColoredLineToGenMsgBox(QString Line,QColor Color);
  19. int AddLineToGenMsgBox(QString Line);
  20. QStringList mGenMsgListBoxTextLines;
  21. public slots:
  22. void ManualScanBtnPressed();
  23. private:
  24. Ui::CStatusWindow *ui;
  25. };
  26. #endif // STATUSWINDOW_H