/* 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 */