| 17 You should have received a copy of the GNU Lesser General Public |
17 You should have received a copy of the GNU Lesser General Public |
| 18 License along with this library; if not, see <https://www.gnu.org/licenses/>. |
18 License along with this library; if not, see <https://www.gnu.org/licenses/>. |
| 19 |
19 |
| 20 --> |
20 --> |
| 21 <interface> |
21 <interface> |
| 22 <requires lib="gtk+" version="3.24"/> |
22 <requires lib="gtk" version="4.0"/> |
| 23 <!-- interface-license-type gplv2 --> |
23 <!-- interface-license-type gplv2 --> |
| 24 <!-- interface-name Pidgin --> |
24 <!-- interface-name Pidgin --> |
| 25 <!-- interface-description Internet Messenger --> |
25 <!-- interface-description Internet Messenger --> |
| 26 <!-- interface-copyright Pidgin Developers <devel@pidgin.im> --> |
26 <!-- interface-copyright Pidgin Developers <devel@pidgin.im> --> |
| 27 <object class="GtkListStore" id="model"> |
27 <object class="GtkListStore" id="model"> |
| 41 <!-- column-name emblem-visible --> |
41 <!-- column-name emblem-visible --> |
| 42 <column type="gboolean"/> |
42 <column type="gboolean"/> |
| 43 </columns> |
43 </columns> |
| 44 </object> |
44 </object> |
| 45 <template class="PidginStatusBox" parent="GtkBox"> |
45 <template class="PidginStatusBox" parent="GtkBox"> |
| 46 <property name="visible">True</property> |
46 <property name="focusable">1</property> |
| 47 <property name="can-focus">True</property> |
|
| 48 <property name="orientation">vertical</property> |
47 <property name="orientation">vertical</property> |
| 49 <child> |
48 <child> |
| 50 <object class="GtkComboBox" id="combo"> |
49 <object class="GtkComboBox" id="combo"> |
| 51 <property name="visible">True</property> |
50 <property name="focusable">1</property> |
| 52 <property name="can-focus">True</property> |
|
| 53 <property name="model">model</property> |
51 <property name="model">model</property> |
| 54 <property name="id-column">0</property> |
52 <property name="id-column">0</property> |
| 55 <signal name="changed" handler="pidgin_status_box_combo_changed_cb" object="PidginStatusBox" swapped="no"/> |
53 <signal name="changed" handler="pidgin_status_box_combo_changed_cb" object="PidginStatusBox" swapped="no"/> |
| 56 <child> |
54 <child> |
| 57 <object class="GtkCellRendererPixbuf" id="icon"/> |
55 <object class="GtkCellRendererPixbuf" id="icon"/> |