blob: e2c06f0e10d7e80c36a63581d5f8e8c51b9c95aa [file] [log] [blame]
Stepan Salenikovicha3557452015-02-20 14:14:12 -05001/*
Guillaume Roguez77c579d2018-01-30 15:54:02 -05002 * Copyright (C) 2015-2018 Savoir-faire Linux Inc.
Stepan Salenikovicha3557452015-02-20 14:14:12 -05003 * Author: Stepan Salenikovich <stepan.salenikovich@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Stepan Salenikovicha3557452015-02-20 14:14:12 -050018 */
19
20#ifndef GTK_Q_TREE_MODEL_H_
21#define GTK_Q_TREE_MODEL_H_
22
23#include <gtk/gtk.h>
24#include <QtCore/QAbstractItemModel>
25#include "gtkaccessproxymodel.h"
26
27G_BEGIN_DECLS
28
29#define GTK_TYPE_Q_TREE_MODEL (gtk_q_tree_model_get_type ())
30#define GTK_Q_TREE_MODEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_Q_TREE_MODEL, GtkQTreeModel))
31#define GTK_Q_TREE_MODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_Q_TREE_MODEL, GtkQTreeModelClass))
32#define GTK_IS_Q_TREE_MODEL(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_Q_TREE_MODEL))
33#define GTK_IS_Q_TREE_MODEL_CLASS(klass)(G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_Q_TREE_MODEL))
34#define GTK_Q_TREE_MODEL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_Q_TREE_MODEL, GtkQTreeModelClass))
35
36typedef struct _GtkQTreeModel GtkQTreeModel;
37typedef struct _GtkQTreeModelClass GtkQTreeModelClass;
38
39GType gtk_q_tree_model_get_type (void) G_GNUC_CONST;
40GtkQTreeModel *gtk_q_tree_model_new (QAbstractItemModel *, size_t, ...);
41QAbstractItemModel *gtk_q_tree_model_get_qmodel (GtkQTreeModel *);
42QModelIndex gtk_q_tree_model_get_source_idx (GtkQTreeModel *, GtkTreeIter *);
43gboolean gtk_q_tree_model_source_index_to_iter(GtkQTreeModel *, const QModelIndex &, GtkTreeIter *);
Stepan Salenikovich3026bb32017-04-27 13:31:48 -040044gboolean gtk_q_tree_model_is_layout_changing (GtkQTreeModel *);
45
46/**
47 * Helper function which takes a GtkTreeSelection which comes from a GtkTreeView which is using a
48 * GtkQTreeModel and returns TRUE if the layout is changing and so the selection change should be
49 * ignored. Returns FALSE otherwise
50 */
51gboolean gtk_q_tree_model_ignore_selection_change (GtkTreeSelection *);
Stepan Salenikovicha3557452015-02-20 14:14:12 -050052
53G_END_DECLS
54
55#endif /* GTK_Q_TREE_MODEL_H_ */