map_window.cc
changeset 184 4e8704aae278
parent 183 48580778851e
child 185 38dc9e5936c4
     1.1 --- a/map_window.cc	Thu Dec 28 15:31:39 2006 +0000
     1.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.3 @@ -1,42 +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 -#include "map_window.h"
    1.23 -
    1.24 -MapWindow::MapWindow()
    1.25 -{
    1.26 -  refMapStore = Gtk::ListStore::create(mapColumns);
    1.27 -  //refMapStore->signal_row_changed().connect(sigc::mem_fun(*this, &Phy sicalProperties::onChannelChanged));
    1.28 -  twMap.set_model(refMapStore);
    1.29 -  twMap.append_column_editable("Name", mapColumns.colName);
    1.30 -  //twMap.append_column_editable("Value type", mapColumns.colValue);
    1.31 -  //twMap.append_column_editable("Map type", mapColumns.colType);
    1.32 -
    1.33 -  swMap.set_size_request(-1, 300);
    1.34 -  swMap.add(twMap);
    1.35 -  swMap.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
    1.36 -
    1.37 -  swMap.add(twMap);
    1.38 -  add(swMap);
    1.39 -
    1.40 -  show_all_children();
    1.41 -}
    1.42 -
    1.43 -MapWindow::~MapWindow()
    1.44 -{
    1.45 -}