2019-10-04 22:16:23 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<interface>
|
2021-12-19 19:57:26 +05:30
|
|
|
<requires lib="gtk" version="4.0"/>
|
2019-10-04 22:16:23 +05:30
|
|
|
<template class="CcWwanModeDialog" parent="GtkDialog">
|
|
|
|
<property name="title" translatable="yes">Network Mode</property>
|
|
|
|
<property name="default-height">480</property>
|
|
|
|
<property name="default-width">360</property>
|
2021-12-19 19:57:26 +05:30
|
|
|
<property name="hide-on-close">True</property>
|
|
|
|
<property name="modal">True</property>
|
2019-10-04 22:16:23 +05:30
|
|
|
|
2021-12-19 19:57:26 +05:30
|
|
|
<child>
|
2022-01-10 09:24:51 +05:30
|
|
|
<object class="AdwPreferencesPage">
|
|
|
|
<child>
|
|
|
|
<object class="AdwPreferencesGroup">
|
|
|
|
<child>
|
|
|
|
<object class="GtkListBox" id="network_mode_list">
|
|
|
|
<property name="selection-mode">none</property>
|
|
|
|
<signal name="row-activated" handler="cc_wwan_mode_changed_cb" swapped="yes"/>
|
|
|
|
<style>
|
|
|
|
<class name="boxed-list"/>
|
|
|
|
</style>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
2019-10-04 22:16:23 +05:30
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
|
|
|
|
<child type="action">
|
|
|
|
<object class="GtkButton" id="button_cancel">
|
2021-12-19 19:57:26 +05:30
|
|
|
<property name="use-underline">True</property>
|
2019-10-04 22:16:23 +05:30
|
|
|
<property name="label" translatable="yes">_Cancel</property>
|
|
|
|
<signal name="clicked" handler="gtk_widget_hide" swapped="yes"/>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child type="action">
|
|
|
|
<object class="GtkButton" id="button_ok">
|
2021-12-19 19:57:26 +05:30
|
|
|
<property name="use-underline">True</property>
|
2019-10-04 22:16:23 +05:30
|
|
|
<property name="label" translatable="yes">_Set</property>
|
|
|
|
<signal name="clicked" handler="cc_wwan_mode_dialog_ok_clicked_cb" swapped="yes"/>
|
|
|
|
<style>
|
|
|
|
<class name="suggested-action "/>
|
|
|
|
</style>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
|
|
|
|
<action-widgets>
|
|
|
|
<action-widget response="cancel">button_cancel</action-widget>
|
2021-12-19 19:57:26 +05:30
|
|
|
<action-widget response="apply" default="True">button_ok</action-widget>
|
2019-10-04 22:16:23 +05:30
|
|
|
</action-widgets>
|
|
|
|
</template>
|
|
|
|
</interface>
|