source: molecuilder/src/UIElements/TextWindow.cpp@ 34ff5e6

Last change on this file since 34ff5e6 was 34ff5e6, checked in by Tillmann Crueger <crueger@…>, 16 years ago

Added support for creating a main window using the UIFactory.

  • Property mode set to 100644
File size: 557 bytes
Line 
1/*
2 * TextWindow.cpp
3 *
4 * Created on: Jan 7, 2010
5 * Author: crueger
6 */
7
8#include "UIElements/TextWindow.hpp"
9#include "../menu.hpp"
10
11TextWindow::TextWindow()
12{
13 // TODO Auto-generated constructor stub
14
15}
16
17TextWindow::~TextWindow()
18{
19 // TODO Auto-generated destructor stub
20}
21
22void TextWindow::display(MoleculeListClass *molecules, config *configuration, periodentafel *periode, char *ConfigFileName) {
23 oldmenu *main_menu;
24 main_menu = new oldmenu;
25 main_menu->perform(molecules, configuration, periode, ConfigFileName);
26 delete main_menu;
27}
Note: See TracBrowser for help on using the repository browser.