Changeset 240 in PSPA for Interface_Web/trunk/pspaWT/include


Ignore:
Timestamp:
Jan 18, 2013, 2:46:56 PM (11 years ago)
Author:
garnier
Message:

Correction de la console qui est désormais une classe à part et initilisée une

Location:
Interface_Web/trunk/pspaWT/include
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Interface_Web/trunk/pspaWT/include/GWt_pspaApplication.h

    r233 r240  
    1919#include "GWt_dialog.h"
    2020#include "dataManager.h"
     21#include "GWt_tools.h"
    2122
    2223using namespace Wt;
     
    6162 list<GWt_sectionToExecute*> selectedSections_;
    6263 WFileUpload* uploadFileSelectorWidget_;
     64 GWt_console* console_;
     65 
    6366
    6467 WText*   createTitle(const WString&);
  • Interface_Web/trunk/pspaWT/include/GWt_tools.h

    r239 r240  
    1 #ifndef GWTTOOLS_SEEN
    2 #define GWTTOOLS_SEEN
     1#ifndef GWTCONSOLE_SEEN
     2#define GWTCONSOLE_SEEN
    33
    44#include <iostream>
     
    1111using namespace std;
    1212
    13 class GWt_tools
     13class GWt_console : public WContainerWidget
    1414{
    1515
    16  public :
     16public:
     17  GWt_console();
     18  virtual ~GWt_console();
     19  void addConsoleMessage(WString msg);
     20};
    1721
    18   static WContainerWidget* console_;
    19 
    20 
    21   static void addConsoleMessage(WString msg);
    22 
    23 
    24 };
    2522#endif
Note: See TracChangeset for help on using the changeset viewer.