// // FILE: [_controller_GSLC.h] // Created by GUIslice Builder version: [0.15.b004] // // GUIslice Builder Generated GUI Framework File // // For the latest guides, updates and support view: // https://github.com/ImpulseAdventure/GUIslice // // #ifndef _GUISLICE_GEN_H #define _GUISLICE_GEN_H // ------------------------------------------------ // Headers to include // ------------------------------------------------ #include "src/guislice/GUIslice.h" #include "src/guislice/GUIslice_drv.h" // Include any extended elements // // Include extended elements #include "src/guislice/XCheckbox.h" #include "src/guislice/XProgress.h" #include "src/guislice/XTextbox.h" // // ------------------------------------------------ // Headers and Defines for fonts // Note that font files are located within the Adafruit-GFX library folder: // ------------------------------------------------ // #if defined(DRV_DISP_TFT_ESPI) #error Project tab->Target Platform should be tft_espi #endif #include #include "src/guislice/NotoMono12pt7b.h" #include "src/guislice/NotoMono8pt7b.h" // // ------------------------------------------------ // Defines for resources // ------------------------------------------------ // // // ------------------------------------------------ // Enumerations for pages, elements, fonts, images // ------------------------------------------------ // enum {E_PG_MAIN,E_CONF_RPI}; enum {E_ELEM_BATT_LEVEL,E_ELEM_CONFIG_RPI_TITLE,E_ELEM_RD96 ,E_ELEM_RD_1152,E_ELEM_RD_UART0,E_ELEM_RD_UART5,E_ELEM_STATUS ,E_ELEM_TEXT,E_ELEM_TEXT3,E_ELEM_TEXT4,E_ELEM_TX96,E_ELEM_TX_1152 ,E_ELEM_TX_UART1,E_ELEM_TX_UART5}; enum {E_GRP_SPD,E_GRP_UART}; // Must use separate enum for fonts with MAX_FONT at end to use gslc_FontSet. enum {E_AO_NOTOMONO12PT7B,E_AO_NOTOMONO8PT7B,MAX_FONT}; // // ------------------------------------------------ // Instantiate the GUI // ------------------------------------------------ // ------------------------------------------------ // Define the maximum number of elements and pages // ------------------------------------------------ // #define MAX_PAGE 2 #define MAX_ELEM_PG_MAIN 3 // # Elems total on page #define MAX_ELEM_PG_MAIN_RAM MAX_ELEM_PG_MAIN // # Elems in RAM #define MAX_ELEM_CONF_RPI 11 // # Elems total on page #define MAX_ELEM_CONF_RPI_RAM MAX_ELEM_CONF_RPI // # Elems in RAM // // ------------------------------------------------ // Create element storage // ------------------------------------------------ gslc_tsGui m_gui; gslc_tsDriver m_drv; gslc_tsFont m_asFont[MAX_FONT]; gslc_tsPage m_asPage[MAX_PAGE]; // gslc_tsElem m_asPage1Elem[MAX_ELEM_PG_MAIN_RAM]; gslc_tsElemRef m_asPage1ElemRef[MAX_ELEM_PG_MAIN]; gslc_tsElem m_asPage2Elem[MAX_ELEM_CONF_RPI_RAM]; gslc_tsElemRef m_asPage2ElemRef[MAX_ELEM_CONF_RPI]; gslc_tsXProgress m_sXBarGauge1; gslc_tsXTextbox m_sTextbox1; char m_acTextboxBuf1[952]; // NRows=17 NCols=56 gslc_tsXCheckbox m_asXRadio1; gslc_tsXCheckbox m_asXRadio2; gslc_tsXCheckbox m_asXRadio3; gslc_tsXCheckbox m_asXRadio4; #define MAX_STR 100 // // ------------------------------------------------ // Program Globals // ------------------------------------------------ // Element References for direct access // extern gslc_tsElemRef* m_pElemBatteryLevel; extern gslc_tsElemRef* m_pElemRd1152; extern gslc_tsElemRef* m_pElemRd96; extern gslc_tsElemRef* m_pElemRdUART0; extern gslc_tsElemRef* m_pElemRdUART5; extern gslc_tsElemRef* m_pElemStatusText; extern gslc_tsElemRef* m_pElemText; extern gslc_tsElemRef* m_pTextSlider; // // Define debug message function static int16_t DebugOut(char ch); // ------------------------------------------------ // Callback Methods // ------------------------------------------------ bool CbBtnCommon(void* pvGui,void *pvElemRef,gslc_teTouch eTouch,int16_t nX,int16_t nY); bool CbCheckbox(void* pvGui, void* pvElemRef, int16_t nSelId, bool bState); bool CbDrawScanner(void* pvGui,void* pvElemRef,gslc_teRedrawType eRedraw); bool CbKeypad(void* pvGui, void *pvElemRef, int16_t nState, void* pvData); bool CbListbox(void* pvGui, void* pvElemRef, int16_t nSelId); bool CbSlidePos(void* pvGui,void* pvElemRef,int16_t nPos); bool CbSpinner(void* pvGui, void *pvElemRef, int16_t nState, void* pvData); bool CbTickScanner(void* pvGui,void* pvScope); // ------------------------------------------------ // Create page elements // ------------------------------------------------ void InitGUIslice_gen() { gslc_tsElemRef* pElemRef = NULL; if (!gslc_Init(&m_gui,&m_drv,m_asPage,MAX_PAGE,m_asFont,MAX_FONT)) { return; } // ------------------------------------------------ // Load Fonts // ------------------------------------------------ // if (!gslc_FontSet(&m_gui,E_AO_NOTOMONO12PT7B,GSLC_FONTREF_PTR,&NotoMono12pt7b,1)) { return; } if (!gslc_FontSet(&m_gui,E_AO_NOTOMONO8PT7B,GSLC_FONTREF_PTR,&NotoMono8pt7b,1)) { return; } // // gslc_PageAdd(&m_gui,E_PG_MAIN,m_asPage1Elem,MAX_ELEM_PG_MAIN_RAM,m_asPage1ElemRef,MAX_ELEM_PG_MAIN); gslc_PageAdd(&m_gui,E_CONF_RPI,m_asPage2Elem,MAX_ELEM_CONF_RPI_RAM,m_asPage2ElemRef,MAX_ELEM_CONF_RPI); // NOTE: The current page defaults to the first page added. Here we explicitly // ensure that the main page is the correct page no matter the add order. gslc_SetPageCur(&m_gui,E_PG_MAIN); // Set Background to a flat color gslc_SetBkgndColor(&m_gui,GSLC_COL_BLACK); // ----------------------------------- // PAGE: E_PG_MAIN // Create progress bar E_ELEM_BATT_LEVEL pElemRef = gslc_ElemXProgressCreate(&m_gui,E_ELEM_BATT_LEVEL,E_PG_MAIN,&m_sXBarGauge1, (gslc_tsRect){263,5,50,15},0,100,0,GSLC_COL_GREEN,false); m_pElemBatteryLevel = pElemRef; // Create E_ELEM_STATUS text label pElemRef = gslc_ElemCreateTxt(&m_gui,E_ELEM_STATUS,E_PG_MAIN,(gslc_tsRect){2,2,250,21}, (char*)"UART0 / 1151200",0,E_AO_NOTOMONO8PT7B); gslc_ElemSetTxtCol(&m_gui,pElemRef,GSLC_COL_GREEN); m_pElemStatusText = pElemRef; // Create textbox pElemRef = gslc_ElemXTextboxCreate(&m_gui,E_ELEM_TEXT,E_PG_MAIN,&m_sTextbox1, (gslc_tsRect){3,30,313,202},E_AO_NOTOMONO8PT7B, (char*)&m_acTextboxBuf1,17,56); gslc_ElemXTextboxWrapSet(&m_gui,pElemRef,true); gslc_ElemSetTxtCol(&m_gui,pElemRef,GSLC_COL_GRAY_LT3); gslc_ElemSetCol(&m_gui,pElemRef,GSLC_COL_GRAY,GSLC_COL_BLACK,GSLC_COL_BLACK); m_pElemText = pElemRef; // ----------------------------------- // PAGE: E_CONF_RPI // Create E_ELEM_CONFIG_RPI_TITLE text label pElemRef = gslc_ElemCreateTxt(&m_gui,E_ELEM_CONFIG_RPI_TITLE,E_CONF_RPI,(gslc_tsRect){2,2,316,32}, (char*)"Raspberry Pi Config",0,E_AO_NOTOMONO12PT7B); gslc_ElemSetTxtAlign(&m_gui,pElemRef,GSLC_ALIGN_MID_MID); gslc_ElemSetTxtCol(&m_gui,pElemRef,GSLC_COL_GREEN); // Create E_ELEM_TEXT3 text label pElemRef = gslc_ElemCreateTxt(&m_gui,E_ELEM_TEXT3,E_CONF_RPI,(gslc_tsRect){2,40,40,21}, (char*)"UART",0,E_AO_NOTOMONO8PT7B); // Create E_ELEM_TEXT4 text label pElemRef = gslc_ElemCreateTxt(&m_gui,E_ELEM_TEXT4,E_CONF_RPI,(gslc_tsRect){2,120,120,21}, (char*)"Speed / Baud",0,E_AO_NOTOMONO8PT7B); // Create radio button E_ELEM_RD_UART5 pElemRef = gslc_ElemXCheckboxCreate(&m_gui,E_ELEM_RD_UART5,E_CONF_RPI,&m_asXRadio1, (gslc_tsRect){160,80,20,20},true,GSLCX_CHECKBOX_STYLE_ROUND,GSLC_COL_YELLOW,false); gslc_ElemSetGroup(&m_gui,pElemRef,E_GRP_UART); m_pElemRdUART5 = pElemRef; // Create radio button E_ELEM_RD_UART0 pElemRef = gslc_ElemXCheckboxCreate(&m_gui,E_ELEM_RD_UART0,E_CONF_RPI,&m_asXRadio2, (gslc_tsRect){10,80,20,20},true,GSLCX_CHECKBOX_STYLE_ROUND,GSLC_COL_YELLOW,true); gslc_ElemSetGroup(&m_gui,pElemRef,E_GRP_UART); m_pElemRdUART0 = pElemRef; // Create E_ELEM_TX_UART1 text label pElemRef = gslc_ElemCreateTxt(&m_gui,E_ELEM_TX_UART1,E_CONF_RPI,(gslc_tsRect){40,80,50,21}, (char*)"UART0",0,E_AO_NOTOMONO8PT7B); gslc_ElemSetTxtCol(&m_gui,pElemRef,GSLC_COL_GRAY_LT3); // Create E_ELEM_TX_UART5 text label pElemRef = gslc_ElemCreateTxt(&m_gui,E_ELEM_TX_UART5,E_CONF_RPI,(gslc_tsRect){190,80,50,21}, (char*)"UART5",0,E_AO_NOTOMONO8PT7B); gslc_ElemSetTxtCol(&m_gui,pElemRef,GSLC_COL_GRAY_LT3); // Create radio button E_ELEM_RD96 pElemRef = gslc_ElemXCheckboxCreate(&m_gui,E_ELEM_RD96,E_CONF_RPI,&m_asXRadio3, (gslc_tsRect){160,160,20,20},true,GSLCX_CHECKBOX_STYLE_ROUND,GSLC_COL_YELLOW,false); gslc_ElemSetGroup(&m_gui,pElemRef,E_GRP_SPD); m_pElemRd96 = pElemRef; // Create radio button E_ELEM_RD_1152 pElemRef = gslc_ElemXCheckboxCreate(&m_gui,E_ELEM_RD_1152,E_CONF_RPI,&m_asXRadio4, (gslc_tsRect){10,160,20,20},true,GSLCX_CHECKBOX_STYLE_ROUND,GSLC_COL_YELLOW,true); gslc_ElemSetGroup(&m_gui,pElemRef,E_GRP_SPD); m_pElemRd1152 = pElemRef; // Create E_ELEM_TX_1152 text label pElemRef = gslc_ElemCreateTxt(&m_gui,E_ELEM_TX_1152,E_CONF_RPI,(gslc_tsRect){40,160,60,21}, (char*)"115200",0,E_AO_NOTOMONO8PT7B); gslc_ElemSetTxtCol(&m_gui,pElemRef,GSLC_COL_GRAY_LT3); // Create E_ELEM_TX96 text label pElemRef = gslc_ElemCreateTxt(&m_gui,E_ELEM_TX96,E_CONF_RPI,(gslc_tsRect){190,160,40,21}, (char*)"9600",0,E_AO_NOTOMONO8PT7B); gslc_ElemSetTxtCol(&m_gui,pElemRef,GSLC_COL_GRAY_LT3); // // // } #endif // end _GUISLICE_GEN_H