source: molecuilder/src/UIElements/TextUIFactory.hpp@ 6d21bd

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

Added Basis for creating globally accessible and compatible UIElements

  • Added Factories for UIElements that can be chosen at programm startup
  • Added Dialogs that can be used to query values
  • Property mode set to 100644
File size: 376 bytes
Line 
1/*
2 * TextUIFactory.h
3 *
4 * Created on: Jan 5, 2010
5 * Author: crueger
6 */
7
8#ifndef TEXTUIFACTORY_HPP_
9#define TEXTUIFACTORY_HPP_
10
11#include "UIElements/UIFactory.hpp"
12
13class TextUIFactory : public UIFactory
14{
15friend class UIFactory;
16
17public:
18 virtual ~TextUIFactory();
19
20 virtual Dialog* makeDialog();
21
22protected:
23 TextUIFactory();
24};
25
26#endif /* TEXTUIFACTORY_HPP_ */
Note: See TracBrowser for help on using the repository browser.