source: molecuilder/src/UIElements/MainWindow.hpp@ d97af9

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

Seperated building of mainWindow and contained Menus

  • Moved code to build Menus to builder.cpp
  • Moved WindowGeneration code to constructor
  • Property mode set to 100644
File size: 472 bytes
RevLine 
[34ff5e6]1/*
2 * Window.hpp
3 *
4 * Created on: Jan 7, 2010
5 * Author: crueger
6 */
7
8#ifndef MAINWINDOW_HPP_
9#define MAINWINDOW_HPP_
10
11class MoleculeListClass;
12class config;
13class periodentafel;
14
[d97af9]15class Menu;
16
[34ff5e6]17class MainWindow
18{
19public:
20 MainWindow();
21 virtual ~MainWindow();
22
[d97af9]23 virtual void display()=0;
24
25};
26
27typedef void (*MenuMaker)(Menu*,MoleculeListClass*, config*, periodentafel*);
[34ff5e6]28
[d97af9]29struct menuPopulaters{
30 MenuMaker MakeEditMoleculesMenu;
[34ff5e6]31};
32
33#endif /* MAINWINDOW_HPP_ */
Note: See TracBrowser for help on using the repository browser.