1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* gtd-task-list-view.h
*
* Copyright (C) 2015-2020 Georges Basile Stavracas Neto <georges.stavracas@gmail.com>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef GTD_TASK_LIST_VIEW_H
#define GTD_TASK_LIST_VIEW_H
#include "gtd-types.h"
#include <gtk/gtk.h>
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 */
|