コード例 #1
0
ファイル: PortMonitor.cpp プロジェクト: CnZoom/XcSoarPull
 void Prepare(ContainerWindow &parent, const PixelRect &rc) override {
   WindowStyle style;
   style.Hide();
   terminal.Create(parent, rc, style);
   SetWindow(&terminal);
   device.SetMonitor(&bridge);
 }
コード例 #2
0
ファイル: RunTerminal.cpp プロジェクト: Adrien81/XCSoar
  void Create(PixelSize size) {
    SingleWindow::Create(_T("RunTerminal"), size);

    PixelRect rc = GetClientRect();

    terminal.Create(*this, rc);
  }
コード例 #3
0
ファイル: PortMonitor.cpp プロジェクト: MindMil/XCSoar
 void CreateTerminal(ContainerWindow &parent, const PixelRect &rc) {
   terminal.Create(parent, rc);
   device.SetMonitor(&bridge);
 }