comparison dwt/widgets/Caret.d @ 37:c86fc3d50cfa

Decorations
author Frank Benoit <benoit@tionex.de>
date Thu, 10 Jan 2008 05:17:47 +0100
parents ffa3c27c4328
children ecf39b275c8d
comparison
equal deleted inserted replaced
36:f0cac58ac62b 37:c86fc3d50cfa
7 * 7 *
8 * Contributors: 8 * Contributors:
9 * IBM Corporation - initial API and implementation 9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/ 10 *******************************************************************************/
11 module dwt.widgets.Caret; 11 module dwt.widgets.Caret;
12 12 import dwt.graphics.Font;
13 class Caret{ 13 class Caret{
14 int blinkRate; 14 int blinkRate;
15 bool blinkCaret(); 15 bool blinkCaret();
16 int x, y, width, height;
17
18 bool isFocusCaret () ;
19 void killFocus () ;
20 void setFocus ();
21 void release(bool);
22 bool isDisposed();
23 public void setFont (Font font) ;
16 } 24 }
17 /+++ 25 /+++
18 26
19 import dwt.*; 27 import dwt.*;
20 import dwt.internal.gtk.*; 28 import dwt.internal.gtk.*;