[f5a86a] | 1 | /*
|
---|
| 2 | * Dialog.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jan 5, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef DIALOG_HPP_
|
---|
| 9 | #define DIALOG_HPP_
|
---|
| 10 |
|
---|
| 11 | #include<string>
|
---|
| 12 | #include<list>
|
---|
[104524] | 13 | #include<vector>
|
---|
[f5a86a] | 14 |
|
---|
[6f5dfe] | 15 | #include <boost/filesystem.hpp>
|
---|
| 16 |
|
---|
[8bc733] | 17 | #include "Box.hpp"
|
---|
[57f243] | 18 | #include "LinearAlgebra/Vector.hpp"
|
---|
[7cd6e7] | 19 |
|
---|
[97ebf8] | 20 | class atom;
|
---|
[84c494] | 21 | class Box;
|
---|
[97ebf8] | 22 | class element;
|
---|
[7aa000] | 23 | class molecule;
|
---|
[45f5d6] | 24 |
|
---|
[de8e45] | 25 |
|
---|
| 26 | /** Dialog is one of the two main classes of the UIFactory base class.
|
---|
| 27 | *
|
---|
[db7cb0] | 28 | * The Dialog is meant for asking the user for information needed to perform
|
---|
| 29 | * actions he desires, such as asking for a position in space or a length.
|
---|
[de8e45] | 30 | *
|
---|
[db7cb0] | 31 | * For this purpose there is the base class Query and numerous specializations
|
---|
| 32 | * for each of the types to be asked. There are primitives integer, doubles and
|
---|
| 33 | * string, but also advanced types such as element, molecule or Vector. There
|
---|
| 34 | * is also an empty query for displaying text.
|
---|
[e4afb4] | 35 | *
|
---|
| 36 | * Note that the templatization of Dialog::query() allows for easy implementation
|
---|
| 37 | * of new types that correspond to/are derived from old ones.
|
---|
| 38 | *
|
---|
| 39 | * <H3>How do Dialogs operate?</H3>
|
---|
| 40 | *
|
---|
| 41 | * Dialogs are initiated by Action::FillDialog() function calls. Within Action::Call()
|
---|
| 42 | * a dialog is created and passed on to FillDialog(), which is specialized in each
|
---|
| 43 | * specific Action to ask for the specific parameter it needs.
|
---|
| 44 | *
|
---|
| 45 | * Dialogs are derived for each of the UI types
|
---|
| 46 | * -# CommandLineDialog
|
---|
| 47 | * -# QtDialog
|
---|
| 48 | * -# TextDialog
|
---|
| 49 | *
|
---|
| 50 | * This "asking" for parameters is done via the Query class. There are four types
|
---|
| 51 | * of Query types:
|
---|
| 52 | * -# Query, members in class Dialog
|
---|
| 53 | * -# CommandLineQuery, members in class CommandLineDialog
|
---|
| 54 | * -# QtQuery, members in class QtDialog
|
---|
| 55 | * -# TextQuery, members in class TextDialog
|
---|
| 56 | * Each embodies a certain way of asking the user for the specific type of parameter
|
---|
| 57 | * needed, e.g. a file via the TextMenu interface would be done in member functions of
|
---|
| 58 | * TextDialog::FileTextQuery.
|
---|
| 59 | *
|
---|
| 60 | *
|
---|
| 61 | * Generally, the sequence of events is as follows:
|
---|
| 62 | * -# Action::fillDialog() calls upon Dialog::query<T> for some type T, let's say T
|
---|
| 63 | * stands for double
|
---|
| 64 | * -# Dialog::query<double> call a function queryDouble()
|
---|
| 65 | * -# depending on the currently used UIFactory, the Dialog above is actually either
|
---|
| 66 | * of the three specialized types, let's say CommandLine. And we see that within
|
---|
| 67 | * CommandLineDialog we have the respective method ueryDouble() that registers
|
---|
| 68 | * a new instance of the class CommandLineDialog::DoubleCommandLineQuery.
|
---|
| 69 | * -# The Query's are first registered, as multiple parameters may be needed for
|
---|
| 70 | * a single Action and we don't want the popping up of a dialog window for each
|
---|
| 71 | * alone. Rather, we want to merge the Query's into a single Dialog. Therefore,
|
---|
| 72 | * they are first registered and then executed in sequence. This is done in
|
---|
| 73 | * Dialog::display(), i.e. when the dialog is finally shown to the user.
|
---|
| 74 | * -# Then each of the registered Query's, here our CommandLineDialog::
|
---|
| 75 | * DoubleCommandLineQuery, constructor is called.
|
---|
| 76 | * -# This will call the constructor of its base class, where the actual value
|
---|
| 77 | * is stored and later stored into the ValueStorage class by
|
---|
| 78 | * Dialog::Query::setResult().
|
---|
| 79 | * -# Also, e.g. for the Qt interface, the buttons, labels and so forth are
|
---|
| 80 | * created and added to the dialog.
|
---|
| 81 | * -# Now the users enters information for each UI something different happens:
|
---|
| 82 | * -# CommandLine: The actual value retrieval is done by the CommandLineParser and
|
---|
| 83 | * the boost::program_options library, the value is stored therein for the moment.
|
---|
| 84 | * (see here: http://www.boost.org/doc/libs/1_44_0/doc/html/program_options/)
|
---|
| 85 | * -# TextMenu: The value is requested via std::cin from the user.
|
---|
| 86 | * -# QtMenu: The users enters the value in a Dialog. Due to Qt necessities a
|
---|
| 87 | * Pipe class obtains the value from the Dialog with Qt's signal/slot mechanism
|
---|
| 88 | * and put it into Dialog::...Query value.
|
---|
| 89 | * -# in our case DoubleCommandLineQuery::handle() will be called. The value is
|
---|
| 90 | * retrieved and put into Dialog::DoubleQuery::tmp
|
---|
| 91 | * -# Finally, for each Query, also Dialog::DoubleQuery, setResult() is called which
|
---|
| 92 | * puts the value as a string into the ValueStorage under a given token that is
|
---|
| 93 | * associated with a type (and thereby we assure type-safety).
|
---|
| 94 | *
|
---|
| 95 | * <H3>Regarding derived types of types with already present queries</H3>
|
---|
| 96 | *
|
---|
| 97 | * Example: We have got a derived Vector class, called BoxVector, that is by any means
|
---|
| 98 | * a Vector but with one difference: it is always bound to lie within the current domain.
|
---|
| 99 | * With regards to type-casting it to and from a string however, nothing is different
|
---|
| 100 | * between Vector and BoxVector.
|
---|
| 101 | *
|
---|
| 102 | * So, do we need a new Query for this?
|
---|
| 103 | * No.
|
---|
| 104 | *
|
---|
| 105 | * We just have to do this:
|
---|
| 106 | * -# add a specialization of Dialog::query<BoxVector> where queryVector()is used.
|
---|
| 107 | * @code
|
---|
| 108 | * template <> void Dialog::query<BoxVector>(const char *token, std::string description) {
|
---|
| 109 | * queryVector(token, false, description);
|
---|
| 110 | * }
|
---|
| 111 | * @endcode
|
---|
| 112 | * -# make sure that
|
---|
| 113 | * -# ValueStorage::setCurrentValue() the specialization for class Vector has an
|
---|
| 114 | * if case also for BoxVector and does something appropriate.
|
---|
| 115 | * -# ValueStorage::queryCurrentValue() has another specialization doing the same
|
---|
| 116 | * as for Vector but for BoxVector in its signature.
|
---|
| 117 | *
|
---|
| 118 | * And that's all.
|
---|
| 119 | *
|
---|
| 120 | *
|
---|
| 121 | * <H3>Adding new queries</H3>
|
---|
| 122 | *
|
---|
| 123 | * Check first whether you really need a new query or whether we can derive it and re-use
|
---|
| 124 | * one of the present ones.
|
---|
| 125 | *
|
---|
| 126 | * Due to the three present UI interfaces we have to add a specific Query for each, here
|
---|
| 127 | * is a list:
|
---|
| 128 | * -# add ValueStorage::setCurrentValue() and ValueStorage::queryCurrentValue() for
|
---|
| 129 | * both types
|
---|
| 130 | * -# add Dialog::query...()
|
---|
| 131 | * -# add Dialog::query<>() specialization calling the above function
|
---|
| 132 | * -# add CommandLineDialog::query...(), TextDialog::query...(), and QtDialog::query...(),
|
---|
| 133 | * i.e. for each of the three interface
|
---|
| 134 | * -# add Dialog::...Query class with tmp value of desired type
|
---|
| 135 | * -# add CommandLineDialog::...Query, TextDialog::...Query, QtDialog::...Query
|
---|
| 136 | * -# you probably also need a QtDialog::...QueryPipe() to handle the signal/slot stuff,
|
---|
| 137 | * Qt's moc does not like nested classes. Hence, this has to go extra.
|
---|
| 138 | *
|
---|
[de8e45] | 139 | */
|
---|
[f5a86a] | 140 | class Dialog
|
---|
| 141 | {
|
---|
| 142 | public:
|
---|
| 143 | Dialog();
|
---|
| 144 | virtual ~Dialog();
|
---|
| 145 |
|
---|
[9ee38b] | 146 | template <class T> void query(const char *, std::string = "");
|
---|
| 147 |
|
---|
[86466e] | 148 | virtual void queryEmpty(const char *, std::string = "")=0;
|
---|
[75dc28] | 149 | virtual void queryBoolean(const char *, std::string = "")=0;
|
---|
| 150 | virtual void queryInt(const char *, std::string = "")=0;
|
---|
[7cd6e7] | 151 | virtual void queryInts(const char *, std::string = "")=0;
|
---|
[75dc28] | 152 | virtual void queryDouble(const char*, std::string = "")=0;
|
---|
[7cd6e7] | 153 | virtual void queryDoubles(const char*, std::string = "")=0;
|
---|
[75dc28] | 154 | virtual void queryString(const char*, std::string = "")=0;
|
---|
| 155 | virtual void queryStrings(const char*, std::string = "")=0;
|
---|
| 156 | virtual void queryAtom(const char*,std::string = "")=0;
|
---|
[7cd6e7] | 157 | virtual void queryAtoms(const char*,std::string = "")=0;
|
---|
[75dc28] | 158 | virtual void queryMolecule(const char*, std::string = "")=0;
|
---|
[7cd6e7] | 159 | virtual void queryMolecules(const char*, std::string = "")=0;
|
---|
[75dc28] | 160 | virtual void queryVector(const char*,bool, std::string = "")=0;
|
---|
[7cd6e7] | 161 | virtual void queryVectors(const char*,bool, std::string = "")=0;
|
---|
[75dc28] | 162 | virtual void queryBox(const char*, std::string = "")=0;
|
---|
| 163 | virtual void queryElement(const char*, std::string = "")=0;
|
---|
[7cd6e7] | 164 | virtual void queryElements(const char*, std::string = "")=0;
|
---|
[6f5dfe] | 165 | virtual void queryFile(const char*, std::string = "")=0;
|
---|
[f5a86a] | 166 |
|
---|
[45f5d6] | 167 | virtual bool display();
|
---|
[f5a86a] | 168 |
|
---|
[d3a5ea] | 169 | virtual bool checkAll();
|
---|
| 170 | virtual void setAll();
|
---|
| 171 |
|
---|
[c508ef5] | 172 | virtual bool hasQueries();
|
---|
| 173 |
|
---|
[f5a86a] | 174 | protected:
|
---|
| 175 | // methodology for handling queries
|
---|
| 176 | // all queries are stored and then performed at appropriate times
|
---|
| 177 |
|
---|
| 178 | //these queries can be handled by this dialog
|
---|
[45f5d6] | 179 |
|
---|
| 180 | //TODO: Find a way to reduce complexity...
|
---|
| 181 | //needs O(N*M) query classes, where N is the number of query types and M is the number of GUIs
|
---|
| 182 | //usual approach for reducing inheritance complexity (strategy pattern) does not work,
|
---|
| 183 | //due to lack of common code for query types as well as GUI-Types (all subtypes differ a lot)
|
---|
| 184 |
|
---|
[db7cb0] | 185 | /** Base class for all queries.
|
---|
| 186 | *
|
---|
| 187 | *
|
---|
| 188 | * <h1>How to add another query?</h1>
|
---|
| 189 | *
|
---|
| 190 | * Let's say we want to query for a type called \a Value.
|
---|
| 191 | *
|
---|
| 192 | * Then, we do the following:
|
---|
| 193 | * -# Add a class ValueQuery inside class Dialog, the class contains
|
---|
| 194 | * -# constructor/destructor (latter virtual! because of derived class)
|
---|
| 195 | * -# virtual bool handle() and virtual void setResult()
|
---|
| 196 | * -# a protected member tmp of type Value (NOTE: herein the result is stored)
|
---|
| 197 | * -# if temporaries for conversion are needed put them in here
|
---|
| 198 | * -# add a function queryValue
|
---|
| 199 | * -# now, for each of the GUIs we basically have to repeat the above, i.e.
|
---|
| 200 | * add the class and the function that implement the virtual ones above.
|
---|
[4cf323d] | 201 | * -# QT: an extra class called ValueQtQueryPipe that actually handles
|
---|
[db7cb0] | 202 | * showing dialogs to obtain the value and placing it into the \a tmp
|
---|
| 203 | * variable (via a given pointer to it as reference). handle() will
|
---|
[4cf323d] | 204 | * simply return true. This is needed because of a restriction of Qt4:
|
---|
[db7cb0] | 205 | * its meta-object-compiler does not like nested classes.
|
---|
| 206 | * -# CommandLine: nothing special, handle() imports value from \a
|
---|
| 207 | * CommandLineParser and sets the tmp variable.
|
---|
| 208 | * -# Text: nothing special, handle() queries the user and sets the tmp
|
---|
| 209 | * variable
|
---|
| 210 | */
|
---|
[45f5d6] | 211 | class Query {
|
---|
[94d131] | 212 | friend class Dialog;
|
---|
[45f5d6] | 213 | public:
|
---|
[a2ab15] | 214 | Query(std::string _title, std::string _description = "");
|
---|
[5a7243] | 215 | virtual ~Query();
|
---|
[45f5d6] | 216 | virtual bool handle()=0;
|
---|
| 217 | virtual void setResult()=0;
|
---|
| 218 | protected:
|
---|
| 219 | const std::string getTitle() const;
|
---|
[a2ab15] | 220 | const std::string getDescription() const;
|
---|
[45f5d6] | 221 | private:
|
---|
[a2ab15] | 222 | std::string title; //!< short title of the query
|
---|
| 223 | std::string description; //!< longer description for tooltips or for help
|
---|
[f5a86a] | 224 | };
|
---|
| 225 |
|
---|
[86466e] | 226 | // Empty Query is just meant for showing text, such as version, help, initial message or alike
|
---|
| 227 | class EmptyQuery : public Query {
|
---|
| 228 | public:
|
---|
| 229 | EmptyQuery(std::string title, std::string _description = "");
|
---|
| 230 | virtual ~EmptyQuery();
|
---|
| 231 | virtual bool handle()=0;
|
---|
| 232 | virtual void setResult();
|
---|
[f5a86a] | 233 | };
|
---|
| 234 |
|
---|
[45f5d6] | 235 | //Specialized classes for certain types. GUI-Types are not specialized at this time
|
---|
[97ebf8] | 236 | class BooleanQuery : public Query {
|
---|
| 237 | public:
|
---|
[75dc28] | 238 | BooleanQuery(std::string title, std::string _description = "");
|
---|
[97ebf8] | 239 | virtual ~BooleanQuery();
|
---|
| 240 | virtual bool handle()=0;
|
---|
| 241 | virtual void setResult();
|
---|
| 242 | protected:
|
---|
| 243 | bool tmp;
|
---|
| 244 | };
|
---|
| 245 |
|
---|
[45f5d6] | 246 | class IntQuery : public Query {
|
---|
| 247 | public:
|
---|
[75dc28] | 248 | IntQuery(std::string title, std::string _description = "");
|
---|
[5a7243] | 249 | virtual ~IntQuery();
|
---|
[45f5d6] | 250 | virtual bool handle()=0;
|
---|
| 251 | virtual void setResult();
|
---|
| 252 | protected:
|
---|
| 253 | int tmp;
|
---|
| 254 | };
|
---|
| 255 |
|
---|
[7cd6e7] | 256 | class IntsQuery : public Query {
|
---|
| 257 | public:
|
---|
| 258 | IntsQuery(std::string title, std::string _description = "");
|
---|
| 259 | virtual ~IntsQuery();
|
---|
| 260 | virtual bool handle()=0;
|
---|
| 261 | virtual void setResult();
|
---|
| 262 | protected:
|
---|
| 263 | int temp;
|
---|
| 264 | std::vector<int> tmp;
|
---|
| 265 | };
|
---|
| 266 |
|
---|
[2ededc2] | 267 | class DoubleQuery : public Query {
|
---|
| 268 | public:
|
---|
[75dc28] | 269 | DoubleQuery(std::string title, std::string _description = "");
|
---|
[5a7243] | 270 | virtual ~DoubleQuery();
|
---|
[2ededc2] | 271 | virtual bool handle()=0;
|
---|
| 272 | virtual void setResult();
|
---|
| 273 | protected:
|
---|
| 274 | double tmp;
|
---|
| 275 | };
|
---|
| 276 |
|
---|
[7cd6e7] | 277 | class DoublesQuery : public Query {
|
---|
| 278 | public:
|
---|
| 279 | DoublesQuery(std::string title, std::string _description = "");
|
---|
| 280 | virtual ~DoublesQuery();
|
---|
| 281 | virtual bool handle()=0;
|
---|
| 282 | virtual void setResult();
|
---|
| 283 | protected:
|
---|
| 284 | double temp;
|
---|
| 285 | std::vector<double> tmp;
|
---|
| 286 | };
|
---|
| 287 |
|
---|
[45f5d6] | 288 | class StringQuery : public Query {
|
---|
| 289 | public:
|
---|
[75dc28] | 290 | StringQuery(std::string title, std::string _description = "");
|
---|
[5a7243] | 291 | virtual ~StringQuery();
|
---|
[45f5d6] | 292 | virtual bool handle()=0;
|
---|
| 293 | virtual void setResult();
|
---|
| 294 | protected:
|
---|
| 295 | std::string tmp;
|
---|
| 296 | };
|
---|
| 297 |
|
---|
[cd8e55] | 298 | class StringsQuery : public Query {
|
---|
| 299 | public:
|
---|
[75dc28] | 300 | StringsQuery(std::string title, std::string _description = "");
|
---|
[cd8e55] | 301 | virtual ~StringsQuery();
|
---|
| 302 | virtual bool handle()=0;
|
---|
| 303 | virtual void setResult();
|
---|
| 304 | protected:
|
---|
| 305 | std::string temp;
|
---|
| 306 | std::vector<std::string> tmp;
|
---|
| 307 | };
|
---|
| 308 |
|
---|
[7aa000] | 309 | class MoleculeQuery : public Query {
|
---|
| 310 | public:
|
---|
[75dc28] | 311 | MoleculeQuery(std::string title, std::string _description = "");
|
---|
[5a7243] | 312 | virtual ~MoleculeQuery();
|
---|
[7aa000] | 313 | virtual bool handle()=0;
|
---|
| 314 | virtual void setResult();
|
---|
| 315 | protected:
|
---|
[e4afb4] | 316 | const molecule *tmp;
|
---|
[7aa000] | 317 | };
|
---|
| 318 |
|
---|
[7cd6e7] | 319 | class MoleculesQuery : public Query {
|
---|
| 320 | public:
|
---|
| 321 | MoleculesQuery(std::string title, std::string _description = "");
|
---|
| 322 | virtual ~MoleculesQuery();
|
---|
| 323 | virtual bool handle()=0;
|
---|
| 324 | virtual void setResult();
|
---|
| 325 | protected:
|
---|
[e4afb4] | 326 | const molecule * temp;
|
---|
| 327 | std::vector<const molecule *> tmp;
|
---|
[7cd6e7] | 328 | };
|
---|
| 329 |
|
---|
[97ebf8] | 330 | class AtomQuery : public Query {
|
---|
| 331 | public:
|
---|
[75dc28] | 332 | AtomQuery(std::string title, std::string _description = "");
|
---|
[97ebf8] | 333 | virtual ~AtomQuery();
|
---|
| 334 | virtual bool handle()=0;
|
---|
| 335 | virtual void setResult();
|
---|
| 336 | protected:
|
---|
[e4afb4] | 337 | const atom *tmp;
|
---|
[97ebf8] | 338 | };
|
---|
| 339 |
|
---|
[7cd6e7] | 340 | class AtomsQuery : public Query {
|
---|
| 341 | public:
|
---|
| 342 | AtomsQuery(std::string title, std::string _description = "");
|
---|
| 343 | virtual ~AtomsQuery();
|
---|
| 344 | virtual bool handle()=0;
|
---|
| 345 | virtual void setResult();
|
---|
| 346 | protected:
|
---|
[e4afb4] | 347 | const atom *temp;
|
---|
| 348 | std::vector<const atom *> tmp;
|
---|
[7cd6e7] | 349 | };
|
---|
| 350 |
|
---|
[2ededc2] | 351 | class VectorQuery : public Query {
|
---|
| 352 | public:
|
---|
[75dc28] | 353 | VectorQuery(std::string title,bool _check, std::string _description = "");
|
---|
[5a7243] | 354 | virtual ~VectorQuery();
|
---|
[2ededc2] | 355 | virtual bool handle()=0;
|
---|
| 356 | virtual void setResult();
|
---|
| 357 | protected:
|
---|
[7cd6e7] | 358 | Vector tmp;
|
---|
| 359 | bool check;
|
---|
| 360 | };
|
---|
| 361 |
|
---|
| 362 | class VectorsQuery : public Query {
|
---|
| 363 | public:
|
---|
| 364 | VectorsQuery(std::string title,bool _check, std::string _description = "");
|
---|
| 365 | virtual ~VectorsQuery();
|
---|
| 366 | virtual bool handle()=0;
|
---|
| 367 | virtual void setResult();
|
---|
| 368 | protected:
|
---|
| 369 | Vector temp;
|
---|
| 370 | std::vector<Vector> tmp;
|
---|
[2ededc2] | 371 | bool check;
|
---|
| 372 | };
|
---|
| 373 |
|
---|
[97ebf8] | 374 | class BoxQuery : public Query {
|
---|
| 375 | public:
|
---|
[75dc28] | 376 | BoxQuery(std::string title, std::string _description = "");
|
---|
[97ebf8] | 377 | virtual ~BoxQuery();
|
---|
| 378 | virtual bool handle()=0;
|
---|
| 379 | virtual void setResult();
|
---|
| 380 | protected:
|
---|
[8bc733] | 381 | Box tmp;
|
---|
[97ebf8] | 382 | };
|
---|
| 383 |
|
---|
[5a7243] | 384 | class ElementQuery : public Query {
|
---|
| 385 | public:
|
---|
[75dc28] | 386 | ElementQuery(std::string title, std::string _description = "");
|
---|
[5a7243] | 387 | virtual ~ElementQuery();
|
---|
| 388 | virtual bool handle()=0;
|
---|
| 389 | virtual void setResult();
|
---|
| 390 | protected:
|
---|
[e5c0a1] | 391 | const element * tmp;
|
---|
[7cd6e7] | 392 | };
|
---|
| 393 |
|
---|
| 394 | class ElementsQuery : public Query {
|
---|
| 395 | public:
|
---|
| 396 | ElementsQuery(std::string title, std::string _description = "");
|
---|
| 397 | virtual ~ElementsQuery();
|
---|
| 398 | virtual bool handle()=0;
|
---|
| 399 | virtual void setResult();
|
---|
| 400 | protected:
|
---|
[e5c0a1] | 401 | const element *temp;
|
---|
| 402 | std::vector<const element *> tmp;
|
---|
[5a7243] | 403 | };
|
---|
| 404 |
|
---|
[6f5dfe] | 405 | class FileQuery : public Query {
|
---|
| 406 | public:
|
---|
| 407 | FileQuery(std::string title, std::string _description = "");
|
---|
| 408 | virtual ~FileQuery();
|
---|
| 409 | virtual bool handle()=0;
|
---|
| 410 | virtual void setResult();
|
---|
| 411 | protected:
|
---|
| 412 | boost::filesystem::path tmp;
|
---|
| 413 | };
|
---|
| 414 |
|
---|
[45f5d6] | 415 | void registerQuery(Query* query);
|
---|
| 416 |
|
---|
| 417 | private:
|
---|
| 418 | std::list<Query*> queries;
|
---|
[f5a86a] | 419 |
|
---|
| 420 | };
|
---|
| 421 |
|
---|
[a2ab15] | 422 |
|
---|
[f5a86a] | 423 | #endif /* DIALOG_HPP_ */
|
---|