created messages tab-not working completely yet

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorGui@15 af1100a4-978c-4157-bff7-07162d2ba061
This commit is contained in:
l_maliakal_d
2012-06-28 08:35:21 +00:00
parent 824da9d4c4
commit ec0878d008
12 changed files with 549 additions and 79 deletions

View File

@ -19,6 +19,7 @@ class qTabAdvanced;
class qTabSettings;
class qTabDebugging;
class qTabDeveloper;
class qTabMessages;
/** Project Class Headers */
class slsDetectorUtils;
#include "sls_detector_defs.h"
@ -80,25 +81,27 @@ private:
/** The default tab heading color */
QColor defaultTabColor;
/** enumeration of the tabs */
enum {Measurement, Settings, DataOutput, Plot, Actions, Advanced, Debugging, Developer, NumberOfTabs };
enum {Measurement, Settings, DataOutput, Plot, Actions, Advanced, Debugging, Developer, Messages, NumberOfTabs };
/* Scroll Area for the tabs**/
QScrollArea *scroll[NumberOfTabs];
/**Measurement tab */
qTabMeasurement *tab_measurement;
qTabMeasurement *tab_measurement;
/**DataOutput tab */
qTabDataOutput *tab_dataoutput;
qTabDataOutput *tab_dataoutput;
/**Plot tab */
qTabPlot *tab_plot;
qTabPlot *tab_plot;
/**Actions tab */
qTabActions *tab_actions;
qTabActions *tab_actions;
/**Settings tab */
qTabSettings *tab_settings;
qTabSettings *tab_settings;
/**Advanced tab */
qTabAdvanced *tab_advanced;
qTabAdvanced *tab_advanced;
/**Debugging tab */
qTabDebugging *tab_debugging;
qTabDebugging *tab_debugging;
/**Developer tab */
qTabDeveloper *tab_developer;
qTabDeveloper *tab_developer;
/**Messages tab */
qTabMessages *tab_messages;
/**if the developer tab should be enabled,known from command line */
int isDeveloper;