aboutsummaryrefslogtreecommitdiff
path: root/src/displaywindow.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-12-16 10:36:53 -0800
committerThomas White <taw@bitwiz.org.uk>2009-12-16 10:36:53 -0800
commitd84fd5ff386a1393bbec3b67c8f165c95613a53e (patch)
treefcba5c62793a58522f17a3a860f997abc2e72ecc /src/displaywindow.h
parent5ee02bbd3e86bb6b83a457009ed0a4b5d864dec9 (diff)
Add number-viewing window, use signed values as well
Diffstat (limited to 'src/displaywindow.h')
-rw-r--r--src/displaywindow.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/displaywindow.h b/src/displaywindow.h
index 587cdb23..be8a04af 100644
--- a/src/displaywindow.h
+++ b/src/displaywindow.h
@@ -30,6 +30,14 @@ typedef struct {
} BoostIntDialog;
+struct numberswindow {
+ GtkWidget *window;
+ GtkWidget *labels[17*17];
+ unsigned int cx;
+ unsigned int cy;
+};
+
+
typedef struct {
GtkWidget *window;
@@ -37,12 +45,14 @@ typedef struct {
GtkUIManager *ui;
GtkActionGroup *action_group;
GdkPixbuf *pixbuf;
+ gulong motion_callback;
struct hdfile *hdfile;
/* Dialog boxes */
BinningDialog *binning_dialog;
BoostIntDialog *boostint_dialog;
+ struct numberswindow *numbers_window;
int width;
int height; /* Size of the drawing area */