diff -r 0e4f009eab8b -r 67188bd752db background_chooser_dialog.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/background_chooser_dialog.h Mon Jul 07 08:10:39 2008 -0500 @@ -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