diff options
author | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-07-18 12:44:18 +0200 |
---|---|---|
committer | Matthias Vogelgesang <matthias.vogelgesang@kit.edu> | 2013-07-18 12:44:18 +0200 |
commit | 9fdc54d27a8290b98d6fb7122af6beb5ab3b05db (patch) | |
tree | 5b015ba494ea74d8012488dd0a1cdaa83f071618 /bin/gui/egg-histogram-view.h | |
parent | cd6b4ae0deb045751ce10f2845e9c0456cf21d3d (diff) | |
download | libuca-9fdc54d27a8290b98d6fb7122af6beb5ab3b05db.tar.gz libuca-9fdc54d27a8290b98d6fb7122af6beb5ab3b05db.tar.bz2 libuca-9fdc54d27a8290b98d6fb7122af6beb5ab3b05db.tar.xz libuca-9fdc54d27a8290b98d6fb7122af6beb5ab3b05db.zip |
Fix histogram problems
Diffstat (limited to 'bin/gui/egg-histogram-view.h')
-rw-r--r-- | bin/gui/egg-histogram-view.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/bin/gui/egg-histogram-view.h b/bin/gui/egg-histogram-view.h index 7a62fca..afb0ad6 100644 --- a/bin/gui/egg-histogram-view.h +++ b/bin/gui/egg-histogram-view.h @@ -50,14 +50,12 @@ struct _EggHistogramViewClass }; GType egg_histogram_view_get_type (void); -GtkWidget * egg_histogram_view_new (void); -void egg_histogram_view_set_data (EggHistogramView *view, - gpointer data, - guint n_elements, +GtkWidget * egg_histogram_view_new (guint n_elements, guint n_bits, guint n_bins); -void egg_histogram_get_visible_range - (EggHistogramView *view, +void egg_histogram_view_update (EggHistogramView *view, + gpointer data); +void egg_histogram_get_range (EggHistogramView *view, gdouble *min, gdouble *max); |