summaryrefslogtreecommitdiff
path: root/riscos/gui/progress_bar.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/gui/progress_bar.h')
-rw-r--r--riscos/gui/progress_bar.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/riscos/gui/progress_bar.h b/riscos/gui/progress_bar.h
new file mode 100644
index 000000000..063326b82
--- /dev/null
+++ b/riscos/gui/progress_bar.h
@@ -0,0 +1,33 @@
+/*
+ * This file is part of NetSurf, http://netsurf.sourceforge.net/
+ * Licensed under the GNU General Public License,
+ * http://www.opensource.org/licenses/gpl-license
+ * Copyright 2006 Richard Wilson <info@tinct.net>
+ */
+
+/** \file
+ * Progress bar (interface).
+ */
+
+#include <stdbool.h>
+#include "oslib/osspriteop.h"
+#include "oslib/wimp.h"
+
+#ifndef _NETSURF_RISCOS_PROGRESS_BAR_H_
+#define _NETSURF_RISCOS_PROGRESS_BAR_H_
+
+struct progress_bar;
+
+void ro_gui_progress_bar_init(osspriteop_area *icons);
+
+struct progress_bar *ro_gui_progress_bar_create(void);
+void ro_gui_progress_bar_destroy(struct progress_bar *pb);
+
+wimp_w ro_gui_progress_bar_get_window(struct progress_bar *pb);
+void ro_gui_progress_bar_set_icon(struct progress_bar *pb, const char *icon);
+void ro_gui_progress_bar_set_value(struct progress_bar *pb, unsigned int value);
+unsigned int ro_gui_progress_bar_get_value(struct progress_bar *pb);
+void ro_gui_progress_bar_set_range(struct progress_bar *pb, unsigned int range);
+unsigned int ro_gui_progress_bar_get_range(struct progress_bar *pb);
+void ro_gui_progress_bar_set_visible(struct progress_bar *pb, bool visible);
+#endif