summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/NMLVDISPINFO.java
blob: c4beef56e8871a71426e8ef77f440ffa7beb7957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*******************************************************************************
 * Copyright (c) 2000, 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.internal.win32;

public class NMLVDISPINFO extends NMHDR {
//	LVITEM item;
	/** @field accessor=item.mask */
	public int mask;
	/** @field accessor=item.iItem */
	public int iItem;
	/** @field accessor=item.iSubItem */
	public int iSubItem;
	/** @field accessor=item.state */
	public int state;
	/** @field accessor=item.stateMask */
	public int stateMask;
	/** @field accessor=item.pszText,cast=(LPTSTR) */
	public int /*long*/ pszText;
	/** @field accessor=item.cchTextMax */
	public int cchTextMax;
	/** @field accessor=item.iImage */
	public int iImage;
	/** @field accessor=item.lParam */
	public int /*long*/ lParam;
	/** @field accessor=item.iIndent */
	public int iIndent;
	/** @field accessor=item.iGroupId,flags=no_wince */
	public int iGroupId;
	/** @field accessor=item.cColumns,flags=no_wince */
	public int cColumns;
	/** @field accessor=item.puColumns,cast=(PUINT),flags=no_wince */
	public int /*long*/ puColumns;
	public static final int sizeof = !OS.IsWinCE && OS.WIN32_VERSION >= OS.VERSION (5, 1) ? OS.NMLVDISPINFO_sizeof () : 52;
}