diff options
Diffstat (limited to 'panels/bluetooth/cc-bluetooth-panel.ui')
-rw-r--r-- | panels/bluetooth/cc-bluetooth-panel.ui | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/panels/bluetooth/cc-bluetooth-panel.ui b/panels/bluetooth/cc-bluetooth-panel.ui new file mode 100644 index 0000000..94ad137 --- /dev/null +++ b/panels/bluetooth/cc-bluetooth-panel.ui @@ -0,0 +1,69 @@ +<?xml version="1.0" encoding="UTF-8"?> +<interface> + <template class="CcBluetoothPanel" parent="CcPanel"> + + <child type="titlebar-end"> + <object class="GtkBox" id="header_box"> + <child> + <object class="GtkSwitch" id="enable_switch"> + <property name="valign">center</property> + <accessibility> + <property name="label" translatable="yes">Enable</property> + </accessibility> + <signal name="state-set" handler="enable_switch_state_set_cb" object="CcBluetoothPanel" swapped="yes"/> + </object> + </child> + </object> + </child> + + <child type="content"> + <object class="GtkStack" id="stack"> + <child> + <object class="AdwStatusPage" id="no_devices_page"> + <property name="icon-name">bluetooth-active-symbolic</property> + <property name="title" translatable="yes">No Bluetooth Found</property> + <property name="description" translatable="yes">Plug in a dongle to use Bluetooth.</property> + </object> + </child> + <child> + <object class="AdwStatusPage" id="disabled_page"> + <property name="icon-name">bluetooth-active-symbolic</property> + <property name="title" translatable="yes">Bluetooth Turned Off</property> + <property name="description" translatable="yes">Turn on to connect devices and receive file transfers.</property> + </object> + </child> + <child> + <object class="AdwStatusPage" id="airplane_page"> + <property name="icon-name">airplane-mode-symbolic</property> + <property name="title" translatable="yes">Airplane Mode is On</property> + <property name="description" translatable="yes">Bluetooth is disabled when airplane mode is on.</property> + <property name="child"> + <object class="GtkButton"> + <property name="label" translatable="yes">Turn Off Airplane Mode</property> + <property name="halign">center</property> + <property name="valign">center</property> + <signal name="clicked" handler="airplane_mode_off_button_clicked_cb" object="CcBluetoothPanel" swapped="yes"/> + <style> + <class name="pill"/> + </style> + </object> + </property> + </object> + </child> + <child> + <object class="AdwStatusPage" id="hw_airplane_page"> + <property name="icon-name">airplane-mode-symbolic</property> + <property name="title" translatable="yes">Hardware Airplane Mode is On</property> + <property name="description" translatable="yes">Turn off the Airplane mode switch to enable Bluetooth.</property> + </object> + </child> + <child> + <object class="BluetoothSettingsWidget" id="settings_widget"> + <signal name="panel-changed" handler="panel_changed_cb" object="CcBluetoothPanel" swapped="yes"/> + <signal name="adapter-status-changed" handler="adapter_status_changed_cb" object="CcBluetoothPanel" swapped="yes"/> + </object> + </child> + </object> + </child> + </template> +</interface> |