summaryrefslogtreecommitdiffstats
path: root/bundles/org.eclipse.swt/Eclipse SWT PI/carbon/org/eclipse/swt/internal/carbon/ColorPickerInfo.java
blob: db9e0323fe73226b747fa4dff72c6ce2c1323265 (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
package org.eclipse.swt.internal.carbon;

/*
 * Copyright (c) 2000, 2002 IBM Corp.  All rights reserved.
 * This file is made available under the terms of the Common Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/cpl-v10.html
 */

public class ColorPickerInfo {
//	PMColor theColor;
	public int profile;
	public short red;
	public short green;
	public short blue;
	public int dstProfile;
	public int flags;
	public short placeWhere;
//	Point dialogOrigin
	public short h;
	public short v;
	public int pickerType;
	public int eventProc;
	public int colorProc;
	public int colorProcData;
//	Str255 prompt;
	public byte [] prompt = new byte [256];
//	PickerMenuItemInfo  mInfo;
	public short editMenuID;
	public short cutItem;
	public short copyItem;
	public short pasteItem;
	public short clearItem;
	public short undoItem;
	public boolean newColorChosen;
//	SInt8 filler;
	public static final int sizeof = 312;
}