|
|
1.1 ! root 1: // ! 2: // nono ! 3: // Copyright (C) 2018 [email protected] ! 4: // ! 5: ! 6: #pragma once ! 7: ! 8: #include "object.h" ! 9: #include "wxsubwindow.h" ! 10: ! 11: // ! 12: // モニターウィンドウ ! 13: // ! 14: class WXMonitorWindow : public WXSubWindow ! 15: { ! 16: typedef WXSubWindow inherited; ! 17: public: ! 18: WXMonitorWindow(wxWindow *parent, wxWindowID id, const wxString& name, ! 19: Object *obj); ! 20: virtual ~WXMonitorWindow(); ! 21: ! 22: // フォントサイズ変更 ! 23: virtual void SetFontSize(fontsize_t fontsize); ! 24: ! 25: private: ! 26: // タイマーイベント ! 27: void OnTimer(wxTimerEvent& event); ! 28: ! 29: // モニター ! 30: Object *object = NULL; ! 31: ! 32: // テキストスクリーン ! 33: WXTextScreen *screen = NULL; ! 34: ! 35: // タイマー ! 36: wxTimer timer; ! 37: ! 38: // イベントテーブル ! 39: wxDECLARE_EVENT_TABLE(); ! 40: };
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.