#include <blobs.h>
Public Member Functions | |
BlobStyle () | |
Default constructor for the blob style which sets all the types of blob to FALSE. | |
BlobStyle (BOOL BObject, BOOL BArtistic=FALSE, BOOL BFill=FALSE, BOOL BTiny=FALSE, BOOL BPen=FALSE, BOOL BToolObject=FALSE, BOOL BEffect=FALSE) | |
~BlobStyle () | |
void | SetAll () |
Sets all the blobs type flags to TRUE. | |
void | SetNone () |
Sets all the blobs styles to false. | |
Public Attributes | |
UINT32 | Fill: 1 |
UINT32 | Object: 1 |
UINT32 | Artistic: 1 |
UINT32 | Tiny: 1 |
UINT32 | Pen: 1 |
UINT32 | ToolObject: 1 |
UINT32 | Effect: 1 |
Definition at line 134 of file blobs.h.
|
Default constructor for the blob style which sets all the types of blob to FALSE.
Definition at line 140 of file blobs.cpp. 00141 { 00142 // Set all the blobs to false 00143 Object = Artistic = Fill = Tiny = Pen = ToolObject = Effect = FALSE; 00144 }
|
|
Definition at line 167 of file blobs.cpp. 00169 { 00170 // Set the blobs that are required 00171 Object = BObject; 00172 Artistic = BArtistic; 00173 Fill = BFill; 00174 Tiny = BTiny; 00175 Pen = BPen; 00176 ToolObject = BToolObject; 00177 Effect = BEffect; 00178 }
|
|
Definition at line 141 of file blobs.h.
|
|
Sets all the blobs type flags to TRUE.
Definition at line 153 of file blobs.h.
|
|
Sets all the blobs styles to false.
Definition at line 165 of file blobs.h.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|