[gnome-notes/136-implement-the-list-row-pattern-in-main-view] Show empty message in notebook and trash bin
- From: Isaque Galdino de Araujo <igaldino src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-notes/136-implement-the-list-row-pattern-in-main-view] Show empty message in notebook and trash bin
- Date: Tue, 21 Jul 2020 04:31:10 +0000 (UTC)
commit 4d356dc37feff94df02067f9a282be3d7b0c2e30
Author: Isaque Galdino <igaldino gmail com>
Date: Tue Jul 21 01:23:47 2020 -0300
Show empty message in notebook and trash bin
Show BjbEmptyResultsBox object when notebook or trash bin are empty.
src/bjb-controller.c | 2 +-
src/bjb-main-toolbar.c | 47 ++++++++++++++++++++---------------------------
2 files changed, 21 insertions(+), 28 deletions(-)
---
diff --git a/src/bjb-controller.c b/src/bjb-controller.c
index 1978a185..0bb5cdf8 100644
--- a/src/bjb-controller.c
+++ b/src/bjb-controller.c
@@ -465,7 +465,7 @@ update_controller_callback (GList *result,
self = BJB_CONTROLLER (user_data);
self->remaining_items = FALSE;
- if (!result && self->group == BIJI_LIVING_ITEMS)
+ if (!result)
{
bjb_window_base_switch_to (self->window, BJB_WINDOW_BASE_NO_RESULT);
return;
diff --git a/src/bjb-main-toolbar.c b/src/bjb-main-toolbar.c
index 5c734451..8bf1df0c 100644
--- a/src/bjb-main-toolbar.c
+++ b/src/bjb-main-toolbar.c
@@ -296,6 +296,7 @@ static void
on_empty_clicked_callback (BjbMainToolbar *self)
{
biji_manager_empty_bin (bjb_window_base_get_manager (GTK_WIDGET (self->window)));
+ bjb_window_base_switch_to (BJB_WINDOW_BASE (self->window), BJB_WINDOW_BASE_NO_RESULT);
}
@@ -527,40 +528,32 @@ populate_main_toolbar(BjbMainToolbar *self)
{
BjbToolbarType to_be = BJB_TOOLBAR_0 ;
BjbWindowViewType view_type;
+ BijiItemsGroup group;
+ gboolean selection_mode;
view_type = bjb_window_base_get_view_type (BJB_WINDOW_BASE (self->window));
+ group = bjb_controller_get_group (self->controller);
+ selection_mode = bjb_main_view_get_selection_mode (self->parent);
- switch (view_type)
- {
- case BJB_WINDOW_BASE_NOTE_VIEW:
- to_be = BJB_TOOLBAR_NOTE_VIEW;
- break;
+ /* Note view */
+ if (view_type == BJB_WINDOW_BASE_NOTE_VIEW)
+ to_be = BJB_TOOLBAR_NOTE_VIEW;
- case BJB_WINDOW_BASE_NO_NOTE:
- case BJB_WINDOW_BASE_NO_RESULT:
- case BJB_WINDOW_BASE_MAIN_VIEW:
- if (bjb_main_view_get_selection_mode (self->parent) == TRUE)
- to_be = BJB_TOOLBAR_SELECT;
- else
- to_be = BJB_TOOLBAR_LIST;
- break;
+ /* Main view in selection mode */
+ else if (group == BIJI_LIVING_ITEMS && selection_mode)
+ to_be = BJB_TOOLBAR_SELECT;
- case BJB_WINDOW_BASE_ARCHIVE_VIEW:
- if (bjb_main_view_get_selection_mode (self->parent) == TRUE)
- to_be = BJB_TOOLBAR_TRASH_SELECT;
- else
- to_be = BJB_TOOLBAR_TRASH_LIST;
- break;
+ /* Trash view in selection mode */
+ else if (group == BIJI_ARCHIVED_ITEMS && selection_mode)
+ to_be = BJB_TOOLBAR_TRASH_SELECT;
- /* Not really a toolbar,
- * still used for Spinner */
- case BJB_WINDOW_BASE_SPINNER_VIEW:
- case BJB_WINDOW_BASE_ERROR_TRACKER:
- case BJB_WINDOW_BASE_NO_VIEW:
- default:
- break;
- }
+ /* Trash view */
+ else if (group == BIJI_ARCHIVED_ITEMS && !selection_mode)
+ to_be = BJB_TOOLBAR_TRASH_LIST;
+ /* Main view and everything else */
+ else
+ to_be = BJB_TOOLBAR_LIST;
/* Simply clear then populate */
if (to_be != self->type || view_type == BJB_WINDOW_BASE_ARCHIVE_VIEW)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]