Skip to content
Snippets Groups Projects
Commit fc53ad1a authored by Cyrille Valladeau's avatar Cyrille Valladeau
Browse files

ADD: add MsgReporter into Visualization for the ViewerManager

parents 8919a19a 24cc7c55
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
FILE(GLOB OTBVisualization_SRCS "*.cxx" )
FLTK_WRAP_UI(OTBVisualization otbImageWidgetPackedManager.fl otbImageWidgetSplittedManager.fl)
FLTK_WRAP_UI(OTBVisualization otbImageWidgetPackedManager.fl otbImageWidgetSplittedManager.fl otbMsgReporterGUI.fl)
ADD_LIBRARY(OTBVisualization ${OTBVisualization_SRCS} ${OTBVisualization_FLTK_UI_SRCS})
TARGET_LINK_LIBRARIES (OTBVisualization OTBGui OTBCommon OTBIO ${OTB_VISU_GUI_LIBRARIES})
......
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt 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.
=========================================================================*/
#include "otbMsgReporter.h"
#include <FL/Fl_Text_Buffer.H>
namespace otb
{
/** Initialize the singleton */
MsgReporter::Pointer MsgReporter::m_Instance = NULL;
/// Constructor
MsgReporter
::MsgReporter()
{
this->Build();
wMainWindow->show();
Fl_Text_Buffer * buffer = new Fl_Text_Buffer();
this->textArea->buffer(buffer);
}
/** Manage the singleton */
MsgReporter::Pointer
MsgReporter
::GetInstance()
{
if (!m_Instance)
{
m_Instance = MsgReporter::New();
}
return m_Instance;
}
//Show
void
MsgReporter
::Show()
{
this->wMainWindow->show();
}
//Hide
void
MsgReporter
::Hide()
{
this->wMainWindow->hide();
}
//Set title
void
MsgReporter
::SetTitle(const std::string & title)
{
std::string str(title);
str = str + " message reporter window";
this->wMainWindow->label(str.c_str());
}
//Send Msg
void
MsgReporter
::SendMsg(const std::string & msg)
{
this->textArea->insert(msg.c_str());
this->textArea->show_insert_position();
Fl::check();
}
//Send Error
void
MsgReporter
::SendError(const std::string & msg)
{
this->textArea->insert("ERROR: ");
this->textArea->insert(msg.c_str());
this->textArea->show_insert_position();
this->Show();
Fl::check();
}
}
/*=========================================================================
Program: ORFEO Toolbox
Language: C++
Date: $Date$
Version: $Revision$
Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
See OTBCopyright.txt 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.
=========================================================================*/
#ifndef __otbMsgReporter_h
#define __otbMsgReporter_h
#include "itkObjectFactory.h"
#include <string>
#include "itkObject.h"
#include "itkMacro.h"
#include "otbMacro.h"
#include "otbMsgReporterGUI.h"
namespace otb
{
/** \class MsgReporter
* \brief This class implements an message reporter windows. It's used by alls graphicals applications wants to report message
*
* Use FLTK gui.
*
*/
class MsgReporter
: public MsgReporterGUI , public itk::Object
{
public:
/** Standard class typedefs */
typedef MsgReporter Self;
typedef itk::Object Superclass;
typedef itk::SmartPointer<Self> Pointer;
typedef itk::SmartPointer<const Self> ConstPointer;
/** Method for creation through the object factory. */
itkNewMacro(Self);
/** Run-time type information (and related methods). */
itkTypeMacro(MsgReporter, Object);
/** Get the unique instance of the model */
static Pointer GetInstance();
/** Show the viewer (Update) */
virtual void Show();
/** Hide the window */
virtual void Hide();
/** Set the title of the window */
virtual void SetTitle(const std::string & title);
/** Send a new message in the edit area */
virtual void SendMsg(const std::string & msg);
/** Send an error message in the edit area */
virtual void SendError(const std::string & msg);
protected:
// Constructor and destructor
MsgReporter();
~MsgReporter() {};
private:
MsgReporter(const Self&); //purposely not implemented
void operator=(const Self&); //purposely not implemented
/** The instance singleton */
static Pointer m_Instance;
};
} // end namespace otb
#endif
# data file for the Fltk User Interface Designer (fluid)
version 1.0107
i18n_type 1
i18n_include "otbI18n.h"
i18n_function otbGetTextMacro
header_name {.h}
code_name {.cxx}
class MsgReporterGUI {open
} {
Function {Build()} {open return_type {virtual void}
} {
Fl_Window wMainWindow {
label {Msg Reporter} open
xywh {331 57 670 90} type Double box PLASTIC_DOWN_BOX color 23 labelfont 1 labelsize 12 labelcolor 186 resizable visible
} {
Fl_Group gMsgReporter {open
tooltip {Navigate through the image} xywh {0 -4 670 93} box PLASTIC_DOWN_BOX color 23 labelfont 1 labelsize 12 labelcolor 186
} {
Fl_Text_Display textArea {
xywh {10 10 650 70}
}
}
}
}
Function {~MsgReporterGUI()} {open selected return_type virtual
} {}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment