Audacity 3.2.0
Enumerations
RefreshCode Namespace Reference

Namespace containing an enum 'what to do on a refresh?'. More...

Enumerations

enum  {
  RefreshNone = 0 , Cancelled = 0x1 , RefreshCell = 0x2 , RefreshLatestCell = 0x4 ,
  RefreshAll = 0x8 , FixScrollbars = 0x10 , Resize = 0x20 , UpdateVRuler = 0x80 ,
  EnsureVisible = 0x100 , DrawOverlays = 0x200 , DestroyedCell = 0x8000
}
 

Detailed Description

Namespace containing an enum 'what to do on a refresh?'.

Enumeration Type Documentation

◆ anonymous enum

anonymous enum
Enumerator
RefreshNone 
Cancelled 
RefreshCell 
RefreshLatestCell 
RefreshAll 
FixScrollbars 
Resize 
UpdateVRuler 
EnsureVisible 
DrawOverlays 
DestroyedCell 

Definition at line 20 of file RefreshCode.h.

20 {
21 RefreshNone = 0,
22
23 Cancelled = 0x1,
24 RefreshCell = 0x2, // Refresh the cell passed to Click()
25 RefreshLatestCell = 0x4, // Refresh the cell passed to latest call
26 RefreshAll = 0x8,
27 FixScrollbars = 0x10,
28 Resize = 0x20,
29 /* 0x40 not used */
30 UpdateVRuler = 0x80, // of the clicked track
31 EnsureVisible = 0x100, // for the clicked track
32 DrawOverlays = 0x200,
33
34 DestroyedCell = 0x8000, // true if the CLICKED cell was destroyed
35 };
@ RefreshLatestCell
Definition: RefreshCode.h:25