aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-header.h
blob: cfd6ebb6c6a1745d7539a938749ef1c4b1d6011a (plain) (blame)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* 
 * e-table-header.h
 * Copyright 1999, 2000, 2001, Ximian, Inc.
 *
 * Authors:
 *   Chris Lahey <clahey@ximian.com>
 *   Miguel de Icaza <miguel@ximian.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License, version 2, as published by the Free Software Foundation.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */

#ifndef _E_TABLE_COLUMN_H_
#define _E_TABLE_COLUMN_H_

#include <gtk/gtkobject.h>
#include <gdk/gdk.h>
#include <gal/e-table/e-table-sort-info.h>
#include <gal/e-table/e-table-col.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

typedef struct _ETableHeader ETableHeader;

#define E_TABLE_HEADER_TYPE        (e_table_header_get_type ())
#define E_TABLE_HEADER(o)          (GTK_CHECK_CAST ((o), E_TABLE_HEADER_TYPE, ETableHeader))
#define E_TABLE_HEADER_CLASS(k)    (GTK_CHECK_CLASS_CAST((k), E_TABLE_HEADER_TYPE, ETableHeaderClass))
#define E_IS_TABLE_HEADER(o)       (GTK_CHECK_TYPE ((o), E_TABLE_HEADER_TYPE))
#define E_IS_TABLE_HEADER_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TABLE_HEADER_TYPE))

/*
 * A Columnar header.
 */
struct _ETableHeader {
    GtkObject base;

    int col_count;
    int width;
    int nominal_width;
    int width_extras;

    ETableSortInfo *sort_info;
    int sort_info_group_change_id;

    ETableCol **columns;
    
    GSList *change_queue, *change_tail;
    gint idle;
};

typedef struct {
    GtkObjectClass parent_class;

    void (*structure_change) (ETableHeader *eth);
    void (*dimension_change) (ETableHeader *eth, int col);
    int (*request_width) (ETableHeader *eth, int col);
} ETableHeaderClass;

GtkType       e_table_header_get_type               (void);
ETableHeader *e_table_header_new                    (void);

void          e_table_header_add_column             (ETableHeader *eth,
                             ETableCol    *tc,
                             int           pos);
ETableCol    *e_table_header_get_column             (ETableHeader *eth,
                             int           column);
ETableCol    *e_table_header_get_column_by_col_idx  (ETableHeader *eth,
                             int           col_idx);
int           e_table_header_count                  (ETableHeader *eth);
int           e_table_header_index                  (ETableHeader *eth,
                             int           col);
int           e_table_header_get_index_at           (ETableHeader *eth,
                             int           x_offset);
ETableCol   **e_table_header_get_columns            (ETableHeader *eth);
int           e_table_header_get_selected           (ETableHeader *eth);

int           e_table_header_total_width            (ETableHeader *eth);
void          e_table_header_move                   (ETableHeader *eth,
                             int           source_index,
                             int           target_index);
void          e_table_header_remove                 (ETableHeader *eth,
                             int           idx);
void          e_table_header_set_size               (ETableHeader *eth,
                             int           idx,
                             int           size);
void          e_table_header_set_selection          (ETableHeader *eth,
                             gboolean      allow_selection);
int           e_table_header_col_diff               (ETableHeader *eth,
                             int           start_col,
                             int           end_col);

void          e_table_header_calc_widths            (ETableHeader *eth);
GList        *e_table_header_get_selected_indexes   (ETableHeader *eth);

void          e_table_header_update_horizontal      (ETableHeader *eth);
int           e_table_header_prioritized_column     (ETableHeader *eth);


#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif /* _E_TABLE_HEADER_H_ */