mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-02-04 07:13:16 +08:00
140 lines
4.8 KiB
C
140 lines
4.8 KiB
C
//============================================================================
|
|
// QWIN GUI facilities for building realistic embedded front panels
|
|
// Version 8.0.2
|
|
//
|
|
// Copyright (C) 2005 Quantum Leaps, LLC. All rights reserved.
|
|
//
|
|
// Q u a n t u m L e a P s
|
|
// ------------------------
|
|
// Modern Embedded Software
|
|
//
|
|
// 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 (GPL) or under the terms of one of the closed-
|
|
// source Quantum Leaps commercial licenses.
|
|
//
|
|
// Redistributions in source code must retain this top-level comment block.
|
|
// Plagiarizing this software to sidestep the license obligations is illegal.
|
|
//
|
|
// NOTE:
|
|
// The GPL does NOT permit the incorporation of this code into proprietary
|
|
// programs. Please contact Quantum Leaps for commercial licensing options,
|
|
// which expressly supersede the GPL and are designed explicitly for
|
|
// closed-source distribution.
|
|
//
|
|
// Quantum Leaps contact information:
|
|
// <www.state-machine.com/licensing>
|
|
// <info@state-machine.com>
|
|
//============================================================================
|
|
#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
|