Difference between revisions of "Cursor"

From Lazarus wiki
Jump to navigationJump to search
(Don't use instance names within class code)
Line 1: Line 1:
 
{{Cursor}}
 
{{Cursor}}
<br>
+
 
Cursor - property of the TCursor Object.
+
 
 +
Cursor - [[Property|property]] of the TCursor Object.
  
 
==List of cursor constants==
 
==List of cursor constants==
Line 129: Line 130:
 
===Example 1: To View All The Cursor Types===
 
===Example 1: To View All The Cursor Types===
  
(1) On Form1, drag a ComboBox control onto the Form.
+
(1) On [[TForm|Form1]], drag a [[TComboBox|ComboBox]] control onto the Form.
  
 
(2) Set the ComboBox1, Items (TStrings) to the following:
 
(2) Set the ComboBox1, Items (TStrings) to the following:
  
crAppStart<br>
+
<syntaxhighlight>
crArrow<br>
+
crAppStart
crCross<br>
+
crArrow
crDefault<br>
+
crCross
crDrag<br>
+
crDefault
crHandPoint<br>
+
crDrag
crHelp<br>
+
crHandPoint
crHourGlass<br>
+
crHelp
crHSplit<br>
+
crHourGlass
crIBeam<br>
+
crHSplit
crMultiDrag<br>
+
crIBeam
crNo<br>
+
crMultiDrag
crNoDrop<br>
+
crNo
crNone<br>
+
crNoDrop
crSizeAll<br>
+
crNone
crSizeNESW<br>
+
crSizeAll
crSizeNS<br>
+
crSizeNESW
crSizeNWSE<br>
+
crSizeNS
crSizeWE<br>
+
crSizeNWSE
crSQLWait<br>
+
crSizeWE
crUpArrow<br>
+
crSQLWait
crVSplit<br><br>
+
crUpArrow
 +
crVSplit
 +
</syntaxhighlight>
 +
 
  
 
(3) On the ComboBox1Change procedure add this code:
 
(3) On the ComboBox1Change procedure add this code:
Line 222: Line 226:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
With the above example, in which you had Form1, as well as other controls on the form such as Memo1, Edit1, Image1, BitBtn, etc., this would change all but the BitBtn controls to the Hour Glass.  There are controls such as the TGroupBox, TPanel, that act as individual containers for controls, and these items must be addresses separately from the main Form in order to change their internal control set to a different cursor at runtime.
+
With the above example, in which you had Form1, as well as other controls on the form such as [[TMemo|Memo]], [[TEdit|Edit]], [[TImage|Image]], [[TBitBtn|BitBtn]], etc., this would change all but the BitBtn controls to the Hour Glass.  There are controls such as the [[TGroupBox]], [[TPanel]], that act as individual containers for controls, and these items must be addresses separately from the main Form in order to change their internal control set to a different cursor at [[runtime]].
 
 
[[Category:Lazarus]]
 
[[Category:GUI]]
 

Revision as of 16:49, 25 April 2019

Deutsch (de) English (en) suomi (fi)


Cursor - property of the TCursor Object.

List of cursor constants

Constant Integer value Shape
crDefault 0 crArrow.png
crNone -1 Invisible mouse pointer
crArrow -2 crArrow.png
crCross -3 crCross.png
crIBeam -4 crIBeam.png
crSize -22 crSize.png
crSizeNESW -6 crSizeNESW.png
crSizeNS -7 crSizeNS.png
crSizeNWSE -8 crSizeNWSE.png
crSizeWE -9 crSizeWE.png
crUpArrow -10 crUpArrow.png
crHourGlass -11 crHourGlass.png
crDrag -12 crDrag.png
crNoDrop -13 crNoDrop.png
crHSplit -14 crHSplit.png
crVSplit -15 crVSplit.png
crMultiDrag -16 crMultiDrag.png
crSQLWait -17 crSQLWait.png
crNo -18 CrNo.png
crAppStart -19 crAppStart.png
crHelp -20 crHelp.png
crHandPoint -21 crHandPoint.png



Examples

Example 1: To View All The Cursor Types

(1) On Form1, drag a ComboBox control onto the Form.

(2) Set the ComboBox1, Items (TStrings) to the following:

crAppStart
crArrow
crCross
crDefault
crDrag
crHandPoint
crHelp
crHourGlass
crHSplit
crIBeam
crMultiDrag
crNo
crNoDrop
crNone
crSizeAll
crSizeNESW
crSizeNS
crSizeNWSE
crSizeWE
crSQLWait
crUpArrow
crVSplit


(3) On the ComboBox1Change procedure add this code:

procedure TForm1.ComboBox1Change(Sender: TObject);
begin
     Cursor := StringToCursor(ComboBox1.Text);
end;

This will allow you to select the cursor type from the ComboBox and see it when you move the mouse over the Form. Only when you hover over the ComboBox will the cursor return to the default (crDefault).


Example 2: Change An Objects Cursor

procedure TForm1.FormCreate(Sender: TObject);
begin
     Cursor := crHourGlass;
     // Changes the Form1 cursor to an hour glass.

     Button1.Cursor := crHourGlass;
     // Changes the Button1 cursor to an hour glass.

     Memo1.Cursor := crHourGlass;
     // Changes the Memo1 cursor to an hour glass.
end;


Example 3: Change All Controls To An Hour Glass, Except TBitBtn Controls

procedure TForm1.FormCreate(Sender: TObject);
var
   I: Integer;
begin
     Cursor := crHourGlass;
     for I := 0 to ControlCount - 1 do
     begin
          if (Controls[I].ClassType <> TBitBtn) then
             Controls[I].Cursor := crHourGlass;
     end;
end;

However, if you had a GroupBox, you would have to address the controls within it separately.

procedure TForm1.FormCreate(Sender: TObject);
var
   I: Integer;
begin
     Cursor := crHourGlass;
     for I := 0 to ControlCount - 1 do
     begin
          if (Controls[I].ClassType <> TBitBtn) then
             Controls[I].Cursor := crHourGlass;
     end;
     for I := 0 to GroupBox1.ControlCount - 1 do
     begin
          if (GroupBox1.Controls[I].ClassType <> TBitBtn) then
             GroupBox1.Controls[I].Cursor := crHourGlass;
     end;
end;

With the above example, in which you had Form1, as well as other controls on the form such as Memo, Edit, Image, BitBtn, etc., this would change all but the BitBtn controls to the Hour Glass. There are controls such as the TGroupBox, TPanel, that act as individual containers for controls, and these items must be addresses separately from the main Form in order to change their internal control set to a different cursor at runtime.