|
Last change
on this file since 83afe0 was 83afe0, checked in by Frederik Heber <heber@…>, 16 years ago |
|
Extended UIFactory to a CommandLine derivate.
Signed-off-by: Frederik Heber <heber@…>
|
-
Property mode
set to
100644
|
|
File size:
708 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * CommandLineWindow.cpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: May 8, 2010
|
|---|
| 5 | * Author: heber
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #include <boost/bind.hpp>
|
|---|
| 9 |
|
|---|
| 10 | #include "UIElements/CommandLineWindow.hpp"
|
|---|
| 11 | #include "UIElements/CommandLineStatusIndicator.hpp"
|
|---|
| 12 |
|
|---|
| 13 | #include <iostream>
|
|---|
| 14 |
|
|---|
| 15 | using namespace std;
|
|---|
| 16 |
|
|---|
| 17 | // TODO: see what code can be moved to a base class for Graphic and CommandLine Windows
|
|---|
| 18 | CommandLineWindow::CommandLineWindow(menuPopulaters populaters,MoleculeListClass *molecules, config *configuration, periodentafel *periode, char *ConfigFileName)
|
|---|
| 19 | {
|
|---|
| 20 |
|
|---|
| 21 | // Add status indicators etc...
|
|---|
| 22 |
|
|---|
| 23 | statusIndicator = new CommandLineStatusIndicator();
|
|---|
| 24 | }
|
|---|
| 25 |
|
|---|
| 26 | CommandLineWindow::~CommandLineWindow()
|
|---|
| 27 | {
|
|---|
| 28 | delete statusIndicator;
|
|---|
| 29 | }
|
|---|
| 30 |
|
|---|
| 31 | void CommandLineWindow::display() {
|
|---|
| 32 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.