Index: b
- BACKSPACE_CHAR Enumerated value
- DebugMonitor class, in enum DebugMonitorConstants. The backspace character. Currently define to 8 (^H).
- BackupStatus Enumerated type
- PD class. The status of the backup battery.
- baddr Global data
- sys_info library. A pointer into memory. This type is deprecated. New code should not use it, and it will not appear in future versions.
- Base64Decoder class
- mime library.
- Base64Decoder(...) Member function
- Base64Decoder class. Class constructor.
- Base64Encoder class
- mime library.
- Base64Encoder(...) Member function
- Base64Encoder class. Class constructor.
- BaseStationPosition Struct
- CDMAVoiceCallManager class. CDMA gives the mobile latitude and longitude information of the base station, in units of 0.25 second, expressed as a signed number with positive...
- BaseTimer class
- kernel library. BaseTimer serves as class for all timer classes. Do not use a BaseTimer directly. Instead us one of its derived classes:Timer or RealTimer.
- BATTERY_FAILURE_SUSPEND_CAUSE Enumerated value
- PD class, in enum SuspendCause. An imminent battery failure is causing the suspend. Extra suspend causes not listed above:
- BATTERY_POWER_SOURCE Enumerated value
- PD class, in enum PowerSource. The device is powered by batteries.
- BATTERY_STATUS_CHANGE_WAKEUP_CAUSE Enumerated value
- PD class, in enum WakeupCause. A change in the battery status caused the wakeup.
- BatteryStatus Enumerated type
- PD class. The status of the main batteries.
- BatteryStatusChanged(...) Member function
- PowerListener class. Invoked when the battery status changes (either the main batteries or the backup batteries) or if the power source changes between AC power and...
- BatteryType Enumerated type
- PD class. The current type of main battery installed.
- BCT_CUSTOM_COLOR_MAP_16 Enumerated value
- graphics library, in enum BitmapColorType. Pixels are color map indices into a custom 16-bit color map.
- BCT_DEFAULT_COLOR_MAP_16 Enumerated value
- graphics library, in enum BitmapColorType. Pixels are color map indices into the system 16-bit default color map.
- BCT_GRAYSCALE Enumerated value
- graphics library, in enum BitmapColorType. Pixels are grayscale samples.
- BCT_MAX_BITMAP_COLOR_TYPE Global data
- graphics library. BCT_MAX_BITMAP_COLOR_TYPE is the maximum possible value of a BitmapColorType enum. It must be updated if the BitmapColorType enum is extended.
- BCT_MAX_BITMAP_COMPRESSION_TYPE Global data
- graphics library. BCT_MAX_BITMAP_COMPRESSION_TYPE is the maximum possible value of a BitmapColorType enum. It must be updated if the BitmapCompressionType enum is...
- BCT_NO_COMPRESSION Enumerated value
- graphics library, in enum BitmapCompressionType. Bitmap is not compressed
- BCT_ONE_COLOR Enumerated value
- graphics library, in enum BitmapColorType. Pixels are single bits. The bitmap is drawn in only one color:pixels with the value 1 are drawn in the foreground color passed to the drawing...
- BCT_RGB Enumerated value
- graphics library, in enum BitmapColorType. Pixels are RGB triples.
- BCT_RLE_COMPRESSION Enumerated value
- graphics library, in enum BitmapCompressionType. Bitmap uses run-length encoding compression
- BD_16_BITS_PER_PIXEL Enumerated value
- graphics library, in enum BitmapDepth. Each pixel occupies 16 bits.
- BD_1_BIT_PER_PIXEL Enumerated value
- graphics library, in enum BitmapDepth. Each pixel occupies 1 bit.
- BD_4_BITS_PER_PIXEL Enumerated value
- graphics library, in enum BitmapDepth. Each pixel occupies 4 bits.
- BD_8_BITS_PER_PIXEL Enumerated value
- graphics library, in enum BitmapDepth. Each pixel occupies 8 bits.
- BD_MAX_BITMAP_DEPTH Global data
- graphics library. BD_MAX_BITMAP_DEPTH is the maximum possible value of a BitmapDepth enum. It must be updated if the BitmapDepth enum is extended.
- BeforeMessage(...) Pure virtual member function
- RetrieveTracker class. Called by a Transport immediately before it retrieves a message. The "current"parameter is the "sequence number"of the message that is about to be...
- Begin(...) Member function
- NiftyTransport class. Begin() Begin a Nifty session by obtaining a data line connected to the modem.
- TenYenTransport class. Begins a TenYenTransport session by obtaining the system DataLine, which is used to communicate with the modem.
- Transport class. Acquires resources needed for opening connections. Begin() should be called before any call to Connect().
- Beginning(...) Member function
- SpoolListener class. Called immediately before Transport::Begin(). This is the first notification to be broadcast when a Transport is used.
- bind(...) Global function
- inet library. Bind an address to a socket.
- Bind(...) Member function
- IrdaClient class. Bind the client to the protocol stack and obtain an LSAP number. The client can choose an LSAP number by requesting the desired value or use the...
- bit32 Global data
- sys_info library. An unsigned 32-bit value. Use in preference to uint32 when the value is treated as a collection of bits rather than a number.
- bitfield Global data
- sys_info library. An unsigned integer. Use as the type for all bitfields.
- Bitmap class
- graphics library. The Bitmap class provides a way to create bitmaps and get all the information about them necessary for rendering.
- Bitmap(...) Member function
- Bitmap class. Creates a new bitmap object with no data.
- Bitmap class. Creates one Bitmap from another Bitmap.
- Bitmap class. Creates a new bitmap object.
- BitmapColorType Enumerated type
- graphics library. The BitmapColorType enum specifies how a bitmap represents color. This enum gets used in the colorType field of a BitmapHeaderFlags value.
- BitmapCompressionType Enumerated type
- graphics library. The BitmapCompressionType enum specifies what kind of compression, if any, has been used to encode a bitmap.
- BitmapDepth Enumerated type
- graphics library. The BitmapDepth enum specifies the number of bits per pixel in a given bitmap. This enum gets used in the depth field of a BitmapHeaderFlags value.
- BitmapFlagBits Global data
- graphics library. The BitmapFlagBits constants specify the number of bits assigned to each of the fields in a BitmapHeaderFlags value.
- BitmapFlagMask Global data
- graphics library. The BitmapFlagMask constants specify the bit mask to use for extracting a field from a BitmapHeaderFlags value once that field is sitting in the low...
- BitmapFlagShift Global data
- graphics library. The BitmapFlagShift constants specify how far to shift right to get each field in a BitmapHeaderFlags value into the low order bits.
- BitmapHeader Struct
- graphics library. The BitmapHeader structure is the first component of a Bitmap object's data blob. See below for a description of bitmap data layout and permissible...
- BitmapHeaderFlags Global data
- graphics library. The BitmapHeaderFlags specify what kind of data follows the BitmapHeader in a Bitmap's data blob. The flags are:
- BitmapMaskType Enumerated type
- graphics library. The BitmapMaskType enum specifies what mask, if any, should be used when drawing the bitmap. This enum gets used in the maskType field of a...
- BitmapWord Global data
- graphics library. A BitmapWord is the smallest native C++type that can hold a pixel in a Sprite. For native Sprite formats of 8 bits per pixel and smaller, it will be...
- BlitIn(...) Member function
- DisplayDriver class. Used to copy a bitmap to the screen. This is used by the graphics and window system to put sprites (the foundation of graphical windows) up on the...
- Block class
- data library. The Block class is a subclass of Data that simply stores a single block of memory.
- Block(...) Member function
- Block class. Class constructor.
- ~Block(...) Member function
- Block class. Class destructor.
- BMT_1_BIT_OPACITY Enumerated value
- graphics library, in enum BitmapMaskType. A 1-bit deep opacity mask immediately follows the BitmapHeader. This mask type is not implemented.
- BMT_MAX_BITMAP_MASK_TYPE Global data
- graphics library. BMT_MAX_BITMAP_MASK_TYPE is the maximum possible value of a BitmapMaskType enum. It must be updated if the BitmapMaskType enum is extended.
- BMT_NO_MASK Enumerated value
- graphics library, in enum BitmapMaskType. No mask exists.
- Boolean Enumerated type
- sys_info library. A Boolean value is used whenever something is either TRUE or FALSE. It is not used as a success or failure result code.
- _bottom Member data
- Insets class. The bottom inset size in pixels.
- bottom Member data
- WinRectangle class. The coordinate of the bottom edge of the rectangle.
- bounds Struct field
- ink library, in struct INK_PENDATA_RECORD. The bounds of the pendata.
- BringToForeground(...) Member function
- AppCachePolicy class. Invoked when ApplicationCache::SwitchTo() is called, passing the UAL of an already-loaded application.
- BringToFront(...) Member function
- Window class. Move this Window in front of any of its siblings of the same priority. This is not guaranteed to make the Window visible to the user, as other...
- Broadcast(...) Member function
- Broadcaster class. Sends a notification to every object on the list. This invokes DispatchNotification() for each listener that is currently registered.
- DatabaseMailboxManager class. Broadcasts an event to registered MailboxListeners of the given mailbox. This is used by MailboxView to notify interested parties of changes in a...
- Broadcaster class
- broadcast library. The Broadcaster class implements a list that objects derived from the BroadcastListener class can add themselves to.
- Broadcaster(...) Member function
- Broadcaster class. Class constructor. This initializes the list needed to hold the listeners.
- ~Broadcaster(...) Member function
- Broadcaster class. Class destructor. Currently only does error checking to make sure that there are no BroadcastListeners registered with this object.
- BroadcastFunction(...) Global function
- broadcast library. BroadcastFunction is the function type that is passed to Broadcaster::Broadcast(). It is invoked on the thread associated with each registered...
- BroadcastListener class
- broadcast library. BroadcastListener is the base class of all listener classes that receive events from remote threads. It ties in with the Broadcaster class, to...
- BroadcastListener(...) Member function
- BroadcastListener class. Constructor for BroadcastListener objects.
- BroadcastListener class. Copy constructor for BroadcastListener objects. We create a special copy constructor to avoid problems with copying objects that are currently...
- ~BroadcastListener(...) Member function
- BroadcastListener class. Destructor for BroadcastListener objects. We make it virtual here so the derived class destructors are sure to be called.
- BrushLine(...) Member function
- FlexComponent class. Brush a line of variable thickness. Pen is centered along line path.
- Window class. Draw one line segment of given width. The line is drawn as a sequence of squares and is centered along the line path.
- BuildIndex(...) Member function
- Database class. Builds a single-field index. This is a simplified case of building a multifield (MF) index. After the index is built, it can be set as the current...
- BuildMultiFieldIndex(...) Member function
- Database class. Builds a multifield index according to the index definition. The number of fields must be greater than 0.
- BUTTON_IN_TOOLBAR Enumerated value
- demoui library, in enum JLFButtonLookHint. A Button with square corners.
- BUTTON_ON_RIGHT_SIDE_OF_SCREEN Enumerated value
- demoui library, in enum JLFButtonLookHint. Non-resizable 3d type Button.
- BUTTON_WITH_ROUNDED_CORNERS Enumerated value
- demoui library, in enum JLFButtonLookHint. A Button with rounded corners.
- BUTTON_WITH_SQUARE_CORNERS Enumerated value
- demoui library, in enum JLFButtonLookHint. A Button with square corners.
- BytesFilled(...) Member function
- Connection class. Get number of bytes available to read from the input stream.
- Stream class. Get the number of bytes filled in the stream buffer that is available for reading. Usually this function is used by the reader as it attempts to...
- BytesFree(...) Member function
- Connection class. Get the number of bytes free in the output stream buffer for writing.
- Stream class. Get the number of bytes free in the stream buffer for writing. Usually this function is used by the writer as it attempts to determine how much room...