/* This file is part of TDE Copyright (C) 2012 Timothy Pearson This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #undef Unsorted // Required for --enable-final (tqdir.h) #include #include #include #include #include #include #include "devicepropsdlg.h" SensorDisplayLabelsWidget::SensorDisplayLabelsWidget(TQWidget *parent) : TQWidget(parent) { m_nameLabel = new TQLabel(this); m_valueLabel = new TQLabel(this); TQGridLayout *mainGrid = new TQGridLayout(this, 1, 2, 0, 1); mainGrid->setRowStretch(1, 0); mainGrid->addWidget(m_nameLabel, 0, 0); mainGrid->addWidget(m_valueLabel, 0, 1); } SensorDisplayLabelsWidget::~SensorDisplayLabelsWidget() { } void SensorDisplayLabelsWidget::setSensorName(TQString name) { m_nameLabel->setText(name); } void SensorDisplayLabelsWidget::setSensorValue(TQString value) { m_valueLabel->setText(value); } bool SensorBar::setIndicator(TQString & progress_str, int progress, int totalSteps) { Q_UNUSED(progress); Q_UNUSED(totalSteps); if (progress_str != m_currentValueString) { progress_str = m_currentValueString; return true; } else { return false; } } void SensorBar::drawContents(TQPainter *p) { // Draw warn/crit/value bars TQRect bar = contentsRect(); TQSharedDoubleBuffer buffer( p, bar.x(), bar.y(), bar.width(), bar.height() ); buffer.painter()->fillRect(bar, TQt::white); TQStyle::SFlags flags = TQStyle::Style_Default; if (isEnabled()) { flags |= TQStyle::Style_Enabled; } if (hasFocus()) { flags |= TQStyle::Style_HasFocus; } style().drawControl(TQStyle::CE_ProgressBarGroove, buffer.painter(), this, TQStyle::visualRect(style().subRect(TQStyle::SR_ProgressBarGroove, this), this ), colorGroup(), flags); if (m_warningLocation > 0) { bar = contentsRect(); bar.setX((bar.width()*((m_warningLocation*1.0)/totalSteps()))-2); bar.setWidth(5); bar.setHeight(3); buffer.painter()->fillRect(bar, TQt::yellow); bar = contentsRect(); bar.setX((bar.width()*((m_warningLocation*1.0)/totalSteps()))-2); bar.setWidth(5); bar.setY(bar.height()-3); bar.setHeight(3); buffer.painter()->fillRect(bar, TQt::yellow); bar = contentsRect(); bar.setX((bar.width()*((m_warningLocation*1.0)/totalSteps()))-0); bar.setWidth(1); buffer.painter()->fillRect(bar, TQt::yellow); } if (m_criticalLocation > 0) { bar = contentsRect(); bar.setX((bar.width()*((m_criticalLocation*1.0)/totalSteps()))-2); bar.setWidth(5); bar.setHeight(3); buffer.painter()->fillRect(bar, TQt::red); bar = contentsRect(); bar.setX((bar.width()*((m_criticalLocation*1.0)/totalSteps()))-2); bar.setWidth(5); bar.setY(bar.height()-3); bar.setHeight(3); buffer.painter()->fillRect(bar, TQt::red); bar = contentsRect(); bar.setX((bar.width()*((m_criticalLocation*1.0)/totalSteps()))-0); bar.setWidth(1); buffer.painter()->fillRect(bar, TQt::red); } if (m_currentLocation > 0) { bar = contentsRect(); bar.setX((bar.width()*((m_currentLocation*1.0)/totalSteps()))-2); bar.setWidth(5); bar.setHeight(3); buffer.painter()->fillRect(bar, TQt::green); bar = contentsRect(); bar.setX((bar.width()*((m_currentLocation*1.0)/totalSteps()))-2); bar.setWidth(5); bar.setY(bar.height()-3); bar.setHeight(3); buffer.painter()->fillRect(bar, TQt::green); bar = contentsRect(); bar.setX((bar.width()*((m_currentLocation*1.0)/totalSteps()))-0); bar.setWidth(1); buffer.painter()->fillRect(bar, TQt::green); } bar = contentsRect(); buffer.painter()->setPen(TQt::black); buffer.painter()->drawText(bar.x(), bar.y(), bar.width()/3, bar.height(), TQt::AlignVCenter | TQt::AlignLeft, m_minimumValueString); buffer.painter()->drawText(bar.x()+(bar.width()/3), bar.y(), bar.width()/3, bar.height(), TQt::AlignVCenter | TQt::AlignHCenter, m_currentValueString); buffer.painter()->drawText(bar.x()+((bar.width()/3)*2), bar.y(), bar.width()/3, bar.height(), TQt::AlignVCenter | TQt::AlignRight, m_maximumValueString); } SensorDisplayWidget::SensorDisplayWidget(TQWidget *parent) : TQWidget(parent) { m_nameLabel = new TQLabel(this); m_progressBar = new SensorBar(this); TQGridLayout *mainGrid = new TQGridLayout(this, 1, 2, 0, 1); mainGrid->setRowStretch(1, 0); mainGrid->addWidget(m_nameLabel, 0, 0); mainGrid->addWidget(m_progressBar, 0, 1); } SensorDisplayWidget::~SensorDisplayWidget() { } void SensorDisplayWidget::setSensorName(TQString name) { m_nameLabel->setText(name); } void SensorDisplayWidget::setSensorCurrentValue(double value) { m_current = value; } void SensorDisplayWidget::setSensorMinimumValue(double value) { m_minimum = value; } void SensorDisplayWidget::setSensorMaximumValue(double value) { m_maximum = value; } void SensorDisplayWidget::setSensorWarningValue(double value) { m_warning = value; } void SensorDisplayWidget::setSensorCriticalValue(double value) { m_critical = value; } void SensorDisplayWidget::updateDisplay() { double minimum = m_minimum; double maximum = m_maximum; double current = m_current; double warning = m_warning; double critical = m_critical; if (minimum < 0) { minimum = 0; } if (maximum < 0) { if (critical < 0) { maximum = warning; } else { maximum = critical; } } if (warning > maximum) { maximum = warning; } if (critical > maximum) { maximum = critical; } m_progressBar->setTotalSteps(maximum); m_progressBar->m_currentLocation = current - minimum; m_progressBar->setProgress(0); if (warning < 0) { m_progressBar->m_warningLocation = -1; } else { m_progressBar->m_warningLocation = warning - minimum; } if (critical < 0) { m_progressBar->m_criticalLocation = -1; } else { m_progressBar->m_criticalLocation = critical - minimum; } m_progressBar->m_minimumValueString = (TQString("%1").arg(minimum)); m_progressBar->m_maximumValueString = (TQString("%1").arg(maximum)); m_progressBar->m_currentValueString = TQString("%1").arg(current); } DevicePropertiesDialog::DevicePropertiesDialog(TDEGenericDevice* device, TQWidget *parent) : KDialogBase(Plain, TQString::null, Ok|Cancel, Ok, parent, 0L, true, true) { m_device = device; enableButtonOK( false ); if (m_device) { base = new DevicePropertiesDialogBase(plainPage()); // Remove all non-applicable tabs if (m_device->type() != TDEGenericDeviceType::Disk) { base->tabBarWidget->removePage(base->tabDisk); } if (m_device->type() != TDEGenericDeviceType::CPU) { base->tabBarWidget->removePage(base->tabCPU); } if ((m_device->type() != TDEGenericDeviceType::OtherSensor) && (m_device->type() != TDEGenericDeviceType::ThermalSensor)) { base->tabBarWidget->removePage(base->tabSensor); } if (m_device->type() != TDEGenericDeviceType::Battery) { base->tabBarWidget->removePage(base->tabBattery); } if (m_device->type() != TDEGenericDeviceType::PowerSupply) { base->tabBarWidget->removePage(base->tabPowerSupply); } if (m_device->type() != TDEGenericDeviceType::Network) { base->tabBarWidget->removePage(base->tabNetwork); } if (m_device->type() != TDEGenericDeviceType::Backlight) { base->tabBarWidget->removePage(base->tabBacklight); } if (m_device->type() != TDEGenericDeviceType::Monitor) { base->tabBarWidget->removePage(base->tabMonitor); } if ((m_device->type() == TDEGenericDeviceType::OtherSensor) || (m_device->type() == TDEGenericDeviceType::ThermalSensor)) { base->groupSensors->setColumnLayout(0, TQt::Vertical ); base->groupSensors->layout()->setSpacing( KDialog::spacingHint() ); base->groupSensors->layout()->setMargin( KDialog::marginHint() ); m_sensorDataGrid = new TQGridLayout( base->groupSensors->layout() ); m_sensorDataGrid->setAlignment( TQt::AlignTop ); m_sensorDataGridWidgets.setAutoDelete(true); } if (m_device->type() == TDEGenericDeviceType::Backlight) { connect(base->sliderBacklightBrightness, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(setBacklightBrightness(int))); } TQGridLayout *mainGrid = new TQGridLayout(plainPage(), 1, 1, 0, spacingHint()); mainGrid->setRowStretch(1, 1); mainGrid->addWidget(base, 0, 0); } TDEHardwareDevices *hwdevices = KGlobal::hardwareDevices(); connect(hwdevices, TQT_SIGNAL(hardwareRemoved(TDEGenericDevice*)), this, TQT_SLOT(processHardwareRemoved(TDEGenericDevice*))); connect(hwdevices, TQT_SIGNAL(hardwareUpdated(TDEGenericDevice*)), this, TQT_SLOT(processHardwareUpdated(TDEGenericDevice*))); populateDeviceInformation(); } DevicePropertiesDialog::~DevicePropertiesDialog() { } void DevicePropertiesDialog::processHardwareRemoved(TDEGenericDevice* dev) { if (dev == m_device) { close(); } } void DevicePropertiesDialog::processHardwareUpdated(TDEGenericDevice* dev) { if (dev == m_device) { populateDeviceInformation(); } } void DevicePropertiesDialog::populateDeviceInformation() { if (m_device) { base->labelDeviceType->setText(m_device->friendlyDeviceType()); base->iconDeviceType->setPixmap(m_device->icon(KIcon::SizeSmall)); base->labelDeviceName->setText(m_device->friendlyName()); base->labelDeviceNode->setText((m_device->deviceNode().isNull())?i18n(""):m_device->deviceNode()); base->labelSystemPath->setText(m_device->systemPath()); base->labelSubsytemType->setText(m_device->subsystem()); base->labelDeviceDriver->setText((m_device->deviceDriver().isNull())?i18n(""):m_device->deviceDriver()); base->labelDeviceClass->setText((m_device->PCIClass().isNull())?i18n(""):m_device->PCIClass()); base->labelModalias->setText((m_device->moduleAlias().isNull())?i18n(""):m_device->moduleAlias()); // These might be redundant #if 0 base->labelVendorName->setText((m_device->vendorName().isNull())?i18n(""):m_device->vendorName()); base->labelVendorModel->setText((m_device->vendorModel().isNull())?i18n(""):m_device->vendorModel()); #else base->labelVendorName->hide(); base->stocklabelVendorName->hide(); base->labelVendorModel->hide(); base->stocklabelVendorModel->hide(); #endif base->labelSerialNumber->setText((m_device->serialNumber().isNull())?i18n(""):m_device->serialNumber()); if (m_device->subsystem() == "pci") { base->labelBusID->setText(m_device->busID()); base->labelBusID->show(); base->stocklabelBusID->show(); } else { base->labelBusID->hide(); base->stocklabelBusID->hide(); } if (m_device->type() == TDEGenericDeviceType::Disk) { TDEStorageDevice* sdevice = static_cast(m_device); base->labelDiskMountpoint->setText(sdevice->mountPath()); // Show status TQString status_text = ""; if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Mountable)) { status_text += "Mountable
"; } if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Removable)) { status_text += "Removable
"; } if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Inserted)) { status_text += "Inserted
"; } if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::UsedByDevice)) { status_text += "In use
"; } if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::UsesDevice)) { status_text += "Uses other device
"; } if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::ContainsFilesystem)) { status_text += "Contains a filesystem
"; } if (sdevice->checkDiskStatus(TDEDiskDeviceStatus::Hotpluggable)) { status_text += "Hotpluggable
"; } if (status_text == "") { status_text += "Unavailable"; } status_text += ""; base->labelDiskStatus->setText(status_text); // TODO // Add mount/unmount buttons } if (m_device->type() == TDEGenericDeviceType::CPU) { TDECPUDevice* cdevice = static_cast(m_device); // Show information base->labelCPUVendor->setText(cdevice->vendorEncoded()); base->labelCPUFrequency->setText((cdevice->frequency()<0)?i18n(""):TQString("%1 MHz").arg(cdevice->frequency())); base->labelMinCPUFrequency->setText((cdevice->minFrequency()<0)?i18n(""):TQString("%1 MHz").arg(cdevice->minFrequency())); base->labelMaxCPUFrequency->setText((cdevice->maxFrequency()<0)?i18n(""):TQString("%1 MHz").arg(cdevice->maxFrequency())); base->labelScalingDriver->setText((cdevice->scalingDriver().isNull())?i18n(""):cdevice->scalingDriver()); TQStringList scalingfreqs = cdevice->availableFrequencies(); if (scalingfreqs.count() > 0) { TQString scalingfreqsstring = ""; for ( TQStringList::Iterator it = scalingfreqs.begin(); it != scalingfreqs.end(); ++it ) { TQString freq = (*it); scalingfreqsstring.append(TQString("%1 MHz
").arg(freq.toDouble()/1000)); } scalingfreqsstring.append("
"); base->labelScalingFrequencies->setText(scalingfreqsstring); } else { base->labelScalingFrequencies->setText(i18n("")); } TQStringList dependentcpus = cdevice->dependentProcessors(); if (dependentcpus.count() > 0) { TQString dependentcpusstring = ""; for ( TQStringList::Iterator it = dependentcpus.begin(); it != dependentcpus.end(); ++it ) { TQString proc = (*it); dependentcpusstring.append(TQString("CPU %1
").arg(proc)); } dependentcpusstring.append("
"); base->labelDependentCPUs->setText(dependentcpusstring); } else { base->labelDependentCPUs->setText(i18n("")); } } if ((m_device->type() == TDEGenericDeviceType::OtherSensor) || (m_device->type() == TDEGenericDeviceType::ThermalSensor)) { TDESensorDevice* sdevice = static_cast(m_device); TDESensorClusterMap map = sdevice->values(); TDESensorClusterMap::Iterator it; unsigned int i; if (m_sensorDataGridWidgets.count() != map.count()) { m_sensorDataGridWidgets.clear(); for (i=0;igroupSensors); m_sensorDataGrid->addWidget(sensorWidget, i, 0); m_sensorDataGridWidgets.append(sensorWidget); } } i=0; for ( it = map.begin(); it != map.end(); ++it ) { TQString sensorlabel = it.key(); TQString sensordatastring; TDESensorCluster values = it.data(); if (!values.label.isNull()) { sensorlabel = values.label; } if (sensorlabel.isNull()) { sensorlabel = i18n(""); } m_sensorDataGridWidgets.at(i)->setSensorName(sensorlabel); m_sensorDataGridWidgets.at(i)->setSensorCurrentValue(values.current); m_sensorDataGridWidgets.at(i)->setSensorMinimumValue(values.minimum); m_sensorDataGridWidgets.at(i)->setSensorMaximumValue(values.maximum); m_sensorDataGridWidgets.at(i)->setSensorWarningValue(values.warning); m_sensorDataGridWidgets.at(i)->setSensorCriticalValue(values.critical); m_sensorDataGridWidgets.at(i)->updateDisplay(); i++; } } if (m_device->type() == TDEGenericDeviceType::Battery) { TDEBatteryDevice* bdevice = static_cast(m_device); base->labelCurrentBatteryEnergy->setText((bdevice->energy()<0)?i18n(""):TQString("%1 Wh").arg(bdevice->energy())); base->labelMaximumBatteryEnergy->setText((bdevice->maximumEnergy()<0)?i18n(""):TQString("%1 Wh").arg(bdevice->maximumEnergy())); base->labelMaximumBatteryDesignEnergy->setText((bdevice->maximumDesignEnergy()<0)?i18n(""):TQString("%1 Wh").arg(bdevice->maximumDesignEnergy())); base->labelMinimumBatteryVoltage->setText((bdevice->minimumVoltage()<0)?i18n(""):TQString("%1 V").arg(bdevice->minimumVoltage())); base->labelCurrentBatteryVoltage->setText((bdevice->voltage()<0)?i18n(""):TQString("%1 V").arg(bdevice->voltage())); base->labelCurrentBatteryDischargeRate->setText((bdevice->dischargeRate()<0)?i18n(""):TQString("%1 Vh").arg(bdevice->dischargeRate())); base->labelCurrentBatteryStatus->setText((bdevice->status().isNull())?i18n(""):bdevice->status()); base->labelBatteryTechnology->setText((bdevice->technology().isNull())?i18n(""):bdevice->technology()); base->labelBatteryInstalled->setText((bdevice->installed()==0)?i18n("No"):i18n("Yes")); base->labelBatteryCharge->setText((bdevice->chargePercent()<0)?i18n(""):TQString("%1 %").arg(bdevice->chargePercent())); } if (m_device->type() == TDEGenericDeviceType::PowerSupply) { TDEMainsPowerDevice* pdevice = static_cast(m_device); base->labelPowerSupplyOnline->setText((pdevice->online()==0)?i18n("No"):i18n("Yes")); } if (m_device->type() == TDEGenericDeviceType::Network) { TDENetworkDevice* ndevice = static_cast(m_device); base->labelNetworkMAC->setText((ndevice->macAddress().isNull())?i18n(""):ndevice->macAddress()); base->labelNetworkState->setText((ndevice->state().isNull())?i18n(""):ndevice->state()); base->labelNetworkCarrierPresent->setText((ndevice->carrierPresent()==0)?i18n("No"):i18n("Yes")); base->labelNetworkDormant->setText((ndevice->dormant()==0)?i18n("No"):i18n("Yes")); base->labelNetworkIPV4Address->setText((ndevice->ipV4Address().isNull())?i18n(""):ndevice->ipV4Address()); base->labelNetworkIPV4Netmask->setText((ndevice->ipV4Netmask().isNull())?i18n(""):ndevice->ipV4Netmask()); base->labelNetworkIPV4Broadcast->setText((ndevice->ipV4Broadcast().isNull())?i18n(""):ndevice->ipV4Broadcast()); base->labelNetworkIPV4Destination->setText((ndevice->ipV4Destination().isNull())?i18n(""):ndevice->ipV4Destination()); base->labelNetworkIPV6Address->setText((ndevice->ipV6Address().isNull())?i18n(""):ndevice->ipV6Address()); base->labelNetworkIPV6Netmask->setText((ndevice->ipV6Netmask().isNull())?i18n(""):ndevice->ipV6Netmask()); base->labelNetworkIPV6Broadcast->setText((ndevice->ipV6Broadcast().isNull())?i18n(""):ndevice->ipV6Broadcast()); base->labelNetworkIPV6Destination->setText((ndevice->ipV6Destination().isNull())?i18n(""):ndevice->ipV6Destination()); base->labelNetworkRXBytes->setText((ndevice->rxBytes()<0)?i18n(""):TDEHardwareDevices::bytesToFriendlySizeString(ndevice->rxBytes())); base->labelNetworkTXBytes->setText((ndevice->txBytes()<0)?i18n(""):TDEHardwareDevices::bytesToFriendlySizeString(ndevice->txBytes())); base->labelNetworkRXPackets->setText((ndevice->rxPackets()<0)?i18n(""):TQString("%1").arg(ndevice->rxPackets())); base->labelNetworkTXPackets->setText((ndevice->txPackets()<0)?i18n(""):TQString("%1").arg(ndevice->txPackets())); } if (m_device->type() == TDEGenericDeviceType::Backlight) { TDEBacklightDevice* bdevice = static_cast(m_device); base->labelBacklightStatus->setText((bdevice->powerLevel()==TDEDisplayPowerLevel::On)?i18n("On"):i18n("Off")); base->labelBacklightBrightness->setText((bdevice->brightnessPercent()<0)?i18n(""):TQString("%1 %").arg(bdevice->brightnessPercent())); base->sliderBacklightBrightness->setOrientation(TQt::Horizontal); base->sliderBacklightBrightness->setMinValue(0); base->sliderBacklightBrightness->setMaxValue(bdevice->brightnessSteps()-1); base->sliderBacklightBrightness->setValue(bdevice->rawBrightness()); if (!bdevice->canSetBrightness()) { base->sliderBacklightBrightness->setEnabled(false); } } if (m_device->type() == TDEGenericDeviceType::Monitor) { TDEMonitorDevice* mdevice = static_cast(m_device); base->labelDisplayPortType->setText((mdevice->portType().isNull())?i18n(""):mdevice->portType()); base->labelDisplayConnected->setText((mdevice->connected())?i18n("Yes"):i18n("No")); base->labelDisplayEnabled->setText((mdevice->enabled())?i18n("Yes"):i18n("No")); TQString dpmsLevel; TDEDisplayPowerLevel::TDEDisplayPowerLevel dpms = TDEDisplayPowerLevel::On; if (dpms == TDEDisplayPowerLevel::On) { dpmsLevel = i18n("On"); } else if (dpms == TDEDisplayPowerLevel::Standby) { dpmsLevel = i18n("Standby"); } else if (dpms == TDEDisplayPowerLevel::Suspend) { dpmsLevel = i18n("Suspend"); } else if (dpms == TDEDisplayPowerLevel::Off) { dpmsLevel = i18n("Off"); } base->labelDisplayDPMS->setText(dpmsLevel); TDEResolutionList resolutionList = mdevice->resolutions(); if (resolutionList.count() > 0) { TQString resolutionsstring = ""; TDEResolutionList::iterator it; for (it = resolutionList.begin(); it != resolutionList.end(); ++it) { TDEResolutionPair res = *it; resolutionsstring += TQString("%1x%2
").arg(res.first).arg(res.second); } resolutionsstring += "
"; base->labelDisplayResolutions->setText(resolutionsstring); } else { base->labelDisplayResolutions->setText(i18n("")); } } } } void DevicePropertiesDialog::setBacklightBrightness(int value) { TDEBacklightDevice* bdevice = static_cast(m_device); bdevice->setRawBrightness(value); } void DevicePropertiesDialog::virtual_hook( int id, void* data ) { KDialogBase::virtual_hook( id, data ); } #include "devicepropsdlg.moc"