1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
/*=========================================================================
Program: Image Guided Surgery Software Toolkit
Module: $RCSfile: igstkFLTKTextLogOutputTest.cxx,v $
Language: C++
Date: $Date: 2008-07-14 20:34:43 $
Version: $Revision: 1.7 $
Copyright (c) ISC Insight Software Consortium. All rights reserved.
See IGSTKCopyright.txt or http://www.igstk.org/copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
// Warning about: identifier was truncated to '255' characters
// in the debug information (MVC6.0 Debug)
#pragma warning( disable : 4786 )
#endif
#include <iostream>
#include <fstream>
#include "igstkFLTKTextLogOutput.h"
#include "igstkRealTimeClock.h"
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Text_Display.H>
#include <FL/Fl_Text_Buffer.H>
int igstkFLTKTextLogOutputTest( int, char * [] )
{
igstk::RealTimeClock::Initialize();
try
{
// Create an igstk::FLTKTextLogOutput
igstk::FLTKTextLogOutput::Pointer output = igstk::FLTKTextLogOutput::New();
std::cout << "Testing igstk::FLTKTextLogOutput" << std::endl;
std::cout.precision(20);
Fl_Window *win = new Fl_Window(0,0,400,300,"igstkFLTKTextLogOutputTest");
Fl_Text_Display *texts = new Fl_Text_Display(0,0,400,300,NULL);
Fl_Text_Buffer *textBuffer = new Fl_Text_Buffer();
texts->buffer(textBuffer);
win->end();
win->show();
std::cout << output << std::endl;
output->SetStream(*texts);
igstk::FLTKTextLogOutput::StreamPointerType stream;
stream = output->GetStream();
if( stream != texts )
{
std::cout << "[FAILED]" << std::endl;
return EXIT_FAILURE;
}
output->Write(1.2345);
output->Write("This is the test message.\n");
std::cout << output << std::endl;
double stamp;
for( stamp = 1; stamp < 100; stamp += 1 )
{
output->Write("This is the test message.\n", stamp);
output->Flush();
Fl::check();
}
}
catch(...)
{
std::cerr << "Exception catched !!" << std::endl;
return EXIT_FAILURE;
}
std::cout << "[PASSED]" << std::endl;
return EXIT_SUCCESS;
}
|