mirror of https://github.com/odrling/Aegisub
Add options to commit or reverse video zoom
This commit is contained in:
parent
fa33b07c7f
commit
c07a648270
|
@ -584,6 +584,8 @@
|
|||
},
|
||||
|
||||
"Video" : {
|
||||
"Disable Scroll Zoom" : false,
|
||||
"Reverse Zoom" : false,
|
||||
"Default Zoom" : 7,
|
||||
"Detached" : {
|
||||
"Enabled" : false,
|
||||
|
|
|
@ -584,6 +584,8 @@
|
|||
},
|
||||
|
||||
"Video" : {
|
||||
"Disable Scroll Zoom" : false,
|
||||
"Reverse Zoom" : false,
|
||||
"Default Zoom" : 7,
|
||||
"Detached" : {
|
||||
"Enabled" : false,
|
||||
|
|
|
@ -174,6 +174,9 @@ void Video(wxTreebook *book, Preferences *parent) {
|
|||
p->CellSkip(general);
|
||||
p->OptionAdd(general, _("Automatically open audio when opening video"), "Video/Open Audio");
|
||||
p->CellSkip(general);
|
||||
p->OptionAdd(general, _("Disable zooming with scroll bar"), "Video/Disable Scroll Zoom")
|
||||
->SetToolTip("Makes the scroll bar not zoom the video. Useful when using a track pad that often scrolls accidentally.");
|
||||
p->OptionAdd(general, _("Reverse zoom direction"), "Video/Reverse Zoom");
|
||||
|
||||
const wxString czoom_arr[24] = { "12.5%", "25%", "37.5%", "50%", "62.5%", "75%", "87.5%", "100%", "112.5%", "125%", "137.5%", "150%", "162.5%", "175%", "187.5%", "200%", "212.5%", "225%", "237.5%", "250%", "262.5%", "275%", "287.5%", "300%" };
|
||||
wxArrayString choice_zoom(24, czoom_arr);
|
||||
|
|
|
@ -409,7 +409,10 @@ void VideoDisplay::OnMouseLeave(wxMouseEvent& event) {
|
|||
void VideoDisplay::OnMouseWheel(wxMouseEvent& event) {
|
||||
bool videoPan = OPT_GET("Video/Video Pan")->GetBool();
|
||||
if (int wheel = event.GetWheelRotation()) {
|
||||
if (ForwardMouseWheelEvent(this, event)) {
|
||||
if (ForwardMouseWheelEvent(this, event) && !OPT_GET("Video/Disable Scroll Zoom")->GetBool()) {
|
||||
if (OPT_GET("Video/Reverse Zoom")->GetBool()) {
|
||||
wheel = -wheel;
|
||||
}
|
||||
if (!videoPan || (event.ControlDown() == OPT_GET("Video/Default to Video Zoom")->GetBool())) {
|
||||
SetWindowZoom(windowZoomValue + .125 * (wheel / event.GetWheelDelta()));
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue