diff options
author | Thomas White <taw@bitwiz.org.uk> | 2009-12-16 10:36:53 -0800 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2009-12-16 10:36:53 -0800 |
commit | d84fd5ff386a1393bbec3b67c8f165c95613a53e (patch) | |
tree | fcba5c62793a58522f17a3a860f997abc2e72ecc /src/displaywindow.h | |
parent | 5ee02bbd3e86bb6b83a457009ed0a4b5d864dec9 (diff) |
Add number-viewing window, use signed values as well
Diffstat (limited to 'src/displaywindow.h')
-rw-r--r-- | src/displaywindow.h | 10 |
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 */ |