Change sidebar rating pane layout
[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 typedef enum {
26         PANE_UNDEF = 0,
27         PANE_COMMENT,
28         PANE_EXIF,
29         PANE_HISTOGRAM,
30         PANE_KEYWORDS,
31         PANE_GPS,
32         PANE_RATING
33 } PaneType;
34
35 typedef struct _PaneData PaneData;
36
37 struct _PaneData {
38         void (*pane_set_fd)(GtkWidget *pane, FileData *fd); /**< filled in by pane */
39         void (*pane_notify_selection)(GtkWidget *pane, gint count); /**< filled in by pane */
40         gint (*pane_event)(GtkWidget *pane, GdkEvent *event); /**< filled in by pane */
41         void (*pane_write_config)(GtkWidget *pane, GString *outstr, gint indent); /**< filled in by pane */
42         GtkWidget *title; /**< filled in by pane */
43         gboolean expanded; /**< filled in by pane */
44         gchar *id; /**< filled in by pane */
45         PaneType type; /**< filled in by pane */
46
47         GtkWidget *bar; /**< filled in by bar */
48         LayoutWindow *lw; /**< filled in by bar */
49 };
50
51
52
53
54 GtkWidget *bar_new(LayoutWindow *lw);
55 GtkWidget *bar_new_from_config(LayoutWindow *lw, const gchar **attribute_names, const gchar **attribute_values);
56 GtkWidget *bar_update_from_config(GtkWidget *bar, const gchar **attribute_names, const gchar **attribute_values, LayoutWindow *lw);
57
58 void bar_close(GtkWidget *bar);
59
60 void bar_write_config(GtkWidget *bar, GString *outstr, gint indent);
61
62 void bar_populate_default(GtkWidget *bar);
63
64 void bar_add(GtkWidget *bar, GtkWidget *pane);
65 GtkWidget *bar_find_pane_by_id(GtkWidget *bar, PaneType type, const gchar *id);
66
67 void bar_clear(GtkWidget *bar);
68
69 void bar_set_fd(GtkWidget *bar, FileData *fd);
70 void bar_notify_selection(GtkWidget *bar, gint count);
71 gboolean bar_event(GtkWidget *bar, GdkEvent *event);
72
73 gint bar_get_width(GtkWidget *bar);
74
75 GtkWidget *bar_pane_expander_title(const gchar *title);
76 void bar_update_expander(GtkWidget *pane);
77 gboolean bar_pane_translate_title(PaneType type, const gchar *id, gchar **title);
78 const gchar *bar_pane_get_default_config(const gchar *id);
79
80 #endif
81 /* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */