Changeset 55266 in vbox for trunk/src/VBox
- Timestamp:
- Apr 15, 2015 6:48:56 AM (10 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/settings/machine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSerial.cpp
r55259 r55266 115 115 mLeIOPort->setText("0x" + QString::number(portData.m_uIOBase, 16).toUpper()); 116 116 mCbMode->setCurrentIndex(mCbMode->findText(gpConverter->toString(portData.m_hostMode))); 117 mCbPipe->setChecked( portData.m_fServer);117 mCbPipe->setChecked(!portData.m_fServer); 118 118 mLePath->setText(portData.m_strPath); 119 119 … … 131 131 portData.m_uIRQ = mLeIRQ->text().toULong(NULL, 0); 132 132 portData.m_uIOBase = mLeIOPort->text().toULong (NULL, 0); 133 portData.m_fServer = mCbPipe->isChecked();133 portData.m_fServer = !mCbPipe->isChecked(); 134 134 portData.m_hostMode = gpConverter->fromString<KPortMode>(mCbMode->currentText()); 135 135 portData.m_strPath = QDir::toNativeSeparators(mLePath->text()); -
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsSerial.ui
r55259 r55266 177 177 <widget class="QCheckBox" name="mCbPipe" > 178 178 <property name="whatsThis" > 179 <string>If checked, the pipe or socket specified in the <b>Port Path</b> field will be created by the virtual machine when it starts. Otherwise, the virtual machine will assume that the pipe or socket exists and try to use it.</string>179 <string>If checked, the virtual machine will assume that the pipe or socket specified in the <b>Path/Address</b> field exists and try to use it. Otherwise, the pipe or socket will be created by the virtual machine when it starts.</string> 180 180 </property> 181 181 <property name="text" > … … 200 200 <widget class="QLineEdit" name="mLePath" > 201 201 <property name="whatsThis" > 202 <string>In <b>Host Pipe</b> mode: Holds the path to the serial port's pipe on the host, examples: 203 "\\.\pipe\myvbox" or "/tmp/myvbox", for Windows and UNIX-like systems respectively. 204 In <b>Host Device</b> mode: Holds the host serial device name; examples: "COM1" or "/dev/ttyS0". 205 In <b>Raw file</b> mode: file-path on the host system, where serial output will be dumped. 206 In <b>TCP</b> mode: Holds TCP "port" when in server mode, or "hostname:port" or when in client mode. 207 </string> 202 <string><p>In <b>Host Pipe</b> mode: Holds the path to the serial port's pipe on the host. Examples: "\\.\pipe\myvbox" or "/tmp/myvbox", for Windows and UNIX-like systems respectively.</p><p>In <b>Host Device</b> mode: Holds the host serial device name. Examples: "COM1" or "/dev/ttyS0".</p><p>In <b>Raw File</b> mode: Holds the file-path on the host system, where the serial output will be dumped.</p><p>In <b>TCP</b> mode: Holds the TCP "port" when in server mode, or "hostname:port" when in client mode.</string> 208 203 </property> 209 204 </widget>
Note:
See TracChangeset
for help on using the changeset viewer.