Changeset b918031 for molecuilder/src/UIElements/Dialog.hpp
- Timestamp:
- May 9, 2010, 11:59:35 AM (16 years ago)
- Children:
- e62daa
- Parents:
- c93262
- git-author:
- Frederik Heber <heber@…> (05/09/10 11:15:17)
- git-committer:
- Frederik Heber <heber@…> (05/09/10 11:59:35)
- File:
-
- 1 edited
-
molecuilder/src/UIElements/Dialog.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/UIElements/Dialog.hpp
rc93262 rb918031 23 23 virtual ~Dialog(); 24 24 25 virtual void queryEmpty(const char *, std::string = "")=0; 25 26 virtual void queryInt(const char *, int *, std::string = "")=0; 26 27 virtual void queryDouble(const char*,double *, std::string = "")=0; … … 56 57 std::string title; //!< short title of the query 57 58 std::string description; //!< longer description for tooltips or for help 59 }; 60 61 // Empty Query is just meant for showing text, such as version, help, initial message or alike 62 class EmptyQuery : public Query { 63 public: 64 EmptyQuery(std::string title, std::string _description = ""); 65 virtual ~EmptyQuery(); 66 virtual bool handle()=0; 67 virtual void setResult(); 58 68 }; 59 69
Note:
See TracChangeset
for help on using the changeset viewer.
