mirror of
https://github.com/Steve-Tech/YAFI.git
synced 2026-04-20 01:00:37 +00:00
106 lines
4.3 KiB
XML
106 lines
4.3 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!-- Created with Cambalache 0.96.1 -->
|
|
<interface>
|
|
<!-- interface-name thermals.ui -->
|
|
<!-- interface-description The Thermals page for YAFI -->
|
|
<!-- interface-authors Steve-Tech -->
|
|
<requires lib="gtk" version="4.0"/>
|
|
<requires lib="libadwaita" version="1.0"/>
|
|
<template class="ThermalsPage" parent="GtkBox">
|
|
<property name="homogeneous">True</property>
|
|
<child>
|
|
<object class="GtkPaned">
|
|
<property name="end-child">
|
|
<object class="GtkListBox" id="temperatures">
|
|
<child>
|
|
<object class="AdwActionRow">
|
|
<property name="selectable">False</property>
|
|
<property name="title">Temperatures</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</property>
|
|
<property name="start-child">
|
|
<object class="GtkBox">
|
|
<property name="orientation">vertical</property>
|
|
<child>
|
|
<object class="GtkListBox">
|
|
<property name="margin-end">10</property>
|
|
<property name="margin-start">10</property>
|
|
<child>
|
|
<object class="AdwActionRow">
|
|
<property name="selectable">False</property>
|
|
<property name="title">Fan Control</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="AdwActionRow" id="fan_rpm">
|
|
<property name="title">Current Speed</property>
|
|
<style>
|
|
<class name="property"/>
|
|
</style>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="AdwComboRow" id="fan_mode">
|
|
<property name="model">
|
|
<object class="GtkStringList">
|
|
<items>
|
|
<item>Auto</item>
|
|
<item>Percent</item>
|
|
<item>RPM</item>
|
|
</items>
|
|
</object>
|
|
</property>
|
|
<property name="title">Speed Set Mode</property>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="AdwActionRow" id="fan_set_percent">
|
|
<property name="title">Fan Speed</property>
|
|
<property name="visible">False</property>
|
|
<child>
|
|
<object class="GtkBox">
|
|
<child>
|
|
<object class="GtkScale" id="fan_percent_scale">
|
|
<property name="adjustment">
|
|
<object class="GtkAdjustment">
|
|
<property name="page-increment">10.0</property>
|
|
<property name="step-increment">1.0</property>
|
|
<property name="upper">100.0</property>
|
|
<property name="value">100.0</property>
|
|
</object>
|
|
</property>
|
|
<property name="hexpand">True</property>
|
|
<property name="round-digits">0</property>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</child>
|
|
<child>
|
|
<object class="AdwSpinRow" id="fan_set_rpm">
|
|
<property name="adjustment">
|
|
<object class="GtkAdjustment">
|
|
<property name="page-increment">1000.0</property>
|
|
<property name="step-increment">100.0</property>
|
|
<property name="upper">65535.0</property>
|
|
</object>
|
|
</property>
|
|
<property name="title">Fan RPM Target</property>
|
|
<property name="visible">False</property>
|
|
</object>
|
|
</child>
|
|
<style>
|
|
<class name="boxed-list"/>
|
|
</style>
|
|
</object>
|
|
</child>
|
|
</object>
|
|
</property>
|
|
</object>
|
|
</child>
|
|
</template>
|
|
</interface>
|