clang-tidy: use using
[geeqie.git] / src / bar.h
1 /*
2  * Copyright (C) 2004 John Ellis
3  * Copyright (C) 2008 - 2016 The Geeqie Team
4  *
5  * Author: Vladimir Nadvornik
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifndef BAR_H
23 #define BAR_H
24
25 enum PaneType {
26         PANE_UNDEF = 0,
27         PANE_COMMENT,
28         PANE_EXIF,
29         PANE_HISTOGRAM,
30         PANE_KEYWORDS,
31         PANE_GPS,
32         PANE_RATING
33 };
34
35 struct PaneData {
36         void (*pane_set_fd)(GtkWidget *pane, FileData *fd); /**< filled in by pane */
37         void (*pane_notify_selection)(GtkWidget *pane, gint count); /**< filled in by pane */
38         gint (*pane_event)(GtkWidget *pane, GdkEvent *event); /**< filled in by pane */
39         void (*pane_write_config)(GtkWidget *pane, GString *outstr, gint indent); /**< filled in by pane */
40         GtkWidget *title; /**< filled in by pane */
41         gboolean expanded; /**< filled in by pane */
42         gchar *id; /**< filled in by pane */
43         PaneType type; /**< filled in by pane */
44
45         GtkWidget *bar; /**< filled in by bar */
46         LayoutWindow *lw; /**< filled in by bar */
47 };
48
49
50
51
52 GtkWidget *bar_new(LayoutWindow *lw);
53 GtkWidget *bar_new_from_config(LayoutWindow *lw, const gchar **attribute_names, const gchar **attribute_values);
54 GtkWidget *bar_update_from_config(GtkWidget *bar, const gchar **attribute_names, const gchar **attribute_values, LayoutWindow *lw, gboolean startup);
55
56 void bar_close(GtkWidget *bar);
57
58 void bar_write_config(GtkWidget *bar, GString *outstr, gint indent);
59
60 void bar_populate_default(GtkWidget *bar);
61
62 void bar_add(GtkWidget *bar, GtkWidget *pane);
63 GtkWidget *bar_find_pane_by_id(GtkWidget *bar, PaneType type, const gchar *id);
64
65 void bar_clear(GtkWidget *bar);
66
67 void bar_set_fd(GtkWidget *bar, FileData *fd);
68 void bar_notify_selection(GtkWidget *bar, gint count);
69 gboolean bar_event(GtkWidget *bar, GdkEvent *event);
70
71 gint bar_get_width(GtkWidget *bar);
72
73 GtkWidget *bar_pane_expander_title(const gchar *title);
74 void bar_update_expander(GtkWidget *pane);
75 gboolean bar_pane_translate_title(PaneType type, const gchar *id, gchar **title);
76 const gchar *bar_pane_get_default_config(const gchar *id);
77
78 #endif
79 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */