OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
aWindowEventHandler.h
Go to the documentation of this file.
1/*
2 * File: aWindowEventHandler.h
3 * Package: akGui
4 *
5 * Created on: November 09, 2020
6 * Author: Alexander Kuester
7 * Copyright (c) 2022 Alexander Kuester
8 * This file is part of the uiCore component.
9 * This file is subject to the terms and conditions defined in
10 * file 'LICENSE', which is part of this source code package.
11 */
12
13#pragma once
14
15 // AK header
17
18namespace ak {
20 public:
22
24
25 // ###################################################################################
26
27 // Event handling routines
28
31 virtual bool closeEvent(void) { return true; }
32 };
33}
#define UICORE_API_EXPORT
Definition globalDataTypes.h:20
Definition aWindowEventHandler.h:19
virtual bool closeEvent(void)
This function will be called by the window when the closeEvent occurs If the return value is true the...
Definition aWindowEventHandler.h:31
aWindowEventHandler()
Definition aWindowEventHandler.h:21
virtual ~aWindowEventHandler()
Definition aWindowEventHandler.h:23
Definition uiAPI.h:45