diff options
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 */ |