/********************************************************************* * SEGGER Microcontroller GmbH * * Solutions for real time microcontroller applications * ********************************************************************** * * * (c) 1996 - 2021 SEGGER Microcontroller GmbH * * * * Internet: www.segger.com Support: support@segger.com * * * ********************************************************************** ** emWin V6.24 - Graphical user interface for embedded applications ** All Intellectual Property rights in the Software belongs to SEGGER. emWin is protected by international copyright laws. Knowledge of the source code may not be used to write a similar product. This file may only be used in accordance with the following terms: The software has been licensed to ARM LIMITED whose registered office is situated at 110 Fulbourn Road, Cambridge CB1 9NJ, England solely for the purposes of creating libraries for ARM7, ARM9, Cortex-M series, and Cortex-R4 processor-based devices, sublicensed and distributed as part of the MDK-ARM Professional under the terms and conditions of the End User License supplied with the MDK-ARM Professional. Full source code is available at: www.segger.com We appreciate your understanding and fairness. ---------------------------------------------------------------------- Licensing information Licensor: SEGGER Software GmbH Licensed to: ARM Ltd, 110 Fulbourn Road, CB1 9NJ Cambridge, UK Licensed SEGGER software: emWin License number: GUI-00181 License model: LES-SLA-20007, Agreement, effective since October 1st 2011 Licensed product: MDK-ARM Professional Licensed platform: ARM7/9, Cortex-M/R4 Licensed number of seats: - ---------------------------------------------------------------------- File : QRCODE.h Purpose : QRCODE public header file (API) --------------------END-OF-HEADER------------------------------------- */ #ifndef QRCODE_H #define QRCODE_H #include "WM.h" #include "DIALOG_Type.h" /* Req. for Create indirect data structure */ #include "WIDGET.h" #if GUI_WINSUPPORT #if defined(__cplusplus) extern "C" { /* Make sure we have C-declarations in C++ programs */ #endif /********************************************************************* * * Defines * ********************************************************************** */ /********************************************************************* * * QRCODE WiFi encryption types * * Description * These macros are to be used for the \a{Encryption} parameter of * QRCODE_SetWiFiText(). */ #define QRCODE_WIFI_WPA 0 // If the WiFi password is WPA encrypted. #define QRCODE_WIFI_WEP 1 // If the WiFi password is WEP encrypted. /********************************************************************* * * Types * ********************************************************************** */ typedef WM_HMEM QRCODE_Handle; /********************************************************************* * * Create function(s) Note: the parameters to a create function may vary. Some widgets may have multiple create functions */ QRCODE_Handle QRCODE_CreateUser (int x0, int y0, int xSize, int ySize, WM_HWIN hParent, U32 WinFlags, int ExFlags, int Id, const char * pText, int PixelSize, int EccLevel, int Version, int NumExtraBytes); QRCODE_Handle QRCODE_CreateIndirect(const GUI_WIDGET_CREATE_INFO * pCreateInfo, WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK * cb); /********************************************************************* * * The callback ... * * Do not call it directly ! It is only to be used from within an * overwritten callback. */ void QRCODE_Callback(WM_MESSAGE *pMsg); /********************************************************************* * * Member functions * ********************************************************************** */ void QRCODE_SetEccLevel (QRCODE_Handle hObj, int EccLevel); void QRCODE_SetNumModules(QRCODE_Handle hObj, int NumModules); void QRCODE_SetPixelSize (QRCODE_Handle hObj, int PixelSize); void QRCODE_SetText (QRCODE_Handle hObj, const char * pText); void QRCODE_SetVersion (QRCODE_Handle hObj, int Version); void QRCODE_SetWiFiText (QRCODE_Handle hObj, const char * pSSID, U8 Encryption, const char * pPassword, U8 Hidden); #if defined(__cplusplus) } #endif #endif // GUI_WINSUPPORT #endif // QRCODE_H /*************************** End of file ****************************/