Esempio n. 1
0
 void Prepare(ContainerWindow &parent, const PixelRect &rc) override {
   WindowStyle style;
   style.Hide();
   terminal.Create(parent, rc, style);
   SetWindow(&terminal);
   device.SetMonitor(&bridge);
 }
Esempio n. 2
0
  void Create(PixelSize size) {
    SingleWindow::Create(_T("RunTerminal"), size);

    PixelRect rc = GetClientRect();

    terminal.Create(*this, rc);
  }
Esempio n. 3
0
 void CreateTerminal(ContainerWindow &parent, const PixelRect &rc) {
   terminal.Create(parent, rc);
   device.SetMonitor(&bridge);
 }