mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 03:32:28 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
19
src/app/mac/WindowCallbacks.h
Normal file
19
src/app/mac/WindowCallbacks.h
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#ifndef APP_MAC_WINDOW_CALLBACKS_H
|
||||
#define APP_MAC_WINDOW_CALLBACKS_H
|
||||
|
||||
#include <cstdint>
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
void MacOnKeyDown(NSEvent*);
|
||||
|
||||
void MacOnKeyUp(NSEvent*);
|
||||
|
||||
void MacOnMouseDown(int16_t, int32_t, int32_t);
|
||||
|
||||
void MacOnMouseMoved(int32_t, int32_t);
|
||||
|
||||
void MacOnMouseUp(int16_t, int32_t, int32_t);
|
||||
|
||||
void MacOnResized(int32_t width, int32_t height, bool a3);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue