diff dwtx/draw2d/Panel.d @ 98:95307ad235d9

Added Draw2d code, still work in progress
author Frank Benoit <benoit@tionex.de>
date Sun, 03 Aug 2008 00:52:14 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dwtx/draw2d/Panel.d	Sun Aug 03 00:52:14 2008 +0200
@@ -0,0 +1,41 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2005 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>
+ *******************************************************************************/
+module dwtx.draw2d.Panel;
+
+import dwt.dwthelper.utils;
+import dwtx.draw2d.Figure;
+
+/**
+ * A General purpose Container. This figure is opaque by default, and will fill its entire
+ * bounds with either the background color that is set on the figure, or the IGraphics
+ * current background color if none has been set.  Opaque figures help to optimize
+ * painting.
+ * <p>
+ * Note that the paintFigure() method in the superclass Figure actually fills the bounds
+ * of this figure.
+ */
+public class Panel
+    : Figure
+{
+
+/**
+ * Returns <code>true</code> as this is an opaque figure.
+ *
+ * @return the opaque state of this figure
+ * @since 2.0
+ */
+public bool isOpaque() {
+    return true;
+}
+
+}