1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-25 05:09:30 +00:00

main-window: Use CallsHistoryBox

This helps the window to be only a glue in between the actual UI
elements instead of handling a lot of the UI.
This commit is contained in:
Adrien Plazas 2018-08-01 10:21:53 +02:00
parent 70bafc2091
commit 0d98e17b05
4 changed files with 4 additions and 9 deletions

View file

@ -59,7 +59,6 @@ struct _CallsMainWindow
HdyDialer *dial_pad;
GtkListStore *origin_store;
GtkListStore *history_store;
};
enum {
@ -730,7 +729,6 @@ calls_main_window_class_init (CallsMainWindowClass *klass)
gtk_widget_class_bind_template_child (widget_class, CallsMainWindow, search);
gtk_widget_class_bind_template_child (widget_class, CallsMainWindow, dial_pad);
gtk_widget_class_bind_template_child (widget_class, CallsMainWindow, origin_store);
gtk_widget_class_bind_template_child (widget_class, CallsMainWindow, history_store);
gtk_widget_class_bind_template_callback (widget_class, info_response_cb);
gtk_widget_class_bind_template_callback (widget_class, new_call_expanded_notify_cb);
gtk_widget_class_bind_template_callback (widget_class, call_selector_child_activated_cb);

View file

@ -28,6 +28,7 @@
#include <handy.h>
#include "calls-encryption-indicator.h"
#include "calls-history-box.h"
#include "calls-main-window.h"
#include "calls-mm-provider.h"
@ -40,6 +41,7 @@ show_window (GtkApplication *app)
CallsMainWindow *main_window;
CALLS_TYPE_ENCRYPTION_INDICATOR;
CALLS_TYPE_HISTORY_BOX;
HDY_TYPE_DIALER;
connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error);

View file

@ -6,7 +6,7 @@
<object class="GtkListStore" id="history_store"/>
<template class="CallsHistoryBox" parent="GtkTreeView">
<property name="can_focus">False</property>
<property name="model">history_store</property>
<property name="model">history_store</property>
<property name="visible">True</property>
<child internal-child="selection">
<object class="GtkTreeSelection"/>

View file

@ -3,7 +3,6 @@
<interface>
<requires lib="gtk+" version="3.20"/>
<requires lib="libhandy" version="0.0"/>
<object class="GtkListStore" id="history_store"/>
<object class="GtkListStore" id="origin_store">
<columns>
<!-- column-name name -->
@ -259,13 +258,9 @@
</packing>
</child>
<child>
<object class="GtkTreeView" id="history_view">
<object class="CallsHistoryBox" id="history_view">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="model">history_store</property>
<child internal-child="selection">
<object class="GtkTreeSelection"/>
</child>
</object>
<packing>
<property name="name">history</property>