COIN-OR::LEMON - Graph Library

source: glemon-0.x/file_chooser_extra_widget.h @ 173:8339178ae43d

Last change on this file since 173:8339178ae43d was 173:8339178ae43d, checked in by Akos Ladanyi, 18 years ago

Added two new classes.

File size: 524 bytes
Line 
1#ifndef FILE_CHOOSER_EXTRA_WIDGET
2#define FILE_CHOOSER_EXTRA_WIDGET
3
4#include <gtkmm/expander.h>
5#include <gtkmm/box.h>
6#include <gtkmm/radiobutton.h>
7#include <gtkmm/label.h>
8
9class MapStorage;
10
11class FileChooserExtraWidget : public Gtk::Expander
12{
13  private:
14    Gtk::VBox box;
15    Gtk::Label lblGUIData;
16    Gtk::RadioButton rbGUISection;
17    Gtk::RadioButton rbConfFile;
18    MapStorage* pMapStorage;
19    void onRbToggled();
20  public:
21    FileChooserExtraWidget(MapStorage* ms);
22    ~FileChooserExtraWidget();
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.