|
|
1.1 root 1: //
2: // nono
3: // Copyright (C) 2020 nono project
4: // Licensed under nono-license.txt
5: //
6:
7: #pragma once
8:
9: #include "wxheader.h"
10:
1.1.1.2 ! root 11: // バージョンダイアログ
1.1 root 12: class WXVersionDlg : public wxDialog
13: {
14: using inherited = wxDialog;
15: public:
16: WXVersionDlg(wxWindow *parent);
17: ~WXVersionDlg() override;
18: };
1.1.1.2 ! root 19:
! 20: // ホスト情報モニタ
! 21: class HostInfoMonitor : public IMonitor
! 22: {
! 23: public:
! 24: HostInfoMonitor();
! 25: virtual ~HostInfoMonitor() override;
! 26:
! 27: nnSize GetMonitorSize() override;
! 28: void MonitorUpdate(TextScreen& monitor) override;
! 29:
! 30: private:
! 31: int width {};
! 32: wxString osname {};
! 33: wxString machinename {};
! 34: wxString wxname {};
! 35: };
! 36:
! 37: extern std::unique_ptr<HostInfoMonitor> gHostInfo;
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.