Changeset 435


Ignore:
Timestamp:
10/03/10 15:45:17 (14 years ago)
Author:
yerima
Message:

In the process of generating the instruction's file: the icon for the right button, the ui_instruction's graphical window and the Instruction's class (InstructionWindow?.cpp & InstructionWindow?.hpp) have been added for Visual Yao.

Location:
trunk/yao/src/interface
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/yao/src/interface/Makefile.save

    r434 r435  
    1414CFLAGS        = -pipe -O2 -g -pipe -Wformat -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -fomit-frame-pointer -march=i586 -mtune=generic -fasynchronous-unwind-tables -Wall -W -D_REENTRANT $(DEFINES) 
    1515CXXFLAGS      = -pipe -O2 -g -pipe -Wformat -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -fomit-frame-pointer -march=i586 -mtune=generic -fasynchronous-unwind-tables -Wall -W -D_REENTRANT $(DEFINES) 
    16 INCPATH       = -I/usr/lib/qt4/mkspecs/linux-g++ -I. -I/usr/lib/qt4/include/QtCore -I/usr/lib/qt4/include/QtGui -I/usr/lib/qt4/include -I. -Isrc/Include -I.  -I../../share/antlr-2.7.7/lib/cpp/ 
     16INCPATH       = -I/usr/lib/qt4/mkspecs/linux-g++ -I. -I/usr/lib/qt4/include/QtCore -I/usr/lib/qt4/include/QtGui -I/usr/lib/qt4/include -I. -Isrc/Include -I.  -I../../share/antlr-2.7.7/lib/cpp/ -I../../share/boost_1_39_0/ -I. 
    1717LINK          = g++ 
    1818LFLAGS        = -Wl,--as-needed -Wl,--no-undefined -Wl,-z,relro -Wl,-O1 
  • trunk/yao/src/interface/src/MainWindow.cpp

    r431 r435  
    3636MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), m_constantWindow(NULL), m_hatnameWindow(NULL), m_contextWindow(NULL), m_trajectoryWindow(NULL), m_spaceWindow(NULL), m_operaWindow(NULL), m_netwardWindow(NULL), m_modulWindow(NULL), m_ctinWindow(NULL), m_orderWindow(NULL), m_insertFCTWindow(NULL), m_newProjectWindow(NULL), m_newProjectName(""), theConstantTablePt(theConstantTable), contextTest(false)     
    3737{ 
    38          
     38        InstructionWindow *in = new InstructionWindow ; 
     39        in->show();      
    3940        setWindowTitle(" Visual YAO ");         //Gives a title to the mainwindow. 
    4041        pt_espace = new QWorkspace;                             //Crée un espace de travail. Ici, ça serait notre zone centrale 
  • trunk/yao/src/interface/src/include/MainWindow.hpp

    r429 r435  
    4646#include "ConnectionWindow.hpp" 
    4747#include "NewProjectWindow.hpp" 
     48#include "InstructionWindow.hpp" 
    4849 
    4950/*! 
Note: See TracChangeset for help on using the changeset viewer.