Index: sources/view/VView.h =================================================================== diff -u -rc503f43840024e18650c1ac558448dd0f3b70427 -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 --- sources/view/VView.h (.../VView.h) (revision c503f43840024e18650c1ac558448dd0f3b70427) +++ sources/view/VView.h (.../VView.h) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) @@ -15,31 +15,31 @@ #pragma once /*! - * \page MessageView Denali Message UI usage instruction + * \page MessageView Denali Message View usage instruction in QML * \details This comment explains how to use a Denali Message populated data in Denali UI Application - * \verbatim - * 1 - Look at the message structure in the "message list.xlsx" - * - * 2 - View Implementation : - * Implement a view like VDGPressures by copy/paste the closest model .h/.cpp file - * and adding it to project and modify to fit the new model. - * - * 3 - Register View : - * - Add the required lines like the other models in the VView.h file. - * - Also add the #include in the GuiGlobals.cpp - * - * 4 - Usage in UI : - * Import : import VDGPressures 0.1; - * Instantiate : VDGPressures { id: vDGPressures } - * Access : value: vDGPressures.drainInletPSI - * \endverbatim + \verbatim + 1 - Look at the message structure in the "message list.xlsx" + + 2 - View Implementation : + Implement a view like VDGPressures by copy/paste the closest model .h/.cpp file + and adding it to project and modify to fit the new model. + + 3 - Register View : + - Add the required lines like the other models in the VView.h file. + - Also add the #include in the GuiGlobals.cpp + + 4 - Usage in UI : + Import : import VDGPressures 0.1; + Instantiate : VDGPressures { id: vDGPressures } + Access : value: vDGPressures.drainInletPSI + \endverbatim */ //--------------------------------------------------------------------------------// //--------------------------------------------------------------------------------// // The child declaration in header #define VIEW_DEC_CLASS(vCLASS) \ private: \ - /*! \brief Connection Initializer + /*! \brief Connection Initializer \details All the class signal/slot connections are defined here. */\ void initConnections(); \