Introduce CallsAccountOverview: A UI to allow managing VoIP accounts

CallsAccountOverview allows user to view, add and edit VoIP accounts
(currently SIP only).

Each CallsAccount is represented by a CallsAccountRow.

account-row: Staying alive
This commit is contained in:
Evangelos Ribeiro Tzaras
2021-05-11 18:18:35 +02:00
committed by Evangelos Ribeiro Tzaras
parent fadeaeb6b5
commit fc7156fe75
12 changed files with 733 additions and 16 deletions

View File

@@ -33,10 +33,11 @@ G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (CallsMainWindow, calls_main_window, CALLS, MAIN_WINDOW, HdyApplicationWindow);
CallsMainWindow *calls_main_window_new (GtkApplication *application,
GListModel *record_store);
void calls_main_window_dial (CallsMainWindow *self,
const gchar *target);
CallsMainWindow *calls_main_window_new (GtkApplication *application,
GListModel *record_store);
void calls_main_window_dial (CallsMainWindow *self,
const gchar *target);
void calls_main_window_show_accounts_overview (CallsMainWindow *self);
G_END_DECLS