#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