]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/win32/NMTBCUSTOMDRAW.java
Work around SWT 4.13 - 4.18 Win32 DnD bug 567422
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / internal / win32 / NMTBCUSTOMDRAW.java
1 /*******************************************************************************
2  * Copyright (c) 2017, 2017 Conrad Groth and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     Conrad Groth - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.swt.internal.win32;
15
16 public class NMTBCUSTOMDRAW extends NMCUSTOMDRAW {
17         public NMCUSTOMDRAW nmcd;
18         /** @field cast=(HBRUSH) */
19         public long hbrMonoDither;
20         /** @field cast=(HBRUSH) */
21         public long hbrLines;
22         /** @field cast=(HPEN) */
23         public long hpenLines;
24         public int clrText;
25         public int clrMark;
26         public int clrTextHighlight;
27         public int clrBtnFace;
28         public int clrBtnHighlight;
29         public int clrHighlightHotTrack;
30         // RECT rcText;
31         /** @field accessor=rcText.left */
32         public int rcText_left;
33         /** @field accessor=rcText.top */
34         public int rcText_top;
35         /** @field accessor=rcText.right */
36         public int rcText_right;
37         /** @field accessor=rcText.bottom */
38         public int rcText_bottom;
39         public int nStringBkMode;
40         public int nHLStringBkMode;
41         public int iListGap;
42         public static final int sizeof = OS.NMTBCUSTOMDRAW_sizeof ();
43 }