]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.eclipse.swt.win32.win32.x86_64/src/org/eclipse/swt/internal/win32/NMLVCUSTOMDRAW.java
878d50bae847bee513caddb0ffdcee26f8f812bd
[simantics/platform.git] / bundles / org.eclipse.swt.win32.win32.x86_64 / src / org / eclipse / swt / internal / win32 / NMLVCUSTOMDRAW.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2008 IBM Corporation 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  *     IBM Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.swt.internal.win32;
15
16 public class NMLVCUSTOMDRAW extends NMCUSTOMDRAW {
17         public int clrText;
18         public int clrTextBk;
19         public int iSubItem;
20         public int dwItemType;
21         public int clrFace;
22         public int iIconEffect;
23         public int iIconPhase;
24         public int iPartId;
25         public int iStateId;
26 //      RECT rcText;
27         /** @field accessor=rcText.left */
28         public int rcText_left;
29         /** @field accessor=rcText.top */
30         public int rcText_top;
31         /** @field accessor=rcText.right */
32         public int rcText_right;
33         /** @field accessor=rcText.bottom */
34         public int rcText_bottom;
35         public int uAlign;
36         public static final int sizeof = OS.NMLVCUSTOMDRAW_sizeof ();
37 }