file_chooser_extra_widget.h
changeset 173 8339178ae43d
child 174 95872af46fc4
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/file_chooser_extra_widget.h	Wed Oct 25 17:50:02 2006 +0000
     1.3 @@ -0,0 +1,25 @@
     1.4 +#ifndef FILE_CHOOSER_EXTRA_WIDGET
     1.5 +#define FILE_CHOOSER_EXTRA_WIDGET
     1.6 +
     1.7 +#include <gtkmm/expander.h>
     1.8 +#include <gtkmm/box.h>
     1.9 +#include <gtkmm/radiobutton.h>
    1.10 +#include <gtkmm/label.h>
    1.11 +
    1.12 +class MapStorage;
    1.13 +
    1.14 +class FileChooserExtraWidget : public Gtk::Expander
    1.15 +{
    1.16 +  private:
    1.17 +    Gtk::VBox box;
    1.18 +    Gtk::Label lblGUIData;
    1.19 +    Gtk::RadioButton rbGUISection;
    1.20 +    Gtk::RadioButton rbConfFile;
    1.21 +    MapStorage* pMapStorage;
    1.22 +    void onRbToggled();
    1.23 +  public:
    1.24 +    FileChooserExtraWidget(MapStorage* ms);
    1.25 +    ~FileChooserExtraWidget();
    1.26 +};
    1.27 +
    1.28 +#endif