-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Override the OSX scrollbar behavior for the image panel.
Forces the use of the "always visible" style of the scrollbars on the image panel, instead of the possible overlay style, which would hide portions of the image. Introduces a platform specific SwtUtil class inside the the SWT package, so it can easily access protected fields, which can be (sparingly) used to customize platform specific behavior. Fixes #1141
- Loading branch information
1 parent
e504768
commit 7a26dc5
Showing
4 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
gapic/src/platform/linux/org/eclipse/swt/widgets/SwtUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright (C) 2017 Google Inc. | ||
* | ||
* 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. | ||
*/ | ||
package org.eclipse.swt.widgets; | ||
|
||
public class SwtUtil { | ||
private SwtUtil() { | ||
} | ||
|
||
public static void disableAutoHideScrollbars(@SuppressWarnings("unused") Scrollable widget) { | ||
// Do nothing. | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
gapic/src/platform/osx/org/eclipse/swt/widgets/SwtUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
* Copyright (C) 2017 Google Inc. | ||
* | ||
* 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. | ||
*/ | ||
package org.eclipse.swt.widgets; | ||
|
||
import org.eclipse.swt.internal.cocoa.OS; | ||
|
||
public class SwtUtil { | ||
private SwtUtil() { | ||
} | ||
|
||
public static void disableAutoHideScrollbars(Scrollable widget) { | ||
if (OS.VERSION >= 0x1070) { | ||
OS.objc_msgSend(widget.scrollView.id, | ||
OS.sel_registerName("setScrollerStyle:"), 0 /* NSScrollerStyleLegacy */); | ||
widget.scrollView.setAutohidesScrollers(false); | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
gapic/src/platform/windows/org/eclipse/swt/widgets/SwtUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Copyright (C) 2017 Google Inc. | ||
* | ||
* 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. | ||
*/ | ||
package org.eclipse.swt.widgets; | ||
|
||
public class SwtUtil { | ||
private SwtUtil() { | ||
} | ||
|
||
public static void disableAutoHideScrollbars(@SuppressWarnings("unused") Scrollable widget) { | ||
// Do nothing. | ||
} | ||
} |