Doku für view_info
This commit is contained in:
parent
be3545fcbb
commit
69e02c20c2
|
@ -1,7 +1,7 @@
|
|||
# B15F - Board 15 Famulus Edition
|
||||
|
||||
**Hinweis:**
|
||||
Die Projekt-Dokumentation befindet sich unter [github pages](https://devfix.github.io/b15f/).
|
||||
## Dokumentation
|
||||
Die **Projekt-Dokumentation** befindet sich hier: [https://devfix.github.io/b15f/](https://devfix.github.io/b15f/).
|
||||
|
||||
## TODO / Ideen
|
||||
- [X] CLI: Exception catchen, set global error message, raise SIGINT --> ncurses wird richtig beendet
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef COMMIT_HASH_H
|
||||
#define COMMIT_HASH_H
|
||||
const char COMMIT_HASH[] = "9640bb00c8b16073af9eadf9e40ede3c2e0e4020";
|
||||
const char COMMIT_HASH[] = "be3545fcbb7c7a41ec40d489efc952369f81bf5a";
|
||||
#endif // COMMIT_HASH_H
|
||||
|
|
|
@ -3,25 +3,57 @@
|
|||
|
||||
#include "view.h"
|
||||
|
||||
/*! View for simple text message output. */
|
||||
/**
|
||||
* Klasse für einfache Textausgaben (Benachrichtigungen).
|
||||
* Diese können mit einem Button geschlossen werden.
|
||||
*/
|
||||
|
||||
class ViewInfo : public View
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* Standard-Konstruktor ohne Argumente
|
||||
*/
|
||||
ViewInfo(void);
|
||||
|
||||
/**
|
||||
* Setzt den Text dieser Benachrichtigungs-View
|
||||
* \param text Text der View
|
||||
*/
|
||||
virtual void setText(std::string text);
|
||||
virtual void setLabelClose(std::string label);;
|
||||
|
||||
/**
|
||||
* Setzt die Beschriftung des Buttons zum Schließen
|
||||
* \param label Beschriftung des Buttons
|
||||
*/
|
||||
virtual void setLabelClose(std::string label);
|
||||
|
||||
/**
|
||||
* Setzt den Call der aufgerufen wird, wenn der Button angewählt wird.
|
||||
* Wurde setCall weggelassen oder setCall(nullptr) gesetzt, wird diese View nur geschlossen und keine weitere Aktion ausgelöst.
|
||||
* \param call Nachfolge-Aktion
|
||||
*/
|
||||
virtual void setCall(call_t call);
|
||||
|
||||
/**
|
||||
* Zeichnet diese View mit dem Benachrichtigungstext.
|
||||
*/
|
||||
virtual void draw(void) override;
|
||||
|
||||
/**
|
||||
* Verarbeitet einen Tastendruck, z.B. Enter = Button angewählt.
|
||||
* \param key gedrückte Taste
|
||||
* \return Call, der nach dem keypress ausgeführt werden soll
|
||||
*/
|
||||
virtual call_t keypress(int& key) override;
|
||||
|
||||
protected:
|
||||
std::string text;
|
||||
std::string label_close;
|
||||
int close_offset_x = 0;
|
||||
int close_offset_y = 0;
|
||||
constexpr static int text_offset_x = 2;
|
||||
constexpr static int text_offset_y = 3;
|
||||
std::string text; //!< Benachrichtigungstext dieser View
|
||||
std::string label_close; //!< Beschriftung für Button zum Schließen
|
||||
int close_offset_x = 0; //!< Relative X Koordinate des Buttons zum Schließen im Window
|
||||
int close_offset_y = 0; //!< Relative Y Koordinate des Buttons zum Schließen im Window
|
||||
constexpr static int text_offset_x = 2; //!< Relativer Abstand des Textes zum linken Rahmen
|
||||
constexpr static int text_offset_y = 3; //!< Relativer Abstand des Textes zum oberen Rahmen
|
||||
};
|
||||
|
||||
#endif // VIEW_INFO
|
||||
|
|
|
@ -85,7 +85,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -121,7 +121,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassDriverException_html"><div class="ttname"><a href="classDriverException.html">DriverException</a></div><div class="ttdef"><b>Definition:</b> <a href="driverexception_8h_source.html#l00010">driverexception.h:10</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -117,7 +117,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassDriverException_html"><div class="ttname"><a href="classDriverException.html">DriverException</a></div><div class="ttdef"><b>Definition:</b> <a href="driverexception_8h_source.html#l00010">driverexception.h:10</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -114,7 +114,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -1309,7 +1309,7 @@ constexpr static uint32_t </td><td class="memItemRight" valign="bottom"><a
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -76,7 +76,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -196,7 +196,7 @@ Public Member Functions</h2></td></tr>
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -77,7 +77,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -247,7 +247,7 @@ std::string </td><td class="memItemRight" valign="bottom"><a class="el" hre
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -100,7 +100,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -811,7 +811,7 @@ Public Member Functions</h2></td></tr>
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -77,7 +77,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -239,7 +239,7 @@ std::string </td><td class="memItemRight" valign="bottom"><a class="el" hre
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -86,7 +86,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -523,7 +523,7 @@ Public Member Functions</h2></td></tr>
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -77,7 +77,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -239,7 +239,7 @@ std::string </td><td class="memItemRight" valign="bottom"><a class="el" hre
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -89,7 +89,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -290,7 +290,7 @@ constexpr static int </td><td class="memItemRight" valign="bottom"><a class
|
|||
</div><div class="memdoc">
|
||||
<p>Abstract function for the view to reacted on a keypress. Gets overridden in the derived classes to close for example a view on ESC. </p>
|
||||
|
||||
<p>Implemented in <a class="el" href="classViewMonitor.html#a2224002fe45655df87130fe07a161693">ViewMonitor</a>, <a class="el" href="classViewPromt.html#a24aa1e8887fc5e6631d6cb88adb7f3db">ViewPromt</a>, <a class="el" href="classViewInfo.html#a7d231a44600aa100ad4a0b9f283e5bd8">ViewInfo</a>, and <a class="el" href="classViewSelection.html#a04341cde5e8355edc5ff3d653d1dbc76">ViewSelection</a>.</p>
|
||||
<p>Implemented in <a class="el" href="classViewInfo.html#a7d231a44600aa100ad4a0b9f283e5bd8">ViewInfo</a>, <a class="el" href="classViewMonitor.html#a2224002fe45655df87130fe07a161693">ViewMonitor</a>, <a class="el" href="classViewPromt.html#a24aa1e8887fc5e6631d6cb88adb7f3db">ViewPromt</a>, and <a class="el" href="classViewSelection.html#a04341cde5e8355edc5ff3d653d1dbc76">ViewSelection</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@ -444,7 +444,7 @@ constexpr static int </td><td class="memItemRight" valign="bottom"><a class
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -70,36 +70,36 @@ $(function() {
|
|||
<p>This is the complete list of members for <a class="el" href="classViewInfo.html">ViewInfo</a>, including all inherited members.</p>
|
||||
<table class="directory">
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a610367214a727e2f7da72ac5bdb60fa3">calls</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>close_offset_x</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>close_offset_y</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#ae4dab70d82761e0f59f51dcae79685fe">close_offset_x</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#a5954adf853cb44d4655ede731faf1a28">close_offset_y</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#ab7f9ea145f8cf26dbd27e29982cda206">draw</a>(void) override</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a0710c6ba06e3795e7ddf369361308b79">getWinContext</a>(void)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a6e3e5c18893617490f02166641356746">height</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a3554cf8689cad24c643665aa3d182134">KEY_ENT</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#a7d231a44600aa100ad4a0b9f283e5bd8">keypress</a>(int &key) override</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>label_close</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#a34879bd1c0a8fe230429cc600dcd6739">label_close</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#aa7b1f1179e3c4f06bef1e99355d0d592">repaint</a>(void)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setCall</b>(call_t call) (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>setLabelClose</b>(std::string label) (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setText</b>(std::string text) (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#a45fd0b8b96d15fd92824ce63fb6814ca">setCall</a>(call_t call)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#a4c3db4806515ea8b0f07a9864f983377">setLabelClose</a>(std::string label)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#abc93067b319df17e19f013a86d762f81">setText</a>(std::string text)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a6c725e4d83fd7474635a7e64200c7a08">setTitle</a>(std::string title)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a990aa2223befde031dfcce54a740c558">setWinContext</a>(WINDOW *win)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a9fc9f3b0c876d063e6f57dee320a43fe">start_x</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#ac424db4c13776c3ce9d33f9074dfcfaa">start_y</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a52c2e2a7bc56388e7d9bfa398ad52668">str_split</a>(const std::string &str, const std::string delim)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>text</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>text_offset_x</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>text_offset_y</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4">text</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#a4681a8138f17ea229aca02e6db7357cd">text_offset_x</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#a34a9239c8954a0c27a22cf44d112f5b8">text_offset_y</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a80441aa81b52e04677a2aa2bd9c47753">title</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a0a9be6e5fb588412aab31cacf5e43b04">View</a>(void)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>ViewInfo</b>(void) (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#a95a3a81de65ef42615bbe5a843e8d5f6">ViewInfo</a>(void)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#ae039aa744b085db819ae149705b2c32b">width</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a5ddee2bf0b26dbcfa7780be17ff33dd7">win</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a450dfab3f21a52edc03db4310593412f">~View</a>(void)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -88,14 +88,13 @@ $(function() {
|
|||
<table class="memberdecls">
|
||||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
|
||||
Public Member Functions</h2></td></tr>
|
||||
<tr class="memitem:abc93067b319df17e19f013a86d762f81"><td class="memItemLeft" align="right" valign="top"><a id="abc93067b319df17e19f013a86d762f81"></a>
|
||||
virtual void </td><td class="memItemRight" valign="bottom"><b>setText</b> (std::string text)</td></tr>
|
||||
<tr class="memitem:a95a3a81de65ef42615bbe5a843e8d5f6"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a95a3a81de65ef42615bbe5a843e8d5f6">ViewInfo</a> (void)</td></tr>
|
||||
<tr class="separator:a95a3a81de65ef42615bbe5a843e8d5f6"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:abc93067b319df17e19f013a86d762f81"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#abc93067b319df17e19f013a86d762f81">setText</a> (std::string <a class="el" href="classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4">text</a>)</td></tr>
|
||||
<tr class="separator:abc93067b319df17e19f013a86d762f81"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a4c3db4806515ea8b0f07a9864f983377"><td class="memItemLeft" align="right" valign="top"><a id="a4c3db4806515ea8b0f07a9864f983377"></a>
|
||||
virtual void </td><td class="memItemRight" valign="bottom"><b>setLabelClose</b> (std::string label)</td></tr>
|
||||
<tr class="memitem:a4c3db4806515ea8b0f07a9864f983377"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a4c3db4806515ea8b0f07a9864f983377">setLabelClose</a> (std::string label)</td></tr>
|
||||
<tr class="separator:a4c3db4806515ea8b0f07a9864f983377"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a45fd0b8b96d15fd92824ce63fb6814ca"><td class="memItemLeft" align="right" valign="top"><a id="a45fd0b8b96d15fd92824ce63fb6814ca"></a>
|
||||
virtual void </td><td class="memItemRight" valign="bottom"><b>setCall</b> (call_t call)</td></tr>
|
||||
<tr class="memitem:a45fd0b8b96d15fd92824ce63fb6814ca"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a45fd0b8b96d15fd92824ce63fb6814ca">setCall</a> (call_t call)</td></tr>
|
||||
<tr class="separator:a45fd0b8b96d15fd92824ce63fb6814ca"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ab7f9ea145f8cf26dbd27e29982cda206"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#ab7f9ea145f8cf26dbd27e29982cda206">draw</a> (void) override</td></tr>
|
||||
<tr class="separator:ab7f9ea145f8cf26dbd27e29982cda206"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
|
@ -114,16 +113,20 @@ virtual void </td><td class="memItemRight" valign="bottom"><b>setCall</b> (
|
|||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-attribs"></a>
|
||||
Protected Attributes</h2></td></tr>
|
||||
<tr class="memitem:ac392a569ef16af3dc11ee659f3fa1eb4"><td class="memItemLeft" align="right" valign="top"><a id="ac392a569ef16af3dc11ee659f3fa1eb4"></a>
|
||||
std::string </td><td class="memItemRight" valign="bottom"><b>text</b></td></tr>
|
||||
std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4">text</a></td></tr>
|
||||
<tr class="memdesc:ac392a569ef16af3dc11ee659f3fa1eb4"><td class="mdescLeft"> </td><td class="mdescRight">Benachrichtigungstext dieser <a class="el" href="classView.html">View</a>. <br /></td></tr>
|
||||
<tr class="separator:ac392a569ef16af3dc11ee659f3fa1eb4"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a34879bd1c0a8fe230429cc600dcd6739"><td class="memItemLeft" align="right" valign="top"><a id="a34879bd1c0a8fe230429cc600dcd6739"></a>
|
||||
std::string </td><td class="memItemRight" valign="bottom"><b>label_close</b></td></tr>
|
||||
std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a34879bd1c0a8fe230429cc600dcd6739">label_close</a></td></tr>
|
||||
<tr class="memdesc:a34879bd1c0a8fe230429cc600dcd6739"><td class="mdescLeft"> </td><td class="mdescRight">Beschriftung für Button zum Schließen. <br /></td></tr>
|
||||
<tr class="separator:a34879bd1c0a8fe230429cc600dcd6739"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ae4dab70d82761e0f59f51dcae79685fe"><td class="memItemLeft" align="right" valign="top"><a id="ae4dab70d82761e0f59f51dcae79685fe"></a>
|
||||
int </td><td class="memItemRight" valign="bottom"><b>close_offset_x</b> = 0</td></tr>
|
||||
int </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#ae4dab70d82761e0f59f51dcae79685fe">close_offset_x</a> = 0</td></tr>
|
||||
<tr class="memdesc:ae4dab70d82761e0f59f51dcae79685fe"><td class="mdescLeft"> </td><td class="mdescRight">Relative X Koordinate des Buttons zum Schließen im Window. <br /></td></tr>
|
||||
<tr class="separator:ae4dab70d82761e0f59f51dcae79685fe"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a5954adf853cb44d4655ede731faf1a28"><td class="memItemLeft" align="right" valign="top"><a id="a5954adf853cb44d4655ede731faf1a28"></a>
|
||||
int </td><td class="memItemRight" valign="bottom"><b>close_offset_y</b> = 0</td></tr>
|
||||
int </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a5954adf853cb44d4655ede731faf1a28">close_offset_y</a> = 0</td></tr>
|
||||
<tr class="memdesc:a5954adf853cb44d4655ede731faf1a28"><td class="mdescLeft"> </td><td class="mdescRight">Relative Y Koordinate des Buttons zum Schließen im Window. <br /></td></tr>
|
||||
<tr class="separator:a5954adf853cb44d4655ede731faf1a28"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="inherit_header pro_attribs_classView"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classView')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classView.html">View</a></td></tr>
|
||||
<tr class="memitem:ae039aa744b085db819ae149705b2c32b inherit pro_attribs_classView"><td class="memItemLeft" align="right" valign="top"><a id="ae039aa744b085db819ae149705b2c32b"></a>
|
||||
|
@ -154,10 +157,12 @@ std::vector< call_t > </td><td class="memItemRight" valign="bottom"><
|
|||
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-static-attribs"></a>
|
||||
Static Protected Attributes</h2></td></tr>
|
||||
<tr class="memitem:a4681a8138f17ea229aca02e6db7357cd"><td class="memItemLeft" align="right" valign="top"><a id="a4681a8138f17ea229aca02e6db7357cd"></a>
|
||||
constexpr static int </td><td class="memItemRight" valign="bottom"><b>text_offset_x</b> = 2</td></tr>
|
||||
constexpr static int </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a4681a8138f17ea229aca02e6db7357cd">text_offset_x</a> = 2</td></tr>
|
||||
<tr class="memdesc:a4681a8138f17ea229aca02e6db7357cd"><td class="mdescLeft"> </td><td class="mdescRight">Relativer Abstand des Textes zum linken Rahmen. <br /></td></tr>
|
||||
<tr class="separator:a4681a8138f17ea229aca02e6db7357cd"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a34a9239c8954a0c27a22cf44d112f5b8"><td class="memItemLeft" align="right" valign="top"><a id="a34a9239c8954a0c27a22cf44d112f5b8"></a>
|
||||
constexpr static int </td><td class="memItemRight" valign="bottom"><b>text_offset_y</b> = 3</td></tr>
|
||||
constexpr static int </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a34a9239c8954a0c27a22cf44d112f5b8">text_offset_y</a> = 3</td></tr>
|
||||
<tr class="memdesc:a34a9239c8954a0c27a22cf44d112f5b8"><td class="mdescLeft"> </td><td class="mdescRight">Relativer Abstand des Textes zum oberen Rahmen. <br /></td></tr>
|
||||
<tr class="separator:a34a9239c8954a0c27a22cf44d112f5b8"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="inherit_header pro_static_attribs_classView"><td colspan="2" onclick="javascript:toggleInherit('pro_static_attribs_classView')"><img src="closed.png" alt="-"/> Static Protected Attributes inherited from <a class="el" href="classView.html">View</a></td></tr>
|
||||
<tr class="memitem:a5ddee2bf0b26dbcfa7780be17ff33dd7 inherit pro_static_attribs_classView"><td class="memItemLeft" align="right" valign="top"><a id="a5ddee2bf0b26dbcfa7780be17ff33dd7"></a>
|
||||
|
@ -180,10 +185,32 @@ Additional Inherited Members</h2></td></tr>
|
|||
<tr class="separator:a52c2e2a7bc56388e7d9bfa398ad52668 inherit pub_static_methods_classView"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
</table>
|
||||
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
|
||||
<div class="textblock"><p><a class="el" href="classView.html">View</a> for simple text message output. </p>
|
||||
<div class="textblock"><p>Klasse für einfache Textausgaben (Benachrichtigungen). Diese können mit einem Button geschlossen werden. </p>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="view__info_8h_source.html#l00008">8</a> of file <a class="el" href="view__info_8h_source.html">view_info.h</a>.</p>
|
||||
</div><h2 class="groupheader">Member Function Documentation</h2>
|
||||
<p class="definition">Definition at line <a class="el" href="view__info_8h_source.html#l00011">11</a> of file <a class="el" href="view__info_8h_source.html">view_info.h</a>.</p>
|
||||
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
|
||||
<a id="a95a3a81de65ef42615bbe5a843e8d5f6"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a95a3a81de65ef42615bbe5a843e8d5f6">◆ </a></span>ViewInfo()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">ViewInfo::ViewInfo </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">void </td>
|
||||
<td class="paramname"></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Standard-Konstruktor ohne Argumente </p>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="view__info_8cpp_source.html#l00003">3</a> of file <a class="el" href="view__info_8cpp_source.html">view_info.cpp</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<h2 class="groupheader">Member Function Documentation</h2>
|
||||
<a id="ab7f9ea145f8cf26dbd27e29982cda206"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#ab7f9ea145f8cf26dbd27e29982cda206">◆ </a></span>draw()</h2>
|
||||
|
||||
|
@ -207,7 +234,7 @@ Additional Inherited Members</h2></td></tr>
|
|||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Abstract function for drawing ths particular view. Gets overridden in the derived classes to paints for example a promt. </p>
|
||||
<p>Zeichnet diese <a class="el" href="classView.html">View</a> mit dem Benachrichtigungstext. </p>
|
||||
|
||||
<p>Implements <a class="el" href="classView.html#a092a269bf53569af7fca4d710dd5b980">View</a>.</p>
|
||||
|
||||
|
@ -238,7 +265,13 @@ Additional Inherited Members</h2></td></tr>
|
|||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Abstract function for the view to reacted on a keypress. Gets overridden in the derived classes to close for example a view on ESC. </p>
|
||||
<p>Verarbeitet einen Tastendruck, z.B. Enter = Button angewählt. </p><dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">key</td><td>gedrückte Taste </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>Call, der nach dem keypress ausgeführt werden soll </dd></dl>
|
||||
|
||||
<p>Implements <a class="el" href="classView.html#a60f77156dc4786bb6227d58a3061d2f6">View</a>.</p>
|
||||
|
||||
|
@ -246,6 +279,108 @@ Additional Inherited Members</h2></td></tr>
|
|||
|
||||
<p class="definition">Definition at line <a class="el" href="view__info_8cpp_source.html#l00037">37</a> of file <a class="el" href="view__info_8cpp_source.html">view_info.cpp</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a id="a45fd0b8b96d15fd92824ce63fb6814ca"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a45fd0b8b96d15fd92824ce63fb6814ca">◆ </a></span>setCall()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="mlabels">
|
||||
<tr>
|
||||
<td class="mlabels-left">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void ViewInfo::setCall </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">call_t </td>
|
||||
<td class="paramname"><em>call</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td class="mlabels-right">
|
||||
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Setzt den Call der aufgerufen wird, wenn der Button angewählt wird. Wurde setCall weggelassen oder setCall(nullptr) gesetzt, wird diese <a class="el" href="classView.html">View</a> nur geschlossen und keine weitere Aktion ausgelöst. </p><dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">call</td><td>Nachfolge-Aktion </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="view__info_8cpp_source.html#l00018">18</a> of file <a class="el" href="view__info_8cpp_source.html">view_info.cpp</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a id="a4c3db4806515ea8b0f07a9864f983377"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#a4c3db4806515ea8b0f07a9864f983377">◆ </a></span>setLabelClose()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="mlabels">
|
||||
<tr>
|
||||
<td class="mlabels-left">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void ViewInfo::setLabelClose </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">std::string </td>
|
||||
<td class="paramname"><em>label</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td class="mlabels-right">
|
||||
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Setzt die Beschriftung des Buttons zum Schließen </p><dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">label</td><td>Beschriftung des Buttons </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="view__info_8cpp_source.html#l00013">13</a> of file <a class="el" href="view__info_8cpp_source.html">view_info.cpp</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<a id="abc93067b319df17e19f013a86d762f81"></a>
|
||||
<h2 class="memtitle"><span class="permalink"><a href="#abc93067b319df17e19f013a86d762f81">◆ </a></span>setText()</h2>
|
||||
|
||||
<div class="memitem">
|
||||
<div class="memproto">
|
||||
<table class="mlabels">
|
||||
<tr>
|
||||
<td class="mlabels-left">
|
||||
<table class="memname">
|
||||
<tr>
|
||||
<td class="memname">void ViewInfo::setText </td>
|
||||
<td>(</td>
|
||||
<td class="paramtype">std::string </td>
|
||||
<td class="paramname"><em>text</em></td><td>)</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td class="mlabels-right">
|
||||
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Setzt den Text dieser Benachrichtigungs-View </p><dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">text</td><td>Text der <a class="el" href="classView.html">View</a> </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
<p class="definition">Definition at line <a class="el" href="view__info_8cpp_source.html#l00008">8</a> of file <a class="el" href="view__info_8cpp_source.html">view_info.cpp</a>.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<hr/>The documentation for this class was generated from the following files:<ul>
|
||||
|
@ -255,7 +390,7 @@ Additional Inherited Members</h2></td></tr>
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -70,31 +70,31 @@ $(function() {
|
|||
<p>This is the complete list of members for <a class="el" href="classViewMonitor.html">ViewMonitor</a>, including all inherited members.</p>
|
||||
<table class="directory">
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a610367214a727e2f7da72ac5bdb60fa3">calls</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>close_offset_x</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>close_offset_y</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#ae4dab70d82761e0f59f51dcae79685fe">close_offset_x</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#a5954adf853cb44d4655ede731faf1a28">close_offset_y</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#ab7f9ea145f8cf26dbd27e29982cda206">draw</a>(void) override</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a0710c6ba06e3795e7ddf369361308b79">getWinContext</a>(void)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a6e3e5c18893617490f02166641356746">height</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a3554cf8689cad24c643665aa3d182134">KEY_ENT</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewMonitor.html#a2224002fe45655df87130fe07a161693">keypress</a>(int &key) override</td><td class="entry"><a class="el" href="classViewMonitor.html">ViewMonitor</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>label_close</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#a34879bd1c0a8fe230429cc600dcd6739">label_close</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#aa7b1f1179e3c4f06bef1e99355d0d592">repaint</a>(void)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>run_worker</b> (defined in <a class="el" href="classViewMonitor.html">ViewMonitor</a>)</td><td class="entry"><a class="el" href="classViewMonitor.html">ViewMonitor</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>setCall</b>(call_t call) (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>setLabelClose</b>(std::string label) (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>setText</b>(std::string text) (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#a45fd0b8b96d15fd92824ce63fb6814ca">setCall</a>(call_t call)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#a4c3db4806515ea8b0f07a9864f983377">setLabelClose</a>(std::string label)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#abc93067b319df17e19f013a86d762f81">setText</a>(std::string text)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a6c725e4d83fd7474635a7e64200c7a08">setTitle</a>(std::string title)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a990aa2223befde031dfcce54a740c558">setWinContext</a>(WINDOW *win)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a9fc9f3b0c876d063e6f57dee320a43fe">start_x</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#ac424db4c13776c3ce9d33f9074dfcfaa">start_y</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a52c2e2a7bc56388e7d9bfa398ad52668">str_split</a>(const std::string &str, const std::string delim)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">static</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>t_worker</b> (defined in <a class="el" href="classViewMonitor.html">ViewMonitor</a>)</td><td class="entry"><a class="el" href="classViewMonitor.html">ViewMonitor</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>text</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>text_offset_x</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>text_offset_y</b> (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4">text</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#a4681a8138f17ea229aca02e6db7357cd">text_offset_x</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classViewInfo.html#a34a9239c8954a0c27a22cf44d112f5b8">text_offset_y</a></td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#a80441aa81b52e04677a2aa2bd9c47753">title</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a0a9be6e5fb588412aab31cacf5e43b04">View</a>(void)</td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"></td></tr>
|
||||
<tr bgcolor="#f0f0f0"><td class="entry"><b>ViewInfo</b>(void) (defined in <a class="el" href="classViewInfo.html">ViewInfo</a>)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classViewInfo.html#a95a3a81de65ef42615bbe5a843e8d5f6">ViewInfo</a>(void)</td><td class="entry"><a class="el" href="classViewInfo.html">ViewInfo</a></td><td class="entry"></td></tr>
|
||||
<tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>ViewMonitor</b>(void) (defined in <a class="el" href="classViewMonitor.html">ViewMonitor</a>)</td><td class="entry"><a class="el" href="classViewMonitor.html">ViewMonitor</a></td><td class="entry"></td></tr>
|
||||
<tr><td class="entry"><a class="el" href="classView.html#ae039aa744b085db819ae149705b2c32b">width</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span></td></tr>
|
||||
<tr class="even"><td class="entry"><a class="el" href="classView.html#a5ddee2bf0b26dbcfa7780be17ff33dd7">win</a></td><td class="entry"><a class="el" href="classView.html">View</a></td><td class="entry"><span class="mlabel">protected</span><span class="mlabel">static</span></td></tr>
|
||||
|
@ -103,7 +103,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -91,14 +91,13 @@ Public Member Functions</h2></td></tr>
|
|||
<tr class="memitem:a2224002fe45655df87130fe07a161693"><td class="memItemLeft" align="right" valign="top">virtual call_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewMonitor.html#a2224002fe45655df87130fe07a161693">keypress</a> (int &key) override</td></tr>
|
||||
<tr class="separator:a2224002fe45655df87130fe07a161693"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="inherit_header pub_methods_classViewInfo"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classViewInfo')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classViewInfo.html">ViewInfo</a></td></tr>
|
||||
<tr class="memitem:abc93067b319df17e19f013a86d762f81 inherit pub_methods_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="abc93067b319df17e19f013a86d762f81"></a>
|
||||
virtual void </td><td class="memItemRight" valign="bottom"><b>setText</b> (std::string text)</td></tr>
|
||||
<tr class="memitem:a95a3a81de65ef42615bbe5a843e8d5f6 inherit pub_methods_classViewInfo"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a95a3a81de65ef42615bbe5a843e8d5f6">ViewInfo</a> (void)</td></tr>
|
||||
<tr class="separator:a95a3a81de65ef42615bbe5a843e8d5f6 inherit pub_methods_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:abc93067b319df17e19f013a86d762f81 inherit pub_methods_classViewInfo"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#abc93067b319df17e19f013a86d762f81">setText</a> (std::string <a class="el" href="classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4">text</a>)</td></tr>
|
||||
<tr class="separator:abc93067b319df17e19f013a86d762f81 inherit pub_methods_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a4c3db4806515ea8b0f07a9864f983377 inherit pub_methods_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="a4c3db4806515ea8b0f07a9864f983377"></a>
|
||||
virtual void </td><td class="memItemRight" valign="bottom"><b>setLabelClose</b> (std::string label)</td></tr>
|
||||
<tr class="memitem:a4c3db4806515ea8b0f07a9864f983377 inherit pub_methods_classViewInfo"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a4c3db4806515ea8b0f07a9864f983377">setLabelClose</a> (std::string label)</td></tr>
|
||||
<tr class="separator:a4c3db4806515ea8b0f07a9864f983377 inherit pub_methods_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a45fd0b8b96d15fd92824ce63fb6814ca inherit pub_methods_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="a45fd0b8b96d15fd92824ce63fb6814ca"></a>
|
||||
virtual void </td><td class="memItemRight" valign="bottom"><b>setCall</b> (call_t call)</td></tr>
|
||||
<tr class="memitem:a45fd0b8b96d15fd92824ce63fb6814ca inherit pub_methods_classViewInfo"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a45fd0b8b96d15fd92824ce63fb6814ca">setCall</a> (call_t call)</td></tr>
|
||||
<tr class="separator:a45fd0b8b96d15fd92824ce63fb6814ca inherit pub_methods_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ab7f9ea145f8cf26dbd27e29982cda206 inherit pub_methods_classViewInfo"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#ab7f9ea145f8cf26dbd27e29982cda206">draw</a> (void) override</td></tr>
|
||||
<tr class="separator:ab7f9ea145f8cf26dbd27e29982cda206 inherit pub_methods_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
|
@ -128,16 +127,20 @@ std::thread </td><td class="memItemRight" valign="bottom"><b>t_worker</b></
|
|||
<tr class="separator:a377eb8deab3061aa4e084be9b791c056"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="inherit_header pro_attribs_classViewInfo"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classViewInfo')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classViewInfo.html">ViewInfo</a></td></tr>
|
||||
<tr class="memitem:ac392a569ef16af3dc11ee659f3fa1eb4 inherit pro_attribs_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="ac392a569ef16af3dc11ee659f3fa1eb4"></a>
|
||||
std::string </td><td class="memItemRight" valign="bottom"><b>text</b></td></tr>
|
||||
std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4">text</a></td></tr>
|
||||
<tr class="memdesc:ac392a569ef16af3dc11ee659f3fa1eb4 inherit pro_attribs_classViewInfo"><td class="mdescLeft"> </td><td class="mdescRight">Benachrichtigungstext dieser <a class="el" href="classView.html">View</a>. <br /></td></tr>
|
||||
<tr class="separator:ac392a569ef16af3dc11ee659f3fa1eb4 inherit pro_attribs_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a34879bd1c0a8fe230429cc600dcd6739 inherit pro_attribs_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="a34879bd1c0a8fe230429cc600dcd6739"></a>
|
||||
std::string </td><td class="memItemRight" valign="bottom"><b>label_close</b></td></tr>
|
||||
std::string </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a34879bd1c0a8fe230429cc600dcd6739">label_close</a></td></tr>
|
||||
<tr class="memdesc:a34879bd1c0a8fe230429cc600dcd6739 inherit pro_attribs_classViewInfo"><td class="mdescLeft"> </td><td class="mdescRight">Beschriftung für Button zum Schließen. <br /></td></tr>
|
||||
<tr class="separator:a34879bd1c0a8fe230429cc600dcd6739 inherit pro_attribs_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:ae4dab70d82761e0f59f51dcae79685fe inherit pro_attribs_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="ae4dab70d82761e0f59f51dcae79685fe"></a>
|
||||
int </td><td class="memItemRight" valign="bottom"><b>close_offset_x</b> = 0</td></tr>
|
||||
int </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#ae4dab70d82761e0f59f51dcae79685fe">close_offset_x</a> = 0</td></tr>
|
||||
<tr class="memdesc:ae4dab70d82761e0f59f51dcae79685fe inherit pro_attribs_classViewInfo"><td class="mdescLeft"> </td><td class="mdescRight">Relative X Koordinate des Buttons zum Schließen im Window. <br /></td></tr>
|
||||
<tr class="separator:ae4dab70d82761e0f59f51dcae79685fe inherit pro_attribs_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a5954adf853cb44d4655ede731faf1a28 inherit pro_attribs_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="a5954adf853cb44d4655ede731faf1a28"></a>
|
||||
int </td><td class="memItemRight" valign="bottom"><b>close_offset_y</b> = 0</td></tr>
|
||||
int </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a5954adf853cb44d4655ede731faf1a28">close_offset_y</a> = 0</td></tr>
|
||||
<tr class="memdesc:a5954adf853cb44d4655ede731faf1a28 inherit pro_attribs_classViewInfo"><td class="mdescLeft"> </td><td class="mdescRight">Relative Y Koordinate des Buttons zum Schließen im Window. <br /></td></tr>
|
||||
<tr class="separator:a5954adf853cb44d4655ede731faf1a28 inherit pro_attribs_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="inherit_header pro_attribs_classView"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classView')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classView.html">View</a></td></tr>
|
||||
<tr class="memitem:ae039aa744b085db819ae149705b2c32b inherit pro_attribs_classView"><td class="memItemLeft" align="right" valign="top"><a id="ae039aa744b085db819ae149705b2c32b"></a>
|
||||
|
@ -176,10 +179,12 @@ Additional Inherited Members</h2></td></tr>
|
|||
<tr class="separator:a52c2e2a7bc56388e7d9bfa398ad52668 inherit pub_static_methods_classView"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="inherit_header pro_static_attribs_classViewInfo"><td colspan="2" onclick="javascript:toggleInherit('pro_static_attribs_classViewInfo')"><img src="closed.png" alt="-"/> Static Protected Attributes inherited from <a class="el" href="classViewInfo.html">ViewInfo</a></td></tr>
|
||||
<tr class="memitem:a4681a8138f17ea229aca02e6db7357cd inherit pro_static_attribs_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="a4681a8138f17ea229aca02e6db7357cd"></a>
|
||||
constexpr static int </td><td class="memItemRight" valign="bottom"><b>text_offset_x</b> = 2</td></tr>
|
||||
constexpr static int </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a4681a8138f17ea229aca02e6db7357cd">text_offset_x</a> = 2</td></tr>
|
||||
<tr class="memdesc:a4681a8138f17ea229aca02e6db7357cd inherit pro_static_attribs_classViewInfo"><td class="mdescLeft"> </td><td class="mdescRight">Relativer Abstand des Textes zum linken Rahmen. <br /></td></tr>
|
||||
<tr class="separator:a4681a8138f17ea229aca02e6db7357cd inherit pro_static_attribs_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="memitem:a34a9239c8954a0c27a22cf44d112f5b8 inherit pro_static_attribs_classViewInfo"><td class="memItemLeft" align="right" valign="top"><a id="a34a9239c8954a0c27a22cf44d112f5b8"></a>
|
||||
constexpr static int </td><td class="memItemRight" valign="bottom"><b>text_offset_y</b> = 3</td></tr>
|
||||
constexpr static int </td><td class="memItemRight" valign="bottom"><a class="el" href="classViewInfo.html#a34a9239c8954a0c27a22cf44d112f5b8">text_offset_y</a> = 3</td></tr>
|
||||
<tr class="memdesc:a34a9239c8954a0c27a22cf44d112f5b8 inherit pro_static_attribs_classViewInfo"><td class="mdescLeft"> </td><td class="mdescRight">Relativer Abstand des Textes zum oberen Rahmen. <br /></td></tr>
|
||||
<tr class="separator:a34a9239c8954a0c27a22cf44d112f5b8 inherit pro_static_attribs_classViewInfo"><td class="memSeparator" colspan="2"> </td></tr>
|
||||
<tr class="inherit_header pro_static_attribs_classView"><td colspan="2" onclick="javascript:toggleInherit('pro_static_attribs_classView')"><img src="closed.png" alt="-"/> Static Protected Attributes inherited from <a class="el" href="classView.html">View</a></td></tr>
|
||||
<tr class="memitem:a5ddee2bf0b26dbcfa7780be17ff33dd7 inherit pro_static_attribs_classView"><td class="memItemLeft" align="right" valign="top"><a id="a5ddee2bf0b26dbcfa7780be17ff33dd7"></a>
|
||||
|
@ -219,7 +224,13 @@ constexpr static int </td><td class="memItemRight" valign="bottom"><a class
|
|||
</tr>
|
||||
</table>
|
||||
</div><div class="memdoc">
|
||||
<p>Abstract function for the view to reacted on a keypress. Gets overridden in the derived classes to close for example a view on ESC. </p>
|
||||
<p>Verarbeitet einen Tastendruck, z.B. Enter = Button angewählt. </p><dl class="params"><dt>Parameters</dt><dd>
|
||||
<table class="params">
|
||||
<tr><td class="paramname">key</td><td>gedrückte Taste </td></tr>
|
||||
</table>
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="section return"><dt>Returns</dt><dd>Call, der nach dem keypress ausgeführt werden soll </dd></dl>
|
||||
|
||||
<p>Reimplemented from <a class="el" href="classViewInfo.html#a7d231a44600aa100ad4a0b9f283e5bd8">ViewInfo</a>.</p>
|
||||
|
||||
|
@ -234,7 +245,7 @@ constexpr static int </td><td class="memItemRight" valign="bottom"><a class
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -105,7 +105,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -273,7 +273,7 @@ Additional Inherited Members</h2></td></tr>
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -94,7 +94,7 @@ $(function() {
|
|||
</table></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -240,7 +240,7 @@ Additional Inherited Members</h2></td></tr>
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -105,7 +105,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -70,10 +70,10 @@ $(function() {
|
|||
<div class="title">commit_hash.h</div> </div>
|
||||
</div><!--header-->
|
||||
<div class="contents">
|
||||
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="preprocessor">#ifndef COMMIT_HASH_H</span></div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="preprocessor">#define COMMIT_HASH_H</span></div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="keyword">const</span> <span class="keywordtype">char</span> COMMIT_HASH[] = <span class="stringliteral">"9640bb00c8b16073af9eadf9e40ede3c2e0e4020"</span>;</div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="preprocessor">#endif // COMMIT_HASH_H</span></div></div><!-- fragment --></div><!-- contents -->
|
||||
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="preprocessor">#ifndef COMMIT_HASH_H</span></div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="preprocessor">#define COMMIT_HASH_H</span></div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="keyword">const</span> <span class="keywordtype">char</span> COMMIT_HASH[] = <span class="stringliteral">"be3545fcbb7c7a41ec40d489efc952369f81bf5a"</span>;</div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="preprocessor">#endif // COMMIT_HASH_H</span></div></div><!-- fragment --></div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -73,7 +73,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -73,7 +73,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -77,7 +77,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassDot_html_ad975f119c0627a928790b3cd5ca6da05"><div class="ttname"><a href="classDot.html#ad975f119c0627a928790b3cd5ca6da05">Dot::Dot</a></div><div class="ttdeci">Dot(uint16_t x, uint16_t y, uint8_t curve)</div><div class="ttdef"><b>Definition:</b> <a href="dot_8cpp_source.html#l00003">dot.cpp:3</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -78,7 +78,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassDot_html_ad975f119c0627a928790b3cd5ca6da05"><div class="ttname"><a href="classDot.html#ad975f119c0627a928790b3cd5ca6da05">Dot::Dot</a></div><div class="ttdeci">Dot(uint16_t x, uint16_t y, uint8_t curve)</div><div class="ttdef"><b>Definition:</b> <a href="dot_8cpp_source.html#l00003">dot.cpp:3</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -79,7 +79,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassDriverException_html"><div class="ttname"><a href="classDriverException.html">DriverException</a></div><div class="ttdef"><b>Definition:</b> <a href="driverexception_8h_source.html#l00010">driverexception.h:10</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -101,7 +101,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -106,6 +106,12 @@ $(function() {
|
|||
<li>clearOutputBuffer()
|
||||
: <a class="el" href="classUSART.html#a756d268a8762c316f91ca3238972b0c1">USART</a>
|
||||
</li>
|
||||
<li>close_offset_x
|
||||
: <a class="el" href="classViewInfo.html#ae4dab70d82761e0f59f51dcae79685fe">ViewInfo</a>
|
||||
</li>
|
||||
<li>close_offset_y
|
||||
: <a class="el" href="classViewInfo.html#a5954adf853cb44d4655ede731faf1a28">ViewInfo</a>
|
||||
</li>
|
||||
<li>closeDevice()
|
||||
: <a class="el" href="classUSART.html#af80d6291ac1d2df04cfa1d8d27458cc5">USART</a>
|
||||
</li>
|
||||
|
@ -144,7 +150,7 @@ $(function() {
|
|||
, <a class="el" href="classViewSelection.html#a10fa34fb676bfed472ca5ee62ef9446d">ViewSelection</a>
|
||||
</li>
|
||||
<li>DriverException()
|
||||
: <a class="el" href="classDriverException.html#abf7f902d3fbbfcdbde8e54a058948519">DriverException</a>
|
||||
: <a class="el" href="classDriverException.html#a6dcc078e6bfb7d87b53a5aef758cfe5f">DriverException</a>
|
||||
</li>
|
||||
<li>drop()
|
||||
: <a class="el" href="classUSART.html#a038d00c0b3d8c0c13c3e7eae5dad7813">USART</a>
|
||||
|
@ -263,6 +269,13 @@ $(function() {
|
|||
</ul>
|
||||
|
||||
|
||||
<h3><a id="index_l"></a>- l -</h3><ul>
|
||||
<li>label_close
|
||||
: <a class="el" href="classViewInfo.html#a34879bd1c0a8fe230429cc600dcd6739">ViewInfo</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
<h3><a id="index_m"></a>- m -</h3><ul>
|
||||
<li>msg
|
||||
: <a class="el" href="classUSARTException.html#a14c80df95f216d221aa97cffbcd8dd79">USARTException</a>
|
||||
|
@ -332,6 +345,9 @@ $(function() {
|
|||
<li>setBaudrate()
|
||||
: <a class="el" href="classUSART.html#aac63918a8b97ae63ee607cfa39e6d88d">USART</a>
|
||||
</li>
|
||||
<li>setCall()
|
||||
: <a class="el" href="classViewInfo.html#a45fd0b8b96d15fd92824ce63fb6814ca">ViewInfo</a>
|
||||
</li>
|
||||
<li>setDescPara()
|
||||
: <a class="el" href="classPlottyFile.html#a431904143c3c1164a2e8b8cfec3c77ab">PlottyFile</a>
|
||||
</li>
|
||||
|
@ -344,6 +360,9 @@ $(function() {
|
|||
<li>setFunctionType()
|
||||
: <a class="el" href="classPlottyFile.html#a4e5ab1ebb012a5cc1a3d6458a4cd512f">PlottyFile</a>
|
||||
</li>
|
||||
<li>setLabelClose()
|
||||
: <a class="el" href="classViewInfo.html#a4c3db4806515ea8b0f07a9864f983377">ViewInfo</a>
|
||||
</li>
|
||||
<li>setMem16()
|
||||
: <a class="el" href="classB15F.html#a62ef2ee9bd945d30979939fcffa6759a">B15F</a>
|
||||
</li>
|
||||
|
@ -377,6 +396,9 @@ $(function() {
|
|||
<li>setServoPosition()
|
||||
: <a class="el" href="classB15F.html#aa76f289274e5d0be41c5d4a58b52a416">B15F</a>
|
||||
</li>
|
||||
<li>setText()
|
||||
: <a class="el" href="classViewInfo.html#abc93067b319df17e19f013a86d762f81">ViewInfo</a>
|
||||
</li>
|
||||
<li>setTimeout()
|
||||
: <a class="el" href="classUSART.html#ad7fe866cebe920784d2b17602824c7ff">USART</a>
|
||||
</li>
|
||||
|
@ -417,8 +439,17 @@ $(function() {
|
|||
<li>testIntConv()
|
||||
: <a class="el" href="classB15F.html#ac2c7b6d84da5239ee7cc3d44e689d9db">B15F</a>
|
||||
</li>
|
||||
<li>text
|
||||
: <a class="el" href="classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4">ViewInfo</a>
|
||||
</li>
|
||||
<li>text_offset_x
|
||||
: <a class="el" href="classViewInfo.html#a4681a8138f17ea229aca02e6db7357cd">ViewInfo</a>
|
||||
</li>
|
||||
<li>text_offset_y
|
||||
: <a class="el" href="classViewInfo.html#a34a9239c8954a0c27a22cf44d112f5b8">ViewInfo</a>
|
||||
</li>
|
||||
<li>TimeoutException()
|
||||
: <a class="el" href="classTimeoutException.html#ad6e5c200fbfd276f48a6c1163e2d2988">TimeoutException</a>
|
||||
: <a class="el" href="classTimeoutException.html#aa45912234da11ffc9dd3594a1bbc0218">TimeoutException</a>
|
||||
</li>
|
||||
<li>title
|
||||
: <a class="el" href="classView.html#a80441aa81b52e04677a2aa2bd9c47753">View</a>
|
||||
|
@ -434,7 +465,7 @@ $(function() {
|
|||
: <a class="el" href="classUSART.html#a5daed20dc595c43d87c4c28bb08a7449">USART</a>
|
||||
</li>
|
||||
<li>USARTException()
|
||||
: <a class="el" href="classUSARTException.html#a643c0a8b7f0d81e2f1693a75b378e6c2">USARTException</a>
|
||||
: <a class="el" href="classUSARTException.html#a3c359db129825703b91392d5128cf93d">USARTException</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
@ -443,6 +474,9 @@ $(function() {
|
|||
<li>View()
|
||||
: <a class="el" href="classView.html#a0a9be6e5fb588412aab31cacf5e43b04">View</a>
|
||||
</li>
|
||||
<li>ViewInfo()
|
||||
: <a class="el" href="classViewInfo.html#a95a3a81de65ef42615bbe5a843e8d5f6">ViewInfo</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
@ -487,7 +521,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -286,6 +286,9 @@ $(function() {
|
|||
<li>setBaudrate()
|
||||
: <a class="el" href="classUSART.html#aac63918a8b97ae63ee607cfa39e6d88d">USART</a>
|
||||
</li>
|
||||
<li>setCall()
|
||||
: <a class="el" href="classViewInfo.html#a45fd0b8b96d15fd92824ce63fb6814ca">ViewInfo</a>
|
||||
</li>
|
||||
<li>setDescPara()
|
||||
: <a class="el" href="classPlottyFile.html#a431904143c3c1164a2e8b8cfec3c77ab">PlottyFile</a>
|
||||
</li>
|
||||
|
@ -298,6 +301,9 @@ $(function() {
|
|||
<li>setFunctionType()
|
||||
: <a class="el" href="classPlottyFile.html#a4e5ab1ebb012a5cc1a3d6458a4cd512f">PlottyFile</a>
|
||||
</li>
|
||||
<li>setLabelClose()
|
||||
: <a class="el" href="classViewInfo.html#a4c3db4806515ea8b0f07a9864f983377">ViewInfo</a>
|
||||
</li>
|
||||
<li>setMem16()
|
||||
: <a class="el" href="classB15F.html#a62ef2ee9bd945d30979939fcffa6759a">B15F</a>
|
||||
</li>
|
||||
|
@ -331,6 +337,9 @@ $(function() {
|
|||
<li>setServoPosition()
|
||||
: <a class="el" href="classB15F.html#aa76f289274e5d0be41c5d4a58b52a416">B15F</a>
|
||||
</li>
|
||||
<li>setText()
|
||||
: <a class="el" href="classViewInfo.html#abc93067b319df17e19f013a86d762f81">ViewInfo</a>
|
||||
</li>
|
||||
<li>setTimeout()
|
||||
: <a class="el" href="classUSART.html#ad7fe866cebe920784d2b17602824c7ff">USART</a>
|
||||
</li>
|
||||
|
@ -388,6 +397,9 @@ $(function() {
|
|||
<li>View()
|
||||
: <a class="el" href="classView.html#a0a9be6e5fb588412aab31cacf5e43b04">View</a>
|
||||
</li>
|
||||
<li>ViewInfo()
|
||||
: <a class="el" href="classViewInfo.html#a95a3a81de65ef42615bbe5a843e8d5f6">ViewInfo</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
|
@ -423,7 +435,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -69,12 +69,21 @@ $(function() {
|
|||
<li>calls
|
||||
: <a class="el" href="classView.html#a610367214a727e2f7da72ac5bdb60fa3">View</a>
|
||||
</li>
|
||||
<li>close_offset_x
|
||||
: <a class="el" href="classViewInfo.html#ae4dab70d82761e0f59f51dcae79685fe">ViewInfo</a>
|
||||
</li>
|
||||
<li>close_offset_y
|
||||
: <a class="el" href="classViewInfo.html#a5954adf853cb44d4655ede731faf1a28">ViewInfo</a>
|
||||
</li>
|
||||
<li>height
|
||||
: <a class="el" href="classView.html#a6e3e5c18893617490f02166641356746">View</a>
|
||||
</li>
|
||||
<li>KEY_ENT
|
||||
: <a class="el" href="classView.html#a3554cf8689cad24c643665aa3d182134">View</a>
|
||||
</li>
|
||||
<li>label_close
|
||||
: <a class="el" href="classViewInfo.html#a34879bd1c0a8fe230429cc600dcd6739">ViewInfo</a>
|
||||
</li>
|
||||
<li>msg
|
||||
: <a class="el" href="classUSARTException.html#a14c80df95f216d221aa97cffbcd8dd79">USARTException</a>
|
||||
</li>
|
||||
|
@ -103,6 +112,15 @@ $(function() {
|
|||
<li>start_y
|
||||
: <a class="el" href="classView.html#ac424db4c13776c3ce9d33f9074dfcfaa">View</a>
|
||||
</li>
|
||||
<li>text
|
||||
: <a class="el" href="classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4">ViewInfo</a>
|
||||
</li>
|
||||
<li>text_offset_x
|
||||
: <a class="el" href="classViewInfo.html#a4681a8138f17ea229aca02e6db7357cd">ViewInfo</a>
|
||||
</li>
|
||||
<li>text_offset_y
|
||||
: <a class="el" href="classViewInfo.html#a34a9239c8954a0c27a22cf44d112f5b8">ViewInfo</a>
|
||||
</li>
|
||||
<li>title
|
||||
: <a class="el" href="classView.html#a80441aa81b52e04677a2aa2bd9c47753">View</a>
|
||||
</li>
|
||||
|
@ -119,7 +137,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -86,7 +86,7 @@ $(function() {
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -82,7 +82,7 @@ Außerdem wird eine Bibliothek (<em>b15fdrv</em>) installiert, die eine einfache
|
|||
2 Installation</h1>
|
||||
<h2><a class="anchor" id="autotoc_md3"></a>
|
||||
2.1 Installation mit Installationsscript (empfohlen)</h2>
|
||||
<p>(a) Laden Sie das <a href="https://raw.githubusercontent.com/devfix/b15f/master/install">Installationsscript</a> herunter, am besten nach **/tmp/** <br />
|
||||
<p>(a) Laden Sie das <a href="https://raw.githubusercontent.com/devfix/b15f/master/install">Installationsscript</a> herunter, am besten nach ** /tmp/** <br />
|
||||
(b) Setzen Sie die Ausführungsberechtigung <br />
|
||||
(c) Schalten Sie die Stromversorgung von B15 an und schließen Sie den ISP Programmer an <br />
|
||||
(d) Starten Sie das Installationsscript <br />
|
||||
|
@ -175,7 +175,7 @@ Dabei gehören Punkte mit dem gleichen Index für <code>curve</code> (<em>uint8_
|
|||
</div><!-- contents -->
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -37,6 +37,7 @@ var menudata={children:[
|
|||
{text:"g",url:"functions.html#index_g"},
|
||||
{text:"h",url:"functions.html#index_h"},
|
||||
{text:"k",url:"functions.html#index_k"},
|
||||
{text:"l",url:"functions.html#index_l"},
|
||||
{text:"m",url:"functions.html#index_m"},
|
||||
{text:"o",url:"functions.html#index_o"},
|
||||
{text:"p",url:"functions.html#index_p"},
|
||||
|
|
|
@ -101,7 +101,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassPlottyFile_html_af952ac5e2c40896acaf6a86063874fe3"><div class="ttname"><a href="classPlottyFile.html#af952ac5e2c40896acaf6a86063874fe3">PlottyFile::getUnitX</a></div><div class="ttdeci">std::string getUnitX(void) const</div><div class="ttdef"><b>Definition:</b> <a href="plottyfile_8cpp_source.html#l00105">plottyfile.cpp:105</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -102,7 +102,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassPlottyFile_html_af952ac5e2c40896acaf6a86063874fe3"><div class="ttname"><a href="classPlottyFile.html#af952ac5e2c40896acaf6a86063874fe3">PlottyFile::getUnitX</a></div><div class="ttdeci">std::string getUnitX(void) const</div><div class="ttdef"><b>Definition:</b> <a href="plottyfile_8cpp_source.html#l00105">plottyfile.cpp:105</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,8 +1,5 @@
|
|||
var searchData=
|
||||
[
|
||||
['view',['View',['../classView.html',1,'View'],['../classView.html#a0a9be6e5fb588412aab31cacf5e43b04',1,'View::View()']]],
|
||||
['viewinfo',['ViewInfo',['../classViewInfo.html',1,'']]],
|
||||
['viewmonitor',['ViewMonitor',['../classViewMonitor.html',1,'']]],
|
||||
['viewpromt',['ViewPromt',['../classViewPromt.html',1,'']]],
|
||||
['viewselection',['ViewSelection',['../classViewSelection.html',1,'']]]
|
||||
['usart',['USART',['../classUSART.html',1,'USART'],['../classUSART.html#a5daed20dc595c43d87c4c28bb08a7449',1,'USART::USART()']]],
|
||||
['usartexception',['USARTException',['../classUSARTException.html',1,'USARTException'],['../classUSARTException.html#a3c359db129825703b91392d5128cf93d',1,'USARTException::USARTException(const char *message)'],['../classUSARTException.html#a643c0a8b7f0d81e2f1693a75b378e6c2',1,'USARTException::USARTException(const std::string &message)']]]
|
||||
];
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
var searchData=
|
||||
[
|
||||
['wdt_5ftimeout',['WDT_TIMEOUT',['../classB15F.html#a158d13bc84aed6430cdede1396384e06',1,'B15F']]],
|
||||
['what',['what',['../classDriverException.html#a781362760bcd75b1bd5448629df58446',1,'DriverException::what()'],['../classTimeoutException.html#a97eaf01fc39ddb94b060020b42fefd6e',1,'TimeoutException::what()'],['../classUSARTException.html#a2af5e3c00cd0585c7427c2e0420a8f15',1,'USARTException::what()']]],
|
||||
['width',['width',['../classView.html#ae039aa744b085db819ae149705b2c32b',1,'View']]],
|
||||
['win',['win',['../classView.html#a5ddee2bf0b26dbcfa7780be17ff33dd7',1,'View']]],
|
||||
['writetofile',['writeToFile',['../classPlottyFile.html#a82c348e7fade2edcbc907e7c2bc2e305',1,'PlottyFile']]]
|
||||
['view',['View',['../classView.html',1,'View'],['../classView.html#a0a9be6e5fb588412aab31cacf5e43b04',1,'View::View()']]],
|
||||
['viewinfo',['ViewInfo',['../classViewInfo.html',1,'ViewInfo'],['../classViewInfo.html#a95a3a81de65ef42615bbe5a843e8d5f6',1,'ViewInfo::ViewInfo()']]],
|
||||
['viewmonitor',['ViewMonitor',['../classViewMonitor.html',1,'']]],
|
||||
['viewpromt',['ViewPromt',['../classViewPromt.html',1,'']]],
|
||||
['viewselection',['ViewSelection',['../classViewSelection.html',1,'']]]
|
||||
];
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
var searchData=
|
||||
[
|
||||
['_7edriverexception',['~DriverException',['../classDriverException.html#a4e62b528e9a6c1a776b1a08487fac340',1,'DriverException']]],
|
||||
['_7etimeoutexception',['~TimeoutException',['../classTimeoutException.html#a2f686b262d2ccffa0090fda9b44ab540',1,'TimeoutException']]],
|
||||
['_7eusart',['~USART',['../classUSART.html#a0c8eb1a939ca00921e22f6cbcc7bb749',1,'USART']]],
|
||||
['_7eusartexception',['~USARTException',['../classUSARTException.html#a0e008b3cb4974859e6bc8c8f8eb480be',1,'USARTException']]],
|
||||
['_7eview',['~View',['../classView.html#a450dfab3f21a52edc03db4310593412f',1,'View']]]
|
||||
['wdt_5ftimeout',['WDT_TIMEOUT',['../classB15F.html#a158d13bc84aed6430cdede1396384e06',1,'B15F']]],
|
||||
['what',['what',['../classDriverException.html#a781362760bcd75b1bd5448629df58446',1,'DriverException::what()'],['../classTimeoutException.html#a97eaf01fc39ddb94b060020b42fefd6e',1,'TimeoutException::what()'],['../classUSARTException.html#a2af5e3c00cd0585c7427c2e0420a8f15',1,'USARTException::what()']]],
|
||||
['width',['width',['../classView.html#ae039aa744b085db819ae149705b2c32b',1,'View']]],
|
||||
['win',['win',['../classView.html#a5ddee2bf0b26dbcfa7780be17ff33dd7',1,'View']]],
|
||||
['writetofile',['writeToFile',['../classPlottyFile.html#a82c348e7fade2edcbc907e7c2bc2e305',1,'PlottyFile']]]
|
||||
];
|
||||
|
|
30
docs/html/search/all_13.html
Normal file
30
docs/html/search/all_13.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html><head><title></title>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta name="generator" content="Doxygen 1.8.16"/>
|
||||
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||
<script type="text/javascript" src="all_13.js"></script>
|
||||
<script type="text/javascript" src="search.js"></script>
|
||||
</head>
|
||||
<body class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div id="SRResults"></div>
|
||||
<script type="text/javascript"><!--
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
createResults();
|
||||
/* @license-end */
|
||||
--></script>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
<script type="text/javascript"><!--
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults");
|
||||
searchResults.Search();
|
||||
/* @license-end */
|
||||
--></script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
8
docs/html/search/all_13.js
Normal file
8
docs/html/search/all_13.js
Normal file
|
@ -0,0 +1,8 @@
|
|||
var searchData=
|
||||
[
|
||||
['_7edriverexception',['~DriverException',['../classDriverException.html#a4e62b528e9a6c1a776b1a08487fac340',1,'DriverException']]],
|
||||
['_7etimeoutexception',['~TimeoutException',['../classTimeoutException.html#a2f686b262d2ccffa0090fda9b44ab540',1,'TimeoutException']]],
|
||||
['_7eusart',['~USART',['../classUSART.html#a0c8eb1a939ca00921e22f6cbcc7bb749',1,'USART']]],
|
||||
['_7eusartexception',['~USARTException',['../classUSARTException.html#a0e008b3cb4974859e6bc8c8f8eb480be',1,'USARTException']]],
|
||||
['_7eview',['~View',['../classView.html#a450dfab3f21a52edc03db4310593412f',1,'View']]]
|
||||
];
|
|
@ -3,5 +3,7 @@ var searchData=
|
|||
['calls',['calls',['../classView.html#a610367214a727e2f7da72ac5bdb60fa3',1,'View']]],
|
||||
['clearinputbuffer',['clearInputBuffer',['../classUSART.html#a28a2b4c5ed66b2c3a81196f76884f156',1,'USART']]],
|
||||
['clearoutputbuffer',['clearOutputBuffer',['../classUSART.html#a756d268a8762c316f91ca3238972b0c1',1,'USART']]],
|
||||
['close_5foffset_5fx',['close_offset_x',['../classViewInfo.html#ae4dab70d82761e0f59f51dcae79685fe',1,'ViewInfo']]],
|
||||
['close_5foffset_5fy',['close_offset_y',['../classViewInfo.html#a5954adf853cb44d4655ede731faf1a28',1,'ViewInfo']]],
|
||||
['closedevice',['closeDevice',['../classUSART.html#af80d6291ac1d2df04cfa1d8d27458cc5',1,'USART']]]
|
||||
];
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
var searchData=
|
||||
[
|
||||
['msg',['msg',['../classUSARTException.html#a14c80df95f216d221aa97cffbcd8dd79',1,'USARTException']]],
|
||||
['msg_5f',['msg_',['../classDriverException.html#ab8777afe3f5aed2e66f2b2fcb480a651',1,'DriverException::msg_()'],['../classTimeoutException.html#ae6395f887040521c915b0b8d88dc29e7',1,'TimeoutException::msg_()']]],
|
||||
['msg_5ffail',['MSG_FAIL',['../classB15F.html#a77d1ecf24b406c9204665d3b09c36f1e',1,'B15F']]],
|
||||
['msg_5fok',['MSG_OK',['../classB15F.html#ab01299858f74a6cec598688562e0ad02',1,'B15F']]]
|
||||
['label_5fclose',['label_close',['../classViewInfo.html#a34879bd1c0a8fe230429cc600dcd6739',1,'ViewInfo']]]
|
||||
];
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
var searchData=
|
||||
[
|
||||
['opendevice',['openDevice',['../classUSART.html#a5f7e2abda2ec4a68a5fdb8ee2f8a940a',1,'USART']]]
|
||||
['msg',['msg',['../classUSARTException.html#a14c80df95f216d221aa97cffbcd8dd79',1,'USARTException']]],
|
||||
['msg_5f',['msg_',['../classDriverException.html#ab8777afe3f5aed2e66f2b2fcb480a651',1,'DriverException::msg_()'],['../classTimeoutException.html#ae6395f887040521c915b0b8d88dc29e7',1,'TimeoutException::msg_()']]],
|
||||
['msg_5ffail',['MSG_FAIL',['../classB15F.html#a77d1ecf24b406c9204665d3b09c36f1e',1,'B15F']]],
|
||||
['msg_5fok',['MSG_OK',['../classB15F.html#ab01299858f74a6cec598688562e0ad02',1,'B15F']]]
|
||||
];
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
var searchData=
|
||||
[
|
||||
['plottyfile',['PlottyFile',['../classPlottyFile.html',1,'']]],
|
||||
['pre',['PRE',['../classB15F.html#a3b0fc1f85954b2d9c145af4a3af5b1ec',1,'B15F']]],
|
||||
['pwmsetfrequency',['pwmSetFrequency',['../classB15F.html#ac6f6532bb9550a0632c28b98c157d0a1',1,'B15F']]],
|
||||
['pwmsetvalue',['pwmSetValue',['../classB15F.html#aae99d74a945039c365ebd2f995b5546e',1,'B15F']]]
|
||||
['opendevice',['openDevice',['../classUSART.html#a5f7e2abda2ec4a68a5fdb8ee2f8a940a',1,'USART']]]
|
||||
];
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
var searchData=
|
||||
[
|
||||
['readdipswitch',['readDipSwitch',['../classB15F.html#a6f858f21ea81d491b5031b3644a2239a',1,'B15F']]],
|
||||
['receive',['receive',['../classUSART.html#a0fdc238203852f00bd750127602b2a6a',1,'USART']]],
|
||||
['reconnect',['reconnect',['../classB15F.html#a52557b375443c180a044e7d4e80a1ae7',1,'B15F']]],
|
||||
['reconnect_5ftimeout',['RECONNECT_TIMEOUT',['../classB15F.html#a040951746fbfd632e12bd1ad14578816',1,'B15F']]],
|
||||
['reconnect_5ftries',['RECONNECT_TRIES',['../classB15F.html#a6c4895bdbcd71ff6743becf97985c2dc',1,'B15F']]],
|
||||
['repaint',['repaint',['../classView.html#aa7b1f1179e3c4f06bef1e99355d0d592',1,'View']]],
|
||||
['reverse',['reverse',['../classB15F.html#a2937f22f1cfc9b533f4b5bf4db726a68',1,'B15F']]]
|
||||
['plottyfile',['PlottyFile',['../classPlottyFile.html',1,'']]],
|
||||
['pre',['PRE',['../classB15F.html#a3b0fc1f85954b2d9c145af4a3af5b1ec',1,'B15F']]],
|
||||
['pwmsetfrequency',['pwmSetFrequency',['../classB15F.html#ac6f6532bb9550a0632c28b98c157d0a1',1,'B15F']]],
|
||||
['pwmsetvalue',['pwmSetValue',['../classB15F.html#aae99d74a945039c365ebd2f995b5546e',1,'B15F']]]
|
||||
];
|
||||
|
|
|
@ -1,30 +1,10 @@
|
|||
var searchData=
|
||||
[
|
||||
['setaborthandler',['setAbortHandler',['../classB15F.html#a55b0cd1ea582bda53d6979442640f8e9',1,'B15F']]],
|
||||
['setbaudrate',['setBaudrate',['../classUSART.html#aac63918a8b97ae63ee607cfa39e6d88d',1,'USART']]],
|
||||
['setdescpara',['setDescPara',['../classPlottyFile.html#a431904143c3c1164a2e8b8cfec3c77ab',1,'PlottyFile']]],
|
||||
['setdescx',['setDescX',['../classPlottyFile.html#aa0449c290265d55d6223b19cf0a88b0a',1,'PlottyFile']]],
|
||||
['setdescy',['setDescY',['../classPlottyFile.html#a38a3a4dfc76bc70523727584bf01d590',1,'PlottyFile']]],
|
||||
['setfunctiontype',['setFunctionType',['../classPlottyFile.html#a4e5ab1ebb012a5cc1a3d6458a4cd512f',1,'PlottyFile']]],
|
||||
['setmem16',['setMem16',['../classB15F.html#a62ef2ee9bd945d30979939fcffa6759a',1,'B15F']]],
|
||||
['setmem8',['setMem8',['../classB15F.html#a65c0eee6b40b6d3ec58b0335fd668503',1,'B15F']]],
|
||||
['setparafirstcurve',['setParaFirstCurve',['../classPlottyFile.html#aa676414793becb975506f48d6e949dd0',1,'PlottyFile']]],
|
||||
['setparastepwidth',['setParaStepWidth',['../classPlottyFile.html#a6caebd31e04e2e7081cc007047350355',1,'PlottyFile']]],
|
||||
['setquadrant',['setQuadrant',['../classPlottyFile.html#a1953ee0d9a87b7353c16139584e9c2ae',1,'PlottyFile']]],
|
||||
['setrefx',['setRefX',['../classPlottyFile.html#a80c2c2e97a454566f9c1f2c51e1d7f3e',1,'PlottyFile']]],
|
||||
['setrefy',['setRefY',['../classPlottyFile.html#a3a371228ddcc007e97eebe7cc04dffc2',1,'PlottyFile']]],
|
||||
['setregister',['setRegister',['../classB15F.html#a47d7b797129d1ee7ebee4d8ae4f0ff93',1,'B15F']]],
|
||||
['setservodisabled',['setServoDisabled',['../classB15F.html#aad1b3206761c06c7183ae1b8b95b350b',1,'B15F']]],
|
||||
['setservoenabled',['setServoEnabled',['../classB15F.html#ab23d8c5a0b520b9d12d94a04f90fcfa0',1,'B15F']]],
|
||||
['setservoposition',['setServoPosition',['../classB15F.html#aa76f289274e5d0be41c5d4a58b52a416',1,'B15F']]],
|
||||
['settimeout',['setTimeout',['../classUSART.html#ad7fe866cebe920784d2b17602824c7ff',1,'USART']]],
|
||||
['settitle',['setTitle',['../classView.html#a6c725e4d83fd7474635a7e64200c7a08',1,'View']]],
|
||||
['setunitpara',['setUnitPara',['../classPlottyFile.html#abbac84109a1e0958a4ca5c270fac0986',1,'PlottyFile']]],
|
||||
['setunitx',['setUnitX',['../classPlottyFile.html#ab8d35a841ca9c325fca671cf34e03527',1,'PlottyFile']]],
|
||||
['setunity',['setUnitY',['../classPlottyFile.html#abb18c814f435926f741f7ceb310f3059',1,'PlottyFile']]],
|
||||
['setwincontext',['setWinContext',['../classView.html#a990aa2223befde031dfcce54a740c558',1,'View']]],
|
||||
['start_5fx',['start_x',['../classView.html#a9fc9f3b0c876d063e6f57dee320a43fe',1,'View']]],
|
||||
['start_5fy',['start_y',['../classView.html#ac424db4c13776c3ce9d33f9074dfcfaa',1,'View']]],
|
||||
['startplotty',['startPlotty',['../classPlottyFile.html#a08a115ef10458cadfe76077d623313df',1,'PlottyFile']]],
|
||||
['str_5fsplit',['str_split',['../classView.html#a52c2e2a7bc56388e7d9bfa398ad52668',1,'View']]]
|
||||
['readdipswitch',['readDipSwitch',['../classB15F.html#a6f858f21ea81d491b5031b3644a2239a',1,'B15F']]],
|
||||
['receive',['receive',['../classUSART.html#a0fdc238203852f00bd750127602b2a6a',1,'USART']]],
|
||||
['reconnect',['reconnect',['../classB15F.html#a52557b375443c180a044e7d4e80a1ae7',1,'B15F']]],
|
||||
['reconnect_5ftimeout',['RECONNECT_TIMEOUT',['../classB15F.html#a040951746fbfd632e12bd1ad14578816',1,'B15F']]],
|
||||
['reconnect_5ftries',['RECONNECT_TRIES',['../classB15F.html#a6c4895bdbcd71ff6743becf97985c2dc',1,'B15F']]],
|
||||
['repaint',['repaint',['../classView.html#aa7b1f1179e3c4f06bef1e99355d0d592',1,'View']]],
|
||||
['reverse',['reverse',['../classB15F.html#a2937f22f1cfc9b533f4b5bf4db726a68',1,'B15F']]]
|
||||
];
|
||||
|
|
|
@ -1,8 +1,33 @@
|
|||
var searchData=
|
||||
[
|
||||
['testconnection',['testConnection',['../classB15F.html#a6b8c7da1fb9b619543844e0ce7597d83',1,'B15F']]],
|
||||
['testintconv',['testIntConv',['../classB15F.html#ac2c7b6d84da5239ee7cc3d44e689d9db',1,'B15F']]],
|
||||
['timeoutexception',['TimeoutException',['../classTimeoutException.html',1,'TimeoutException'],['../classTimeoutException.html#aa45912234da11ffc9dd3594a1bbc0218',1,'TimeoutException::TimeoutException(const char *message)'],['../classTimeoutException.html#ad6e5c200fbfd276f48a6c1163e2d2988',1,'TimeoutException::TimeoutException(const std::string &message)']]],
|
||||
['title',['title',['../classView.html#a80441aa81b52e04677a2aa2bd9c47753',1,'View']]],
|
||||
['transmit',['transmit',['../classUSART.html#a41b19dd58f307015b73e154048cd74ca',1,'USART']]]
|
||||
['setaborthandler',['setAbortHandler',['../classB15F.html#a55b0cd1ea582bda53d6979442640f8e9',1,'B15F']]],
|
||||
['setbaudrate',['setBaudrate',['../classUSART.html#aac63918a8b97ae63ee607cfa39e6d88d',1,'USART']]],
|
||||
['setcall',['setCall',['../classViewInfo.html#a45fd0b8b96d15fd92824ce63fb6814ca',1,'ViewInfo']]],
|
||||
['setdescpara',['setDescPara',['../classPlottyFile.html#a431904143c3c1164a2e8b8cfec3c77ab',1,'PlottyFile']]],
|
||||
['setdescx',['setDescX',['../classPlottyFile.html#aa0449c290265d55d6223b19cf0a88b0a',1,'PlottyFile']]],
|
||||
['setdescy',['setDescY',['../classPlottyFile.html#a38a3a4dfc76bc70523727584bf01d590',1,'PlottyFile']]],
|
||||
['setfunctiontype',['setFunctionType',['../classPlottyFile.html#a4e5ab1ebb012a5cc1a3d6458a4cd512f',1,'PlottyFile']]],
|
||||
['setlabelclose',['setLabelClose',['../classViewInfo.html#a4c3db4806515ea8b0f07a9864f983377',1,'ViewInfo']]],
|
||||
['setmem16',['setMem16',['../classB15F.html#a62ef2ee9bd945d30979939fcffa6759a',1,'B15F']]],
|
||||
['setmem8',['setMem8',['../classB15F.html#a65c0eee6b40b6d3ec58b0335fd668503',1,'B15F']]],
|
||||
['setparafirstcurve',['setParaFirstCurve',['../classPlottyFile.html#aa676414793becb975506f48d6e949dd0',1,'PlottyFile']]],
|
||||
['setparastepwidth',['setParaStepWidth',['../classPlottyFile.html#a6caebd31e04e2e7081cc007047350355',1,'PlottyFile']]],
|
||||
['setquadrant',['setQuadrant',['../classPlottyFile.html#a1953ee0d9a87b7353c16139584e9c2ae',1,'PlottyFile']]],
|
||||
['setrefx',['setRefX',['../classPlottyFile.html#a80c2c2e97a454566f9c1f2c51e1d7f3e',1,'PlottyFile']]],
|
||||
['setrefy',['setRefY',['../classPlottyFile.html#a3a371228ddcc007e97eebe7cc04dffc2',1,'PlottyFile']]],
|
||||
['setregister',['setRegister',['../classB15F.html#a47d7b797129d1ee7ebee4d8ae4f0ff93',1,'B15F']]],
|
||||
['setservodisabled',['setServoDisabled',['../classB15F.html#aad1b3206761c06c7183ae1b8b95b350b',1,'B15F']]],
|
||||
['setservoenabled',['setServoEnabled',['../classB15F.html#ab23d8c5a0b520b9d12d94a04f90fcfa0',1,'B15F']]],
|
||||
['setservoposition',['setServoPosition',['../classB15F.html#aa76f289274e5d0be41c5d4a58b52a416',1,'B15F']]],
|
||||
['settext',['setText',['../classViewInfo.html#abc93067b319df17e19f013a86d762f81',1,'ViewInfo']]],
|
||||
['settimeout',['setTimeout',['../classUSART.html#ad7fe866cebe920784d2b17602824c7ff',1,'USART']]],
|
||||
['settitle',['setTitle',['../classView.html#a6c725e4d83fd7474635a7e64200c7a08',1,'View']]],
|
||||
['setunitpara',['setUnitPara',['../classPlottyFile.html#abbac84109a1e0958a4ca5c270fac0986',1,'PlottyFile']]],
|
||||
['setunitx',['setUnitX',['../classPlottyFile.html#ab8d35a841ca9c325fca671cf34e03527',1,'PlottyFile']]],
|
||||
['setunity',['setUnitY',['../classPlottyFile.html#abb18c814f435926f741f7ceb310f3059',1,'PlottyFile']]],
|
||||
['setwincontext',['setWinContext',['../classView.html#a990aa2223befde031dfcce54a740c558',1,'View']]],
|
||||
['start_5fx',['start_x',['../classView.html#a9fc9f3b0c876d063e6f57dee320a43fe',1,'View']]],
|
||||
['start_5fy',['start_y',['../classView.html#ac424db4c13776c3ce9d33f9074dfcfaa',1,'View']]],
|
||||
['startplotty',['startPlotty',['../classPlottyFile.html#a08a115ef10458cadfe76077d623313df',1,'PlottyFile']]],
|
||||
['str_5fsplit',['str_split',['../classView.html#a52c2e2a7bc56388e7d9bfa398ad52668',1,'View']]]
|
||||
];
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
var searchData=
|
||||
[
|
||||
['usart',['USART',['../classUSART.html',1,'USART'],['../classUSART.html#a5daed20dc595c43d87c4c28bb08a7449',1,'USART::USART()']]],
|
||||
['usartexception',['USARTException',['../classUSARTException.html',1,'USARTException'],['../classUSARTException.html#a3c359db129825703b91392d5128cf93d',1,'USARTException::USARTException(const char *message)'],['../classUSARTException.html#a643c0a8b7f0d81e2f1693a75b378e6c2',1,'USARTException::USARTException(const std::string &message)']]]
|
||||
['testconnection',['testConnection',['../classB15F.html#a6b8c7da1fb9b619543844e0ce7597d83',1,'B15F']]],
|
||||
['testintconv',['testIntConv',['../classB15F.html#ac2c7b6d84da5239ee7cc3d44e689d9db',1,'B15F']]],
|
||||
['text',['text',['../classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4',1,'ViewInfo']]],
|
||||
['text_5foffset_5fx',['text_offset_x',['../classViewInfo.html#a4681a8138f17ea229aca02e6db7357cd',1,'ViewInfo']]],
|
||||
['text_5foffset_5fy',['text_offset_y',['../classViewInfo.html#a34a9239c8954a0c27a22cf44d112f5b8',1,'ViewInfo']]],
|
||||
['timeoutexception',['TimeoutException',['../classTimeoutException.html',1,'TimeoutException'],['../classTimeoutException.html#aa45912234da11ffc9dd3594a1bbc0218',1,'TimeoutException::TimeoutException(const char *message)'],['../classTimeoutException.html#ad6e5c200fbfd276f48a6c1163e2d2988',1,'TimeoutException::TimeoutException(const std::string &message)']]],
|
||||
['title',['title',['../classView.html#a80441aa81b52e04677a2aa2bd9c47753',1,'View']]],
|
||||
['transmit',['transmit',['../classUSART.html#a41b19dd58f307015b73e154048cd74ca',1,'USART']]]
|
||||
];
|
||||
|
|
|
@ -2,10 +2,12 @@ var searchData=
|
|||
[
|
||||
['setaborthandler',['setAbortHandler',['../classB15F.html#a55b0cd1ea582bda53d6979442640f8e9',1,'B15F']]],
|
||||
['setbaudrate',['setBaudrate',['../classUSART.html#aac63918a8b97ae63ee607cfa39e6d88d',1,'USART']]],
|
||||
['setcall',['setCall',['../classViewInfo.html#a45fd0b8b96d15fd92824ce63fb6814ca',1,'ViewInfo']]],
|
||||
['setdescpara',['setDescPara',['../classPlottyFile.html#a431904143c3c1164a2e8b8cfec3c77ab',1,'PlottyFile']]],
|
||||
['setdescx',['setDescX',['../classPlottyFile.html#aa0449c290265d55d6223b19cf0a88b0a',1,'PlottyFile']]],
|
||||
['setdescy',['setDescY',['../classPlottyFile.html#a38a3a4dfc76bc70523727584bf01d590',1,'PlottyFile']]],
|
||||
['setfunctiontype',['setFunctionType',['../classPlottyFile.html#a4e5ab1ebb012a5cc1a3d6458a4cd512f',1,'PlottyFile']]],
|
||||
['setlabelclose',['setLabelClose',['../classViewInfo.html#a4c3db4806515ea8b0f07a9864f983377',1,'ViewInfo']]],
|
||||
['setmem16',['setMem16',['../classB15F.html#a62ef2ee9bd945d30979939fcffa6759a',1,'B15F']]],
|
||||
['setmem8',['setMem8',['../classB15F.html#a65c0eee6b40b6d3ec58b0335fd668503',1,'B15F']]],
|
||||
['setparafirstcurve',['setParaFirstCurve',['../classPlottyFile.html#aa676414793becb975506f48d6e949dd0',1,'PlottyFile']]],
|
||||
|
@ -17,6 +19,7 @@ var searchData=
|
|||
['setservodisabled',['setServoDisabled',['../classB15F.html#aad1b3206761c06c7183ae1b8b95b350b',1,'B15F']]],
|
||||
['setservoenabled',['setServoEnabled',['../classB15F.html#ab23d8c5a0b520b9d12d94a04f90fcfa0',1,'B15F']]],
|
||||
['setservoposition',['setServoPosition',['../classB15F.html#aa76f289274e5d0be41c5d4a58b52a416',1,'B15F']]],
|
||||
['settext',['setText',['../classViewInfo.html#abc93067b319df17e19f013a86d762f81',1,'ViewInfo']]],
|
||||
['settimeout',['setTimeout',['../classUSART.html#ad7fe866cebe920784d2b17602824c7ff',1,'USART']]],
|
||||
['settitle',['setTitle',['../classView.html#a6c725e4d83fd7474635a7e64200c7a08',1,'View']]],
|
||||
['setunitpara',['setUnitPara',['../classPlottyFile.html#abbac84109a1e0958a4ca5c270fac0986',1,'PlottyFile']]],
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
var searchData=
|
||||
[
|
||||
['view',['View',['../classView.html#a0a9be6e5fb588412aab31cacf5e43b04',1,'View']]]
|
||||
['view',['View',['../classView.html#a0a9be6e5fb588412aab31cacf5e43b04',1,'View']]],
|
||||
['viewinfo',['ViewInfo',['../classViewInfo.html#a95a3a81de65ef42615bbe5a843e8d5f6',1,'ViewInfo']]]
|
||||
];
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
var indexSectionsWithContent =
|
||||
{
|
||||
0: "abcdefghkmoprstuvw~",
|
||||
0: "abcdefghklmoprstuvw~",
|
||||
1: "bdptuv",
|
||||
2: "acdefgkoprstuvw~",
|
||||
3: "bchkmprstw",
|
||||
3: "bchklmprstw",
|
||||
4: "b"
|
||||
};
|
||||
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
var searchData=
|
||||
[
|
||||
['calls',['calls',['../classView.html#a610367214a727e2f7da72ac5bdb60fa3',1,'View']]]
|
||||
['calls',['calls',['../classView.html#a610367214a727e2f7da72ac5bdb60fa3',1,'View']]],
|
||||
['close_5foffset_5fx',['close_offset_x',['../classViewInfo.html#ae4dab70d82761e0f59f51dcae79685fe',1,'ViewInfo']]],
|
||||
['close_5foffset_5fy',['close_offset_y',['../classViewInfo.html#a5954adf853cb44d4655ede731faf1a28',1,'ViewInfo']]]
|
||||
];
|
||||
|
|
|
@ -1,7 +1,4 @@
|
|||
var searchData=
|
||||
[
|
||||
['msg',['msg',['../classUSARTException.html#a14c80df95f216d221aa97cffbcd8dd79',1,'USARTException']]],
|
||||
['msg_5f',['msg_',['../classDriverException.html#ab8777afe3f5aed2e66f2b2fcb480a651',1,'DriverException::msg_()'],['../classTimeoutException.html#ae6395f887040521c915b0b8d88dc29e7',1,'TimeoutException::msg_()']]],
|
||||
['msg_5ffail',['MSG_FAIL',['../classB15F.html#a77d1ecf24b406c9204665d3b09c36f1e',1,'B15F']]],
|
||||
['msg_5fok',['MSG_OK',['../classB15F.html#ab01299858f74a6cec598688562e0ad02',1,'B15F']]]
|
||||
['label_5fclose',['label_close',['../classViewInfo.html#a34879bd1c0a8fe230429cc600dcd6739',1,'ViewInfo']]]
|
||||
];
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
var searchData=
|
||||
[
|
||||
['pre',['PRE',['../classB15F.html#a3b0fc1f85954b2d9c145af4a3af5b1ec',1,'B15F']]]
|
||||
['msg',['msg',['../classUSARTException.html#a14c80df95f216d221aa97cffbcd8dd79',1,'USARTException']]],
|
||||
['msg_5f',['msg_',['../classDriverException.html#ab8777afe3f5aed2e66f2b2fcb480a651',1,'DriverException::msg_()'],['../classTimeoutException.html#ae6395f887040521c915b0b8d88dc29e7',1,'TimeoutException::msg_()']]],
|
||||
['msg_5ffail',['MSG_FAIL',['../classB15F.html#a77d1ecf24b406c9204665d3b09c36f1e',1,'B15F']]],
|
||||
['msg_5fok',['MSG_OK',['../classB15F.html#ab01299858f74a6cec598688562e0ad02',1,'B15F']]]
|
||||
];
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
var searchData=
|
||||
[
|
||||
['reconnect_5ftimeout',['RECONNECT_TIMEOUT',['../classB15F.html#a040951746fbfd632e12bd1ad14578816',1,'B15F']]],
|
||||
['reconnect_5ftries',['RECONNECT_TRIES',['../classB15F.html#a6c4895bdbcd71ff6743becf97985c2dc',1,'B15F']]]
|
||||
['pre',['PRE',['../classB15F.html#a3b0fc1f85954b2d9c145af4a3af5b1ec',1,'B15F']]]
|
||||
];
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
var searchData=
|
||||
[
|
||||
['start_5fx',['start_x',['../classView.html#a9fc9f3b0c876d063e6f57dee320a43fe',1,'View']]],
|
||||
['start_5fy',['start_y',['../classView.html#ac424db4c13776c3ce9d33f9074dfcfaa',1,'View']]]
|
||||
['reconnect_5ftimeout',['RECONNECT_TIMEOUT',['../classB15F.html#a040951746fbfd632e12bd1ad14578816',1,'B15F']]],
|
||||
['reconnect_5ftries',['RECONNECT_TRIES',['../classB15F.html#a6c4895bdbcd71ff6743becf97985c2dc',1,'B15F']]]
|
||||
];
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
var searchData=
|
||||
[
|
||||
['title',['title',['../classView.html#a80441aa81b52e04677a2aa2bd9c47753',1,'View']]]
|
||||
['start_5fx',['start_x',['../classView.html#a9fc9f3b0c876d063e6f57dee320a43fe',1,'View']]],
|
||||
['start_5fy',['start_y',['../classView.html#ac424db4c13776c3ce9d33f9074dfcfaa',1,'View']]]
|
||||
];
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
var searchData=
|
||||
[
|
||||
['wdt_5ftimeout',['WDT_TIMEOUT',['../classB15F.html#a158d13bc84aed6430cdede1396384e06',1,'B15F']]],
|
||||
['width',['width',['../classView.html#ae039aa744b085db819ae149705b2c32b',1,'View']]],
|
||||
['win',['win',['../classView.html#a5ddee2bf0b26dbcfa7780be17ff33dd7',1,'View']]]
|
||||
['text',['text',['../classViewInfo.html#ac392a569ef16af3dc11ee659f3fa1eb4',1,'ViewInfo']]],
|
||||
['text_5foffset_5fx',['text_offset_x',['../classViewInfo.html#a4681a8138f17ea229aca02e6db7357cd',1,'ViewInfo']]],
|
||||
['text_5foffset_5fy',['text_offset_y',['../classViewInfo.html#a34a9239c8954a0c27a22cf44d112f5b8',1,'ViewInfo']]],
|
||||
['title',['title',['../classView.html#a80441aa81b52e04677a2aa2bd9c47753',1,'View']]]
|
||||
];
|
||||
|
|
30
docs/html/search/variables_a.html
Normal file
30
docs/html/search/variables_a.html
Normal file
|
@ -0,0 +1,30 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html><head><title></title>
|
||||
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
|
||||
<meta name="generator" content="Doxygen 1.8.16"/>
|
||||
<link rel="stylesheet" type="text/css" href="search.css"/>
|
||||
<script type="text/javascript" src="variables_a.js"></script>
|
||||
<script type="text/javascript" src="search.js"></script>
|
||||
</head>
|
||||
<body class="SRPage">
|
||||
<div id="SRIndex">
|
||||
<div class="SRStatus" id="Loading">Loading...</div>
|
||||
<div id="SRResults"></div>
|
||||
<script type="text/javascript"><!--
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
createResults();
|
||||
/* @license-end */
|
||||
--></script>
|
||||
<div class="SRStatus" id="Searching">Searching...</div>
|
||||
<div class="SRStatus" id="NoMatches">No Matches</div>
|
||||
<script type="text/javascript"><!--
|
||||
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
|
||||
document.getElementById("Loading").style.display="none";
|
||||
document.getElementById("NoMatches").style.display="none";
|
||||
var searchResults = new SearchResults("searchResults");
|
||||
searchResults.Search();
|
||||
/* @license-end */
|
||||
--></script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
6
docs/html/search/variables_a.js
Normal file
6
docs/html/search/variables_a.js
Normal file
|
@ -0,0 +1,6 @@
|
|||
var searchData=
|
||||
[
|
||||
['wdt_5ftimeout',['WDT_TIMEOUT',['../classB15F.html#a158d13bc84aed6430cdede1396384e06',1,'B15F']]],
|
||||
['width',['width',['../classView.html#ae039aa744b085db819ae149705b2c32b',1,'View']]],
|
||||
['win',['win',['../classView.html#a5ddee2bf0b26dbcfa7780be17ff33dd7',1,'View']]]
|
||||
];
|
|
@ -79,7 +79,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassTimeoutException_html_ad6e5c200fbfd276f48a6c1163e2d2988"><div class="ttname"><a href="classTimeoutException.html#ad6e5c200fbfd276f48a6c1163e2d2988">TimeoutException::TimeoutException</a></div><div class="ttdeci">TimeoutException(const std::string &message)</div><div class="ttdef"><b>Definition:</b> <a href="timeoutexception_8h_source.html#l00024">timeoutexception.h:24</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -88,7 +88,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassTimeoutException_html"><div class="ttname"><a href="classTimeoutException.html">TimeoutException</a></div><div class="ttdef"><b>Definition:</b> <a href="timeoutexception_8h_source.html#l00009">timeoutexception.h:9</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -88,7 +88,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassUSART_html_adb6ff4d1cf1af79ca255c5a81780200d"><div class="ttname"><a href="classUSART.html#adb6ff4d1cf1af79ca255c5a81780200d">USART::flushOutputBuffer</a></div><div class="ttdeci">void flushOutputBuffer(void)</div><div class="ttdef"><b>Definition:</b> <a href="usart_8cpp_source.html#l00068">usart.cpp:68</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -79,7 +79,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassUSARTException_html_a0e008b3cb4974859e6bc8c8f8eb480be"><div class="ttname"><a href="classUSARTException.html#a0e008b3cb4974859e6bc8c8f8eb480be">USARTException::~USARTException</a></div><div class="ttdeci">virtual ~USARTException()=default</div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -88,7 +88,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassView_html_a092a269bf53569af7fca4d710dd5b980"><div class="ttname"><a href="classView.html#a092a269bf53569af7fca4d710dd5b980">View::draw</a></div><div class="ttdeci">virtual void draw(void)=0</div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -91,7 +91,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassView_html_a3554cf8689cad24c643665aa3d182134"><div class="ttname"><a href="classView.html#a3554cf8689cad24c643665aa3d182134">View::KEY_ENT</a></div><div class="ttdeci">constexpr static int KEY_ENT</div><div class="ttdoc">Key value for the Enter key.</div><div class="ttdef"><b>Definition:</b> <a href="view_8h_source.html#l00087">view.h:87</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -73,10 +73,10 @@ $(function() {
|
|||
<div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="preprocessor">#ifndef VIEW_MONITOR_H</span></div><div class="line"><a name="l00002"></a><span class="lineno"> 2</span> <span class="preprocessor">#define VIEW_MONITOR_H</span></div><div class="line"><a name="l00003"></a><span class="lineno"> 3</span>  </div><div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="preprocessor">#include <thread></span></div><div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="preprocessor">#include <chrono></span></div><div class="line"><a name="l00006"></a><span class="lineno"> 6</span> <span class="preprocessor">#include <sstream></span></div><div class="line"><a name="l00007"></a><span class="lineno"> 7</span> <span class="preprocessor">#include <bitset></span></div><div class="line"><a name="l00008"></a><span class="lineno"> 8</span> <span class="preprocessor">#include "view_info.h"</span></div><div class="line"><a name="l00009"></a><span class="lineno"> 9</span> <span class="preprocessor">#include "../drv/b15f.h"</span></div><div class="line"><a name="l00010"></a><span class="lineno"> 10</span>  </div><div class="line"><a name="l00013"></a><span class="lineno"><a class="line" href="classViewMonitor.html"> 13</a></span> <span class="keyword">class </span><a class="code" href="classViewMonitor.html">ViewMonitor</a> : <span class="keyword">public</span> <a class="code" href="classViewInfo.html">ViewInfo</a></div><div class="line"><a name="l00014"></a><span class="lineno"> 14</span> {</div><div class="line"><a name="l00015"></a><span class="lineno"> 15</span>  </div><div class="line"><a name="l00016"></a><span class="lineno"> 16</span> <span class="keyword">public</span>:</div><div class="line"><a name="l00017"></a><span class="lineno"> 17</span>  <a class="code" href="classViewMonitor.html">ViewMonitor</a>(<span class="keywordtype">void</span>);</div><div class="line"><a name="l00018"></a><span class="lineno"> 18</span>  <span class="keyword">virtual</span> call_t <a class="code" href="classViewMonitor.html#a2224002fe45655df87130fe07a161693">keypress</a>(<span class="keywordtype">int</span>& key) <span class="keyword">override</span>;</div><div class="line"><a name="l00019"></a><span class="lineno"> 19</span>  </div><div class="line"><a name="l00020"></a><span class="lineno"> 20</span> <span class="keyword">private</span>:</div><div class="line"><a name="l00021"></a><span class="lineno"> 21</span>  std::string fancyDigitalString(uint8_t& b);</div><div class="line"><a name="l00022"></a><span class="lineno"> 22</span>  std::string fancyAnalogString(uint16_t& v);</div><div class="line"><a name="l00023"></a><span class="lineno"> 23</span>  </div><div class="line"><a name="l00024"></a><span class="lineno"> 24</span> <span class="keyword">protected</span>:</div><div class="line"><a name="l00025"></a><span class="lineno"> 25</span>  <span class="keyword">virtual</span> <span class="keywordtype">void</span> worker(<span class="keywordtype">void</span>);</div><div class="line"><a name="l00026"></a><span class="lineno"> 26</span>  <span class="keyword">volatile</span> <span class="keywordtype">bool</span> run_worker = <span class="keyword">true</span>;</div><div class="line"><a name="l00027"></a><span class="lineno"> 27</span>  std::thread t_worker;</div><div class="line"><a name="l00028"></a><span class="lineno"> 28</span>  </div><div class="line"><a name="l00029"></a><span class="lineno"> 29</span> };</div><div class="line"><a name="l00030"></a><span class="lineno"> 30</span>  </div><div class="line"><a name="l00031"></a><span class="lineno"> 31</span> <span class="preprocessor">#endif // VIEW_MONITOR_H</span></div></div><!-- fragment --></div><!-- contents -->
|
||||
<div class="ttc" id="aclassViewMonitor_html_a2224002fe45655df87130fe07a161693"><div class="ttname"><a href="classViewMonitor.html#a2224002fe45655df87130fe07a161693">ViewMonitor::keypress</a></div><div class="ttdeci">virtual call_t keypress(int &key) override</div><div class="ttdef"><b>Definition:</b> <a href="view__monitor_8cpp_source.html#l00007">view_monitor.cpp:7</a></div></div>
|
||||
<div class="ttc" id="aclassViewMonitor_html"><div class="ttname"><a href="classViewMonitor.html">ViewMonitor</a></div><div class="ttdef"><b>Definition:</b> <a href="view__monitor_8h_source.html#l00013">view_monitor.h:13</a></div></div>
|
||||
<div class="ttc" id="aclassViewInfo_html"><div class="ttname"><a href="classViewInfo.html">ViewInfo</a></div><div class="ttdef"><b>Definition:</b> <a href="view__info_8h_source.html#l00008">view_info.h:8</a></div></div>
|
||||
<div class="ttc" id="aclassViewInfo_html"><div class="ttname"><a href="classViewInfo.html">ViewInfo</a></div><div class="ttdef"><b>Definition:</b> <a href="view__info_8h_source.html#l00011">view_info.h:11</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -83,7 +83,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassView_html_a3554cf8689cad24c643665aa3d182134"><div class="ttname"><a href="classView.html#a3554cf8689cad24c643665aa3d182134">View::KEY_ENT</a></div><div class="ttdeci">constexpr static int KEY_ENT</div><div class="ttdoc">Key value for the Enter key.</div><div class="ttdef"><b>Definition:</b> <a href="view_8h_source.html#l00087">view.h:87</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -77,7 +77,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassViewPromt_html_a24aa1e8887fc5e6631d6cb88adb7f3db"><div class="ttname"><a href="classViewPromt.html#a24aa1e8887fc5e6631d6cb88adb7f3db">ViewPromt::keypress</a></div><div class="ttdeci">virtual call_t keypress(int &key) override</div><div class="ttdef"><b>Definition:</b> <a href="view__promt_8cpp_source.html#l00059">view_promt.cpp:59</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -81,7 +81,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassView_html_a3554cf8689cad24c643665aa3d182134"><div class="ttname"><a href="classView.html#a3554cf8689cad24c643665aa3d182134">View::KEY_ENT</a></div><div class="ttdeci">constexpr static int KEY_ENT</div><div class="ttdoc">Key value for the Enter key.</div><div class="ttdef"><b>Definition:</b> <a href="view_8h_source.html#l00087">view.h:87</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
|
@ -77,7 +77,7 @@ $(function() {
|
|||
<div class="ttc" id="aclassViewSelection_html_a10fa34fb676bfed472ca5ee62ef9446d"><div class="ttname"><a href="classViewSelection.html#a10fa34fb676bfed472ca5ee62ef9446d">ViewSelection::draw</a></div><div class="ttdeci">virtual void draw(void) override</div><div class="ttdef"><b>Definition:</b> <a href="view__selection_8cpp_source.html#l00003">view_selection.cpp:3</a></div></div>
|
||||
<!-- start footer part -->
|
||||
<hr class="footer"/><address class="footer"><small>
|
||||
Generated on Wed Jul 31 2019 11:58:58 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
Generated on Wed Jul 31 2019 15:40:05 for B15F by  <a href="http://www.doxygen.org/index.html">
|
||||
<img class="footer" src="doxygen.png" alt="doxygen"/>
|
||||
</a> 1.8.16
|
||||
</small></address>
|
||||
|
|
Loading…
Reference in a new issue