| [f7ee68] | 1 | /*
 | 
|---|
| [56f73b] | 2 |  * DummyUI.hpp
 | 
|---|
| [f7ee68] | 3 |  *
 | 
|---|
 | 4 |  *  Created on: Jul 29, 2010
 | 
|---|
 | 5 |  *      Author: crueger
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
| [56f73b] | 8 | #ifndef DUMMYUI_HPP_
 | 
|---|
 | 9 | #define DUMMYUI_HPP_
 | 
|---|
 | 10 | 
 | 
|---|
 | 11 | // include config.h
 | 
|---|
 | 12 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 13 | #include <config.h>
 | 
|---|
 | 14 | #endif
 | 
|---|
| [f7ee68] | 15 | 
 | 
|---|
 | 16 | #include "UIElements/UIFactory.hpp"
 | 
|---|
 | 17 | #include "UIElements/Dialog.hpp"
 | 
|---|
 | 18 | 
 | 
|---|
 | 19 | class DummyDialog : public Dialog
 | 
|---|
 | 20 | {
 | 
|---|
 | 21 | public:
 | 
|---|
 | 22 |   DummyDialog(){}
 | 
|---|
 | 23 |   virtual ~DummyDialog(){}
 | 
|---|
 | 24 | 
 | 
|---|
 | 25 |   virtual void queryEmpty(const char *, std::string = ""){}
 | 
|---|
 | 26 |   virtual void queryBoolean(const char *, std::string = ""){}
 | 
|---|
 | 27 |   virtual void queryInt(const char *, std::string = ""){}
 | 
|---|
 | 28 |   virtual void queryInts(const char *, std::string = ""){}
 | 
|---|
 | 29 |   virtual void queryString(const char*, std::string = ""){}
 | 
|---|
 | 30 |   virtual void queryStrings(const char*, std::string = ""){}
 | 
|---|
 | 31 |   virtual void queryDouble(const char*, std::string = ""){}
 | 
|---|
 | 32 |   virtual void queryDoubles(const char*, std::string = ""){}
 | 
|---|
 | 33 |   virtual void queryAtom(const char*,std::string = ""){}
 | 
|---|
 | 34 |   virtual void queryAtoms(const char*,std::string = ""){}
 | 
|---|
 | 35 |   virtual void queryMolecule(const char*,std::string = ""){}
 | 
|---|
 | 36 |   virtual void queryMolecules(const char*,std::string = ""){}
 | 
|---|
 | 37 |   virtual void queryVector(const char*,bool, std::string = ""){}
 | 
|---|
 | 38 |   virtual void queryVectors(const char*,bool, std::string = ""){}
 | 
|---|
 | 39 |   virtual void queryBox(const char*, std::string = ""){}
 | 
|---|
 | 40 |   virtual void queryElement(const char*, std::string = ""){}
 | 
|---|
 | 41 |   virtual void queryElements(const char*, std::string = ""){}
 | 
|---|
| [6f5dfe] | 42 |   virtual void queryFile(const char*, std::string = ""){}
 | 
|---|
| [f7ee68] | 43 | };
 | 
|---|
 | 44 | 
 | 
|---|
 | 45 | class DummyUIFactory : public UIFactory
 | 
|---|
 | 46 | {
 | 
|---|
 | 47 | public:
 | 
|---|
 | 48 |   virtual ~DummyUIFactory(){}
 | 
|---|
 | 49 | 
 | 
|---|
 | 50 |   virtual Dialog* makeDialog(){return new DummyDialog;}
 | 
|---|
 | 51 |   virtual MainWindow* makeMainWindow(){return 0;}
 | 
|---|
 | 52 | 
 | 
|---|
 | 53 |   struct description : public UIFactory::factoryDescription {
 | 
|---|
 | 54 |     description():
 | 
|---|
 | 55 |         UIFactory::factoryDescription("Dummy")
 | 
|---|
 | 56 |     {}
 | 
|---|
 | 57 |     virtual ~description(){}
 | 
|---|
 | 58 | 
 | 
|---|
 | 59 |     virtual UIFactory* makeFactory(){return new DummyUIFactory;};
 | 
|---|
 | 60 |   };
 | 
|---|
 | 61 | 
 | 
|---|
 | 62 | protected:
 | 
|---|
 | 63 |   DummyUIFactory(){}
 | 
|---|
 | 64 | };
 | 
|---|
 | 65 | 
 | 
|---|
| [56f73b] | 66 | #endif /* DUMMYUI_HPP_ */
 | 
|---|