Salome HOME
merge from branch DEV tag mergeto_trunk_04apr08
[modules/yacs.git] / src / gui / YACSGui_LogViewer.h
1 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
3 // 
4 //  This library is free software; you can redistribute it and/or 
5 //  modify it under the terms of the GNU Lesser General Public 
6 //  License as published by the Free Software Foundation; either 
7 //  version 2.1 of the License. 
8 // 
9 //  This library is distributed in the hope that it will be useful, 
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 //  Lesser General Public License for more details. 
13 // 
14 //  You should have received a copy of the GNU Lesser General Public 
15 //  License along with this library; if not, write to the Free Software 
16 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
17 // 
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 #ifndef YACSGui_Graph_LogViewer
22 #define YACSGui_Graph_LogViewer
23
24 #include <qdialog.h>
25 #include <qlayout.h>
26 #include <qtextbrowser.h>
27 #include <qpushbutton.h>
28
29
30 #include <sstream>
31
32 class LogViewer : public QDialog {
33 public:
34     LogViewer(const std::string& txt, QWidget *parent=0, const char *name=0,WFlags f = 0) : QDialog(parent,name,FALSE,f)
35       {
36         mytext=txt;
37         QVBoxLayout* vb = new QVBoxLayout(this,8);
38         vb->setAutoAdd(TRUE);
39         browser = new QTextBrowser( this );
40         browser->setFrameStyle( QFrame::Panel | QFrame::Sunken );
41         browser->setTextFormat( QTextEdit::PlainText );
42         browser->setWordWrap(QTextEdit::NoWrap);
43         browser->setReadOnly(1);
44         browser->setText(txt);
45         button= new QPushButton("Close",this);
46         connect(button,SIGNAL(clicked()),this, SLOT(close()));
47         resize(500,500);
48       }
49     ~LogViewer()
50       {
51         //std::cerr << "~LogViewer()" << std::endl;
52       }
53     void readFile(const std::string& filename)
54       {
55         std::fstream f(filename.c_str());
56         std::stringstream hfile;
57         hfile << f.rdbuf();
58         browser->setText(mytext+"\n\n"+ hfile.str());
59         f.close();
60       }
61
62 private:
63     std::string mytext;
64     QPushButton* button;
65     QTextBrowser* browser;
66 };
67
68 #endif