summaryrefslogtreecommitdiffstats
path: root/addon/doxywizard/inputbool.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-07-21 10:40:14 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-07-28 11:47:23 (GMT)
commit38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212 (patch)
treec162a1ab1c375aa21c4f137ec30ae765b67527a4 /addon/doxywizard/inputbool.h
parent10ab1d5dddd63b5e7b3a65da8eb8a6416be7c914 (diff)
downloadDoxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.zip
Doxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.tar.gz
Doxygen-38e67b40b1c50e1ccbda4ffd867b6aa82a6c2212.tar.bz2
config.xml is now used to generate configoptions.cpp and config.doc
Diffstat (limited to 'addon/doxywizard/inputbool.h')
-rw-r--r--addon/doxywizard/inputbool.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/addon/doxywizard/inputbool.h b/addon/doxywizard/inputbool.h
index 470127a..69a6893 100644
--- a/addon/doxywizard/inputbool.h
+++ b/addon/doxywizard/inputbool.h
@@ -36,10 +36,12 @@ class InputBool : public QObject, public Input
Kind kind() const { return Bool; }
QString docs() const { return m_docs; }
QString id() const { return m_id; }
+ QString templateDocs() const { return m_tdocs; }
void addDependency(Input *option) { m_dependencies+=option; }
void setEnabled(bool);
void updateDependencies();
void writeValue(QTextStream &t,QTextCodec *codec);
+ void setTemplateDocs(const QString &docs) { m_tdocs = docs; }
public slots:
void reset();
@@ -64,7 +66,7 @@ class InputBool : public QObject, public Input
QList<Input*> m_dependencies;
QString m_id;
QLabel *m_lab;
-
+ QString m_tdocs;
};
#endif