org.eclipse.swt.custom.CCombo

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 Port to the D programming language: Frank Benoit <benoit@tionex.de>

Members

Classes

CCombo
class CCombo

The CCombo class represents a selectable user interface object that combines a text field and a list and issues notification when an item is selected from the list. <p> CCombo was written to work around certain limitations in the native combo box. Specifically, on win32, the height of a CCombo can be set; attempts to set the height of a Combo are ignored. CCombo can be used anywhere that having the increased flexibility is more important than getting native L&F, but the decision should not be taken lightly. There is no is no strict requirement that CCombo look or behave the same as the native combo box. </p> <p> Note that although this class is a subclass of <code>Composite</code>, it does not make sense to add children to it, or set a layout on it. </p> <dl> <dt><b>Styles:</b> <dd>BORDER, READ_ONLY, FLAT</dd> <dt><b>Events:</b> <dd>DefaultSelection, Modify, Selection, Verify</dd> </dl>

Meta