diff -r 48580778851e -r 4e8704aae278 background_chooser_dialog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/background_chooser_dialog.h Wed Jan 10 14:37:46 2007 +0000 @@ -0,0 +1,27 @@ +#ifndef BACKGROUND_CHOOSER_DIALOG +#define BACKGROUND_CHOOSER_DIALOG + +#include +#include +#include +#include + +class MapStorage; + +class BackgroundChooserDialog : public Gtk::Dialog +{ + private: + MapStorage* mapstorage; + Gtk::Label lblBackground; + Gtk::Label lblScaling; + Gtk::FileChooserButton fcbBackground; + Gtk::SpinButton sbScaling; + Gtk::HBox box; + Gtk::Button btnClear; + void clearBackground(); + void setBackground(); + public: + BackgroundChooserDialog(MapStorage* ms); +}; + +#endif