Lines Matching refs:m_pInput
356 : VBoxDbgBaseWindow(a_pDbgGui, a_pParent), m_pOutput(NULL), m_pInput(NULL), m_fInputRestoreFocus(false),
389 m_pInput = new VBoxDbgConsoleInput(NULL);
390 pLayout->addWidget(m_pInput);
391 m_pInput->setDuplicatesEnabled(false);
392 connect(m_pInput, SIGNAL(commandSubmitted(const QString &)), this, SLOT(commandSubmitted(const QString &)));
397 pLabel->setMaximumSize(20, m_pInput->sizeHint().height() + 6);
398 pLabel->setMinimumSize(20, m_pInput->sizeHint().height() + 6);
404 m_pInput->setEnabled(false); /* (we'll get a ready notification) */
420 setTabOrder(m_pInput, m_pOutput);
497 m_pInput = NULL;
551 m_fInputRestoreFocus = m_pInput->hasFocus(); /* dirty focus hack */
552 m_pInput->setEnabled(false);
554 Log(("VBoxDbgConsole::commandSubmitted: %s (input-enabled=%RTbool)\n", psz, m_pInput->isEnabled()));
791 Log(("VBoxDbgConsole: kInputEnable (input-enabled=%RTbool)\n", m_pInput->isEnabled()));
792 m_pInput->setEnabled(true);
794 && !m_pInput->hasFocus())
795 m_pInput->setFocus(); /* this is a hack. */
801 Log(("VBoxDbgConsole: kTerminatedUser (input-enabled=%RTbool)\n", m_pInput->isEnabled()));
802 m_pInput->setEnabled(false);
808 Log(("VBoxDbgConsole: kTerminatedOther (input-enabled=%RTbool)\n", m_pInput->isEnabled()));
809 m_pInput->setEnabled(false);
838 if (!m_pInput->hasFocus())
839 m_pInput->setFocus(Qt::ShortcutFocusReason);