source: trunk/IPs/systemC/processor/Morpheo/Tools/Viewer/Graphics/src/Graphics_informations_window.cpp @ 21

Last change on this file since 21 was 21, checked in by chou, 17 years ago

2eme release du viewer
Mise a jour graphique du Viewer.

  • Property svn:executable set to *
File size: 453 bytes
Line 
1#include "window.h"
2
3using namespace std;
4
5using namespace morpheo::tools::viewer::parser;
6using namespace morpheo::tools::viewer::bdd;
7using namespace morpheo::tools::viewer::graphics;
8
9void Window::winformations()
10{
11  winfo = new QWidget();
12  informations = new QBoxLayout(QBoxLayout::TopToBottom,0);
13  winfo->setWindowTitle("informations");
14  winfo->setFixedSize(250,292);
15  winfo->move(678,50);
16  winfo->setLayout(informations);
17  winfo->show();
18}
19
Note: See TracBrowser for help on using the repository browser.