file_chooser_extra_widget.h
changeset 186 013afe9ee040
parent 185 38dc9e5936c4
child 187 b465e2c34f23
     1.1 --- a/file_chooser_extra_widget.h	Wed Jan 10 14:39:11 2007 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,43 +0,0 @@
     1.4 -/* -*- C++ -*-
     1.5 - *
     1.6 - * This file is a part of LEMON, a generic C++ optimization library
     1.7 - *
     1.8 - * Copyright (C) 2003-2006
     1.9 - * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10 - * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11 - *
    1.12 - * Permission to use, modify and distribute this software is granted
    1.13 - * provided that this copyright notice appears in all copies. For
    1.14 - * precise terms see the accompanying LICENSE file.
    1.15 - *
    1.16 - * This software is provided "AS IS" with no warranty of any kind,
    1.17 - * express or implied, and with no claim as to its suitability for any
    1.18 - * purpose.
    1.19 - *
    1.20 - */
    1.21 -
    1.22 -#ifndef FILE_CHOOSER_EXTRA_WIDGET
    1.23 -#define FILE_CHOOSER_EXTRA_WIDGET
    1.24 -
    1.25 -#include <gtkmm/expander.h>
    1.26 -#include <gtkmm/box.h>
    1.27 -#include <gtkmm/radiobutton.h>
    1.28 -#include <gtkmm/label.h>
    1.29 -
    1.30 -class MapStorage;
    1.31 -
    1.32 -class FileChooserExtraWidget : public Gtk::Expander
    1.33 -{
    1.34 -  private:
    1.35 -    Gtk::VBox box;
    1.36 -    Gtk::Label lblGUIData;
    1.37 -    Gtk::RadioButton rbGUISection;
    1.38 -    Gtk::RadioButton rbConfFile;
    1.39 -    MapStorage* pMapStorage;
    1.40 -    void onRbToggled();
    1.41 -  public:
    1.42 -    FileChooserExtraWidget(MapStorage* ms);
    1.43 -    ~FileChooserExtraWidget();
    1.44 -};
    1.45 -
    1.46 -#endif