|
|
|
@ -279,6 +279,9 @@ DevicePropertiesDialog::DevicePropertiesDialog(TDEGenericDevice* device, TQWidge
|
|
|
|
|
if (m_device->type() != TDEGenericDeviceType::RootSystem) {
|
|
|
|
|
base->tabBarWidget->removePage(base->tabRootSystem);
|
|
|
|
|
}
|
|
|
|
|
if (m_device->type() != TDEGenericDeviceType::Event) {
|
|
|
|
|
base->tabBarWidget->removePage(base->tabEvent);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_device->type() == TDEGenericDeviceType::CPU) {
|
|
|
|
|
connect(base->comboCPUGovernor, TQT_SIGNAL(activated(const TQString &)), this, TQT_SLOT(setCPUGovernor(const TQString &)));
|
|
|
|
@ -327,6 +330,10 @@ void DevicePropertiesDialog::processHardwareUpdated(TDEGenericDevice* dev) {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TQString assembleSwitchList(TDESwitchType::TDESwitchType switches) {
|
|
|
|
|
return (TDEEventDevice::friendlySwitchList(switches).join("<br>"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DevicePropertiesDialog::populateDeviceInformation() {
|
|
|
|
|
if (m_device) {
|
|
|
|
|
base->labelDeviceType->setText(m_device->friendlyDeviceType());
|
|
|
|
@ -642,7 +649,7 @@ void DevicePropertiesDialog::populateDeviceInformation() {
|
|
|
|
|
int i=0;
|
|
|
|
|
TQString label;
|
|
|
|
|
for (TDESystemHibernationMethodList::Iterator it = hibernationMethods.begin(); it != hibernationMethods.end(); ++it) {
|
|
|
|
|
if ((*it) == TDESystemHibernationMethod::None) {
|
|
|
|
|
if ((*it) == TDESystemHibernationMethod::Unsupported) {
|
|
|
|
|
label = i18n("<none>");
|
|
|
|
|
}
|
|
|
|
|
if ((*it) == TDESystemHibernationMethod::Platform) {
|
|
|
|
@ -674,6 +681,32 @@ void DevicePropertiesDialog::populateDeviceInformation() {
|
|
|
|
|
|
|
|
|
|
base->labelSystemHibernationSpace->setText((rdevice->diskSpaceNeededForHibernation()<0)?i18n("<unknown>"):TDEHardwareDevices::bytesToFriendlySizeString(rdevice->diskSpaceNeededForHibernation()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_device->type() == TDEGenericDeviceType::Event) {
|
|
|
|
|
TDEEventDevice* edevice = static_cast<TDEEventDevice*>(m_device);
|
|
|
|
|
|
|
|
|
|
TQString availableSwitches;
|
|
|
|
|
if (edevice->providedSwitches() == TDESwitchType::Null) {
|
|
|
|
|
availableSwitches = i18n("<none>");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
availableSwitches = "<qt>";
|
|
|
|
|
availableSwitches += assembleSwitchList(edevice->providedSwitches());
|
|
|
|
|
availableSwitches += "</qt>";
|
|
|
|
|
}
|
|
|
|
|
base->labelEventSwitchTypes->setText(availableSwitches);
|
|
|
|
|
|
|
|
|
|
TQString activeSwitches;
|
|
|
|
|
if (edevice->activeSwitches() == TDESwitchType::Null) {
|
|
|
|
|
activeSwitches = i18n("<none>");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
activeSwitches = "<qt>";
|
|
|
|
|
activeSwitches += assembleSwitchList(edevice->activeSwitches());
|
|
|
|
|
activeSwitches += "</qt>";
|
|
|
|
|
}
|
|
|
|
|
base->labelEventSwitchActive->setText(activeSwitches);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|