From 5d8e439bc597159e3c9f0a8b65c0ae869dead3a8 Mon Sep 17 00:00:00 2001 From: Matthew Fennell Date: Sat, 27 Dec 2025 12:40:20 +0000 Subject: Import Upstream version 43.0 --- src/gui/gtd-task-list-view.h | 73 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/gui/gtd-task-list-view.h (limited to 'src/gui/gtd-task-list-view.h') diff --git a/src/gui/gtd-task-list-view.h b/src/gui/gtd-task-list-view.h new file mode 100644 index 0000000..bb863dc --- /dev/null +++ b/src/gui/gtd-task-list-view.h @@ -0,0 +1,73 @@ +/* gtd-task-list-view.h + * + * Copyright (C) 2015-2020 Georges Basile Stavracas Neto + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef GTD_TASK_LIST_VIEW_H +#define GTD_TASK_LIST_VIEW_H + +#include "gtd-types.h" + +#include + +G_BEGIN_DECLS + +#define GTD_TYPE_TASK_LIST_VIEW (gtd_task_list_view_get_type()) +G_DECLARE_FINAL_TYPE (GtdTaskListView, gtd_task_list_view, GTD, TASK_LIST_VIEW, GtkBox) + +/** + * GtdTaskListViewHeaderFunc: + * @task: the #GtdTask that @row represents + * @previous_task: the #GtdTask that @before represents + * @user_data: (closure): user data + * + * The header function called on every task. + * + * Returns: (transfer full)(nullable): a #GtkWidget, or %NULL. + */ +typedef GtkWidget* (*GtdTaskListViewHeaderFunc) (GtdTask *task, + GtdTask *previous_task, + gpointer user_data); + +GtkWidget* gtd_task_list_view_new (void); + +GListModel* gtd_task_list_view_get_model (GtdTaskListView *view); + +void gtd_task_list_view_set_model (GtdTaskListView *view, + GListModel *model); + +gboolean gtd_task_list_view_get_show_list_name (GtdTaskListView *view); + +void gtd_task_list_view_set_show_list_name (GtdTaskListView *view, + gboolean show_list_name); + +gboolean gtd_task_list_view_get_show_due_date (GtdTaskListView *self); + +void gtd_task_list_view_set_show_due_date (GtdTaskListView *self, + gboolean show_due_date); + +void gtd_task_list_view_set_header_func (GtdTaskListView *view, + GtdTaskListViewHeaderFunc func, + gpointer user_data); + +GDateTime* gtd_task_list_view_get_default_date (GtdTaskListView *self); + +void gtd_task_list_view_set_default_date (GtdTaskListView *self, + GDateTime *default_date); + +G_END_DECLS + +#endif /* GTD_TASK_LIST_VIEW_H */ -- cgit v1.2.3