-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
37 lines (25 loc) · 914 Bytes
/
README
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
# General Information
This is lazytree which is based on GTK+ GtkTreeView ideas but with
lazy data retrieval. This is useful for a large number of columns and
rows. It provides an example lazystore which provides the
GtkTreeModel Interface without actually storing data.
Unlike GtkTreeView the columns are computed from the data model such
that all data in the data model is rendered.
lazytreeview renders the data in a lazy manner. Unlike GtkTreeView
LazyTreeView only retrieves the subset of the data from the model
which is required for viewing. This comes with restrictions.
* All cells are rendered with gtk_cell_renderer_text
* All data in the model is provided as string
Friedrich Beckmann
# License
lazytree is licensed under GPL3. See COPYING file.
# Install
## Requirements
* Gtk+ version 3.4.0 and higher
* autotools
## Howto install
aclocal
autoconf
automake --add-missing
./configure
make