Change sidebar rating pane layout
[geeqie.git] / src / bar.h
index 7723459..6569122 100644 (file)
--- a/src/bar.h
+++ b/src/bar.h
@@ -1,16 +1,24 @@
 /*
- * Geeqie
- * (C) 2004 John Ellis
- * Copyright (C) 2008 - 2012 The Geeqie Team
+ * Copyright (C) 2004 John Ellis
+ * Copyright (C) 2008 - 2016 The Geeqie Team
  *
  * Author: Vladimir Nadvornik
  *
- * This software is released under the GNU General Public License (GNU GPL).
- * Please read the included file COPYING for more information.
- * This software comes with no warranty of any kind, use at your own risk!
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
-
 #ifndef BAR_H
 #define BAR_H
 
@@ -20,25 +28,24 @@ typedef enum {
        PANE_EXIF,
        PANE_HISTOGRAM,
        PANE_KEYWORDS,
-       PANE_GPS
+       PANE_GPS,
+       PANE_RATING
 } PaneType;
 
 typedef struct _PaneData PaneData;
 
 struct _PaneData {
-       /* filled in by pane */
-       void (*pane_set_fd)(GtkWidget *pane, FileData *fd);
-       void (*pane_notify_selection)(GtkWidget *pane, gint count);
-       gint (*pane_event)(GtkWidget *pane, GdkEvent *event);
-       void (*pane_write_config)(GtkWidget *pane, GString *outstr, gint indent);
-       GtkWidget *title;
-       gboolean expanded;
-       gchar *id;
-       PaneType type;
-       
-       /* filled in by bar */
-       GtkWidget *bar;
-       LayoutWindow *lw;
+       void (*pane_set_fd)(GtkWidget *pane, FileData *fd); /**< filled in by pane */
+       void (*pane_notify_selection)(GtkWidget *pane, gint count); /**< filled in by pane */
+       gint (*pane_event)(GtkWidget *pane, GdkEvent *event); /**< filled in by pane */
+       void (*pane_write_config)(GtkWidget *pane, GString *outstr, gint indent); /**< filled in by pane */
+       GtkWidget *title; /**< filled in by pane */
+       gboolean expanded; /**< filled in by pane */
+       gchar *id; /**< filled in by pane */
+       PaneType type; /**< filled in by pane */
+
+       GtkWidget *bar; /**< filled in by bar */
+       LayoutWindow *lw; /**< filled in by bar */
 };
 
 
@@ -46,7 +53,7 @@ struct _PaneData {
 
 GtkWidget *bar_new(LayoutWindow *lw);
 GtkWidget *bar_new_from_config(LayoutWindow *lw, const gchar **attribute_names, const gchar **attribute_values);
-GtkWidget *bar_update_from_config(GtkWidget *bar, const gchar **attribute_names, const gchar **attribute_values);
+GtkWidget *bar_update_from_config(GtkWidget *bar, const gchar **attribute_names, const gchar **attribute_values, LayoutWindow *lw);
 
 void bar_close(GtkWidget *bar);