2021-06-13 14:43:23 +02:00
|
|
|
// Copyright 2021 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2023-07-22 11:11:58 +02:00
|
|
|
//go:build windows
|
|
|
|
|
2021-06-13 14:43:23 +02:00
|
|
|
package glfw
|
|
|
|
|
|
|
|
func ToCharModsCallback(cb func(window *Window, char rune, mods ModifierKey)) CharModsCallback {
|
2023-10-03 16:07:53 +02:00
|
|
|
return cb
|
2021-06-13 14:43:23 +02:00
|
|
|
}
|
|
|
|
|
2021-06-13 13:52:14 +02:00
|
|
|
func ToCloseCallback(cb func(window *Window)) CloseCallback {
|
2023-10-03 16:07:53 +02:00
|
|
|
return cb
|
2021-06-13 13:52:14 +02:00
|
|
|
}
|
|
|
|
|
2023-01-21 15:34:20 +01:00
|
|
|
func ToDropCallback(cb func(window *Window, names []string)) DropCallback {
|
2023-10-03 16:07:53 +02:00
|
|
|
return cb
|
2023-01-21 15:34:20 +01:00
|
|
|
}
|
|
|
|
|
2021-06-13 14:43:23 +02:00
|
|
|
func ToFramebufferSizeCallback(cb func(window *Window, width int, height int)) FramebufferSizeCallback {
|
2023-10-03 16:07:53 +02:00
|
|
|
return cb
|
2021-06-13 14:43:23 +02:00
|
|
|
}
|
|
|
|
|
2022-05-18 18:49:21 +02:00
|
|
|
func ToMonitorCallback(cb func(monitor *Monitor, event PeripheralEvent)) MonitorCallback {
|
2023-10-03 16:07:53 +02:00
|
|
|
return cb
|
2022-05-18 18:49:21 +02:00
|
|
|
}
|
|
|
|
|
2021-06-13 14:43:23 +02:00
|
|
|
func ToScrollCallback(cb func(window *Window, xoff float64, yoff float64)) ScrollCallback {
|
2023-10-03 16:07:53 +02:00
|
|
|
return cb
|
2021-06-13 14:43:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func ToSizeCallback(cb func(window *Window, width int, height int)) SizeCallback {
|
2023-10-03 16:07:53 +02:00
|
|
|
return cb
|
2021-06-13 14:43:23 +02:00
|
|
|
}
|