diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-10-30 02:28:57 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-10-30 12:13:17 -0500 |
commit | 8faa3da1094d1785d3343c2869d9f8c95f01cf97 (patch) | |
tree | d6a7e029810759972c17395a22593a75256f611c /clients/tde/src/part/fpgaview/part.h | |
parent | b783a269490763ec242e967fa713dbf732e5ac13 (diff) | |
download | ulab-8faa3da1094d1785d3343c2869d9f8c95f01cf97.tar.gz ulab-8faa3da1094d1785d3343c2869d9f8c95f01cf97.zip |
Fix image distortion when certain greyscale values are utilized
Store last used values in FPGA viewer and programmer GUI for convenience on GUI restart
Diffstat (limited to 'clients/tde/src/part/fpgaview/part.h')
-rw-r--r-- | clients/tde/src/part/fpgaview/part.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/clients/tde/src/part/fpgaview/part.h b/clients/tde/src/part/fpgaview/part.h index b49ace2..81f74f7 100644 --- a/clients/tde/src/part/fpgaview/part.h +++ b/clients/tde/src/part/fpgaview/part.h @@ -15,7 +15,7 @@ * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * - * (c) 2012 Timothy Pearson + * (c) 2012-2013 Timothy Pearson * Raptor Engineering * http://www.raptorengineeringinc.com */ @@ -29,6 +29,8 @@ #include <tqframe.h> #include <tqimage.h> +#include <ksimpleconfig.h> + #include <tdeparts/browserextension.h> #include <tdeparts/statusbarextension.h> #include <tdeparts/part.h> @@ -207,6 +209,7 @@ namespace RemoteLab private: FPGAViewBase* m_base; TQMutex* m_connectionMutex; + KSimpleConfig* m_config; TQTimer* m_updateTimer; TQTimer* m_timeoutTimer; @@ -247,6 +250,7 @@ namespace RemoteLab TQImage m_dataInputImage; TQFile* m_dataOutputFile; TQByteArray m_dataByteArray; + int m_dataMemorySize; ImageViewerWindow* m_inputImageViewer; ImageViewerWindow* m_outputImageViewer; |