mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-02-04 07:13:16 +08:00
7.1.3 Replaced QF_EVT_REF_CTR_INC_() with QEvt_refCtr_inc_() in ports - embOS - ESP-IDF - Qt 7.1.3 7.1.3 7.1.3 7.1.3 7.1.3 7.1.3 7.1.2 first commit after fixing history Revert "7.1.2" This reverts commit 90cf4e1471b5e9c0853af97af8ec0bc67c7e19c6. 7.1.2 first commit after fixing the history 7.0.1
142 lines
4.8 KiB
C
142 lines
4.8 KiB
C
/*============================================================================
|
|
* QP/C Real-Time Embedded Framework (RTEF)
|
|
* Copyright (C) 2005 Quantum Leaps, LLC. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-QL-commercial
|
|
*
|
|
* This software is dual-licensed under the terms of the open source GNU
|
|
* General Public License version 3 (or any later version), or alternatively,
|
|
* under the terms of one of the closed source Quantum Leaps commercial
|
|
* licenses.
|
|
*
|
|
* The terms of the open source GNU General Public License version 3
|
|
* can be found at: <www.gnu.org/licenses/gpl-3.0>
|
|
*
|
|
* The terms of the closed source Quantum Leaps commercial licenses
|
|
* can be found at: <www.state-machine.com/licensing>
|
|
*
|
|
* Redistributions in source code must retain this top-level comment block.
|
|
* Plagiarizing this software to sidestep the license obligations is illegal.
|
|
*
|
|
* Contact information:
|
|
* <www.state-machine.com>
|
|
* <info@state-machine.com>
|
|
============================================================================*/
|
|
/*!
|
|
* @date Last updated on: 2022-06-12
|
|
* @version Last updated for: @ref qpc_7_0_1
|
|
*
|
|
* @file
|
|
* @brief QWIN GUI facilities for building realistic embedded front panels
|
|
*/
|
|
#ifndef QWIN_GUI_H
|
|
#define QWIN_GUI_H
|
|
|
|
#ifndef QWIN_GUI
|
|
#error The pre-processor macro QWIN_GUI must be defined
|
|
#endif
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h> /* Win32 API */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* create the custom dialog hosting the embedded front panel ...............*/
|
|
HWND CreateCustDialog(HINSTANCE hInst, int iDlg, HWND hParent,
|
|
WNDPROC lpfnWndProc, LPCTSTR lpWndClass);
|
|
|
|
/* OwnerDrawnButton "class" ................................................*/
|
|
typedef struct {
|
|
UINT itemID;
|
|
HBITMAP hBitmapUp;
|
|
HBITMAP hBitmapDown;
|
|
HCURSOR hCursor;
|
|
int isDepressed;
|
|
} OwnerDrawnButton;
|
|
|
|
enum OwnerDrawnButtonAction {
|
|
BTN_NOACTION,
|
|
BTN_PAINTED,
|
|
BTN_DEPRESSED,
|
|
BTN_RELEASED
|
|
};
|
|
|
|
void OwnerDrawnButton_init(OwnerDrawnButton * const me,
|
|
UINT itemID,
|
|
HBITMAP hBitmapUp, HBITMAP hBitmapDwn,
|
|
HCURSOR hCursor);
|
|
void OwnerDrawnButton_xtor(OwnerDrawnButton * const me);
|
|
enum OwnerDrawnButtonAction OwnerDrawnButton_draw(
|
|
OwnerDrawnButton * const me,
|
|
LPDRAWITEMSTRUCT lpdis);
|
|
void OwnerDrawnButton_set(OwnerDrawnButton * const me,
|
|
int isDepressed);
|
|
BOOL OwnerDrawnButton_isDepressed(OwnerDrawnButton const * const me);
|
|
|
|
/* GraphicDisplay "class" for drawing graphic displays
|
|
* with up to 24-bit color...
|
|
*/
|
|
typedef struct {
|
|
HDC src_hDC;
|
|
int src_width;
|
|
int src_height;
|
|
HDC dst_hDC;
|
|
int dst_width;
|
|
int dst_height;
|
|
HWND hItem;
|
|
HBITMAP hBitmap;
|
|
BYTE *bits;
|
|
BYTE bgColor[3];
|
|
} GraphicDisplay;
|
|
|
|
void GraphicDisplay_init(GraphicDisplay * const me,
|
|
UINT width, UINT height,
|
|
UINT itemID, BYTE const bgColor[3]);
|
|
void GraphicDisplay_xtor(GraphicDisplay * const me);
|
|
void GraphicDisplay_clear(GraphicDisplay * const me);
|
|
void GraphicDisplay_redraw(GraphicDisplay * const me);
|
|
#define GraphicDisplay_setPixel(me_, x_, y_, color_) do { \
|
|
BYTE *pixelRGB = &(me_)->bits[3*((x_) \
|
|
+ (me_)->src_width * ((me_)->src_height - 1U - (y_)))]; \
|
|
pixelRGB[0] = (color_)[0]; \
|
|
pixelRGB[1] = (color_)[1]; \
|
|
pixelRGB[2] = (color_)[2]; \
|
|
} while (false)
|
|
|
|
#define GraphicDisplay_clearPixel(me_, x_, y_) do { \
|
|
BYTE *pixelRGB = &(me_)->bits[3*((x_) \
|
|
+ (me_)->src_width * ((me_)->src_height - 1U - (y_)))]; \
|
|
pixelRGB[0] = (me_)->bgColor[0]; \
|
|
pixelRGB[1] = (me_)->bgColor[1]; \
|
|
pixelRGB[2] = (me_)->bgColor[2]; \
|
|
} while (false)
|
|
|
|
/* SegmentDisplay "class" for drawing segment displays, LEDs, etc...........*/
|
|
typedef struct {
|
|
HWND *hSegment; /* array of segment controls */
|
|
UINT segmentNum; /* number of segments */
|
|
HBITMAP *hBitmap; /* array of bitmap handles */
|
|
UINT bitmapNum; /* number of bitmaps */
|
|
} SegmentDisplay;
|
|
|
|
void SegmentDisplay_init(SegmentDisplay * const me,
|
|
UINT segNum, UINT bitmapNum);
|
|
void SegmentDisplay_xtor(SegmentDisplay * const me);
|
|
BOOL SegmentDisplay_initSegment(SegmentDisplay * const me,
|
|
UINT segmentNum, UINT segmentID);
|
|
BOOL SegmentDisplay_initBitmap(SegmentDisplay * const me,
|
|
UINT bitmapNum, HBITMAP hBitmap);
|
|
BOOL SegmentDisplay_setSegment(SegmentDisplay * const me,
|
|
UINT segmentNum, UINT bitmapNum);
|
|
|
|
/* useful helper functions .................................................*/
|
|
void DrawBitmap(HDC hdc, HBITMAP hBitmap, int xStart, int yStart);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* QWIN_GUI_H */
|