Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorConrad Groth2016-04-13 21:24:56 +0000
committerNiraj Modi2017-02-24 07:23:03 +0000
commitd2034277b3c3ab9670f89a215e782d65948d9ccb (patch)
treed97c20cf099d735a840eed3d2216cd5827ef9452 /bundles/org.eclipse.swt/Eclipse SWT PI/win32
parenta831839544ed12577187886e8af398f62f99ce1f (diff)
downloadeclipse.platform.swt-d2034277b3c3ab9670f89a215e782d65948d9ccb.tar.gz
eclipse.platform.swt-d2034277b3c3ab9670f89a215e782d65948d9ccb.tar.xz
eclipse.platform.swt-d2034277b3c3ab9670f89a215e782d65948d9ccb.zip
Bug 384906 - [FEEP] [CSS] Allow styling of table headers via CSS
the header is custom drawn, if a custom background was set. Also images, sort indicators and header cell separators have to be drawn by us. Change-Id: I92819be88f50f85c8dbea62efbea877150365dc9 Signed-off-by: Conrad Groth <info@conrad-groth.de>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
index 3ef3775295..4d5b9bddcd 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OS.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2017 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
@@ -779,6 +779,7 @@ public class OS extends C {
public static final int HDF_JUSTIFYMASK = 0x3;
public static final int HDF_IMAGE = 0x0800;
public static final int HDF_LEFT = 0;
+ public static final int HDF_OWNERDRAW = 0x8000;
public static final int HDF_RIGHT = 1;
public static final int HDF_SORTUP = 0x0400;
public static final int HDF_SORTDOWN = 0x0200;
@@ -828,9 +829,15 @@ public class OS extends C {
public static final int HDN_ITEMDBLCLICKA = HDN_FIRST - 3;
public static final int HDN_ITEMDBLCLICK = IsUnicode ? HDN_ITEMDBLCLICKW : HDN_ITEMDBLCLICKA;
public static final int HDS_BUTTONS = 0x2;
+ public static final int HDS_CHECKBOXES = 0x400;
public static final int HDS_DRAGDROP = 0x0040;
+ public static final int HDS_FILTERBAR = 0x100;
+ public static final int HDS_FLAT = 0x200;
public static final int HDS_FULLDRAG = 0x80;
public static final int HDS_HIDDEN = 0x8;
+ public static final int HDS_HOTTRACK = 0x4;
+ public static final int HDS_NOSIZING = 0x800;
+ public static final int HDS_OVERFLOW = 0x1000;
// public static final int HEAP_ZERO_MEMORY = 0x8;
public static final int HELPINFO_MENUITEM = 0x2;
public static final int HHT_ONDIVIDER = 0x4;

Back to the top