diff options
| -rw-r--r-- | ue2/doxygen.conf | 4 | ||||
| -rw-r--r-- | ue2/imgsynth2/cpixelformat_indexed8.cpp | 1 | ||||
| -rw-r--r-- | ue2/imgsynth2/cpixelformat_indexed8.h | 7 | ||||
| -rw-r--r-- | ue2/imgsynth2/cpixmap.h | 6 | ||||
| -rw-r--r-- | ue2/protokoll/imgsynth.vpp | bin | 53886 -> 0 bytes | |||
| -rw-r--r-- | ue2/protokoll/imgsynth2.png | bin | 0 -> 115909 bytes | |||
| -rw-r--r-- | ue2/protokoll/imgsynth2.vpp | bin | 0 -> 77276 bytes | |||
| -rw-r--r-- | ue2/protokoll/protokoll.tex | 6 |
8 files changed, 13 insertions, 11 deletions
diff --git a/ue2/doxygen.conf b/ue2/doxygen.conf index 4ea8eec..8c3801c 100644 --- a/ue2/doxygen.conf +++ b/ue2/doxygen.conf | |||
| @@ -25,7 +25,7 @@ DOXYFILE_ENCODING = UTF-8 | |||
| 25 | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded | 25 | # The PROJECT_NAME tag is a single word (or a sequence of words surrounded |
| 26 | # by quotes) that should identify the project. | 26 | # by quotes) that should identify the project. |
| 27 | 27 | ||
| 28 | PROJECT_NAME = imgsynth | 28 | PROJECT_NAME = imgsynth2 |
| 29 | 29 | ||
| 30 | # The PROJECT_NUMBER tag can be used to enter a project or revision number. | 30 | # The PROJECT_NUMBER tag can be used to enter a project or revision number. |
| 31 | # This could be handy for archiving the generated documentation or | 31 | # This could be handy for archiving the generated documentation or |
| @@ -482,7 +482,7 @@ WARN_LOGFILE = | |||
| 482 | # directories like "/usr/src/myproject". Separate the files or directories | 482 | # directories like "/usr/src/myproject". Separate the files or directories |
| 483 | # with spaces. | 483 | # with spaces. |
| 484 | 484 | ||
| 485 | INPUT = imgsynth | 485 | INPUT = imgsynth2 |
| 486 | 486 | ||
| 487 | # This tag can be used to specify the character encoding of the source files that | 487 | # This tag can be used to specify the character encoding of the source files that |
| 488 | # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default | 488 | # doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default |
diff --git a/ue2/imgsynth2/cpixelformat_indexed8.cpp b/ue2/imgsynth2/cpixelformat_indexed8.cpp index d92ae9f..b314f0a 100644 --- a/ue2/imgsynth2/cpixelformat_indexed8.cpp +++ b/ue2/imgsynth2/cpixelformat_indexed8.cpp | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | #include <boost/numeric/conversion/cast.hpp> | 8 | #include <boost/numeric/conversion/cast.hpp> |
| 9 | #include <assert.h> | 9 | #include <assert.h> |
| 10 | #include "cpixelformat_indexed8.h" | 10 | #include "cpixelformat_indexed8.h" |
| 11 | #include "cbitmap.h" | ||
| 11 | 12 | ||
| 12 | using namespace std; | 13 | using namespace std; |
| 13 | 14 | ||
diff --git a/ue2/imgsynth2/cpixelformat_indexed8.h b/ue2/imgsynth2/cpixelformat_indexed8.h index 331d423..ac18b87 100644 --- a/ue2/imgsynth2/cpixelformat_indexed8.h +++ b/ue2/imgsynth2/cpixelformat_indexed8.h | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | 10 | ||
| 11 | #include <fstream> | 11 | #include <fstream> |
| 12 | #include "cpixelformat.h" | 12 | #include "cpixelformat.h" |
| 13 | #include "cpixmap.h" | ||
| 14 | 13 | ||
| 15 | /** | 14 | /** |
| 16 | * @class CPixelFormat_Indexed8 | 15 | * @class CPixelFormat_Indexed8 |
| @@ -24,14 +23,14 @@ class CPixelFormat_Indexed8 : public CPixelFormat | |||
| 24 | /** | 23 | /** |
| 25 | * @method CPixelFormat_Indexed8 | 24 | * @method CPixelFormat_Indexed8 |
| 26 | * @brief Default ctor | 25 | * @brief Default ctor |
| 27 | * @param pixmap pointer to CPixmap instance | 26 | * @param bitmap pointer to CBitmap instance |
| 28 | * @return - | 27 | * @return - |
| 29 | * @globalvars none | 28 | * @globalvars none |
| 30 | * @exception none | 29 | * @exception none |
| 31 | * @conditions none | 30 | * @conditions none |
| 32 | */ | 31 | */ |
| 33 | CPixelFormat_Indexed8(CPixmap *pixmap) | 32 | CPixelFormat_Indexed8(CBitmap *bitmap) |
| 34 | : CPixelFormat(pixmap) | 33 | : CPixelFormat(bitmap) |
| 35 | {} | 34 | {} |
| 36 | 35 | ||
| 37 | /** | 36 | /** |
diff --git a/ue2/imgsynth2/cpixmap.h b/ue2/imgsynth2/cpixmap.h index 10f2b33..5316987 100644 --- a/ue2/imgsynth2/cpixmap.h +++ b/ue2/imgsynth2/cpixmap.h | |||
| @@ -214,11 +214,11 @@ class CPixmap : public CBitmap | |||
| 214 | uint32_t xHotspot; | 214 | uint32_t xHotspot; |
| 215 | /** Y-Position Hotspots */ | 215 | /** Y-Position Hotspots */ |
| 216 | uint32_t yHotspot; | 216 | uint32_t yHotspot; |
| 217 | /* is hotspot set */ | 217 | /** is hotspot set */ |
| 218 | bool _HOTSPOT; | 218 | bool _HOTSPOT; |
| 219 | /* XPMEXT extension tag found*/ | 219 | /** XPMEXT extension tag found*/ |
| 220 | bool _XPMEXT; | 220 | bool _XPMEXT; |
| 221 | /* unchanged extension */ | 221 | /** unchanged extension */ |
| 222 | std::string extension; | 222 | std::string extension; |
| 223 | } PIXMAP_FILEHEADER; | 223 | } PIXMAP_FILEHEADER; |
| 224 | 224 | ||
diff --git a/ue2/protokoll/imgsynth.vpp b/ue2/protokoll/imgsynth.vpp deleted file mode 100644 index b94b9e4..0000000 --- a/ue2/protokoll/imgsynth.vpp +++ /dev/null | |||
| Binary files differ | |||
diff --git a/ue2/protokoll/imgsynth2.png b/ue2/protokoll/imgsynth2.png new file mode 100644 index 0000000..83797ba --- /dev/null +++ b/ue2/protokoll/imgsynth2.png | |||
| Binary files differ | |||
diff --git a/ue2/protokoll/imgsynth2.vpp b/ue2/protokoll/imgsynth2.vpp new file mode 100644 index 0000000..e00e709 --- /dev/null +++ b/ue2/protokoll/imgsynth2.vpp | |||
| Binary files differ | |||
diff --git a/ue2/protokoll/protokoll.tex b/ue2/protokoll/protokoll.tex index 456a6e7..c9a6930 100644 --- a/ue2/protokoll/protokoll.tex +++ b/ue2/protokoll/protokoll.tex | |||
| @@ -45,7 +45,7 @@ TODO | |||
| 45 | %================================================================== | 45 | %================================================================== |
| 46 | \begin{figure}[htb] | 46 | \begin{figure}[htb] |
| 47 | \begin{center} | 47 | \begin{center} |
| 48 | \epsfxsize=0.9\textwidth\epsfbox{ClassDiagram1.png} | 48 | \epsfxsize=0.9\textwidth\epsfbox{imgsynth2.png} |
| 49 | \end{center} | 49 | \end{center} |
| 50 | \caption{Klassendiagramm 1} | 50 | \caption{Klassendiagramm 1} |
| 51 | \label{fig:classdiagram1} | 51 | \label{fig:classdiagram1} |
| @@ -83,7 +83,9 @@ TODO | |||
| 83 | \toprule | 83 | \toprule |
| 84 | Entwicklungsschritt / Meilenstein & Arbeitsaufwand\\ | 84 | Entwicklungsschritt / Meilenstein & Arbeitsaufwand\\ |
| 85 | \midrule | 85 | \midrule |
| 86 | TODO | 86 | TODO\\ |
| 87 | \hline | ||
| 88 | TODO\\ | ||
| 87 | \bottomrule | 89 | \bottomrule |
| 88 | \end{tabular} | 90 | \end{tabular} |
| 89 | 91 | ||
