Index: m
- MailboxListener class
- uma library. The MailboxListener class is used to gather notifications for mailbox events. Each instance of MailboxListener may Register() to receive...
- MailboxName(...) Member function
- MailboxView class. Gets the name of the mailbox viewed by this MailboxView.
- MailboxView class
- uma library.
- ~MailboxView(...) Member function
- MailboxView class. The destructor performs any necessary cleanup.
- MakeNonSprite(...) Member function
- Window class. Make this window a non-sprite (dull) window. This method always clears the user's clipping rectangle. It is valid to call this function only when...
- MakeSprite(...) Member function
- Window class. Make this window a sprite window. Must be called when the window's visible flag is false. This will not actually allocate the sprite, but when this...
- MakeSpritePixel(...) Global function
- graphics library. Creates a sprite pixel from an RGB triplet.
- graphics library. Creates a sprite pixel from a Colorant.
- MakeVisible(...) Member function
- FlexList class. MakeVisible insures that the item at the index position in the FlexList is visible. If the item is already visible no change in the FlexList takes...
- Malloc(...) Member function
- Allocator class. Allocates a region of memory large enough to hold an object of "size"bytes. A pointer to the beginning of the region is returned.
- RAMAllocator class. Allocates a region of memory large enough to hold an object of size bytes. A pointer to the beginning of the region is returned.
- malloc_t Global data
- sys_info library. The pointer type used by memory allocation routines such as malloc() and realloc().
- mallocBackup Struct field
- kernel library, in struct MessagePoolFlags. If set, use malloc if the pool is empty.
- MallocH(...) Global function
- pos library. This is a convenience routine that calls the corresponding method on the global heap DataMap, theHeapDataMap.
- MallocH(...) Member function
- Block class. Allocates a data block of the specified size. This method can be called only if there is no data block currently allocated for the Block object.
- DataMap class. Allocates a region of memory large enough to hold an object of size bytes. A handle is returned.
- MapKeyToNavigation(...) Pure virtual member function
- UIFactory class. Maps keyboard characters into focus navigation events.
- MarkDirtyBounds(...) Member function
- Renderer class. Mark a given rectangle of the sprite "dirty."This will cause the next graphics system update to copy this portion of the sprite bitmap to the screen.
- Match(...) Global function
- comms library. Match one of a given set of strings, within the specified timeout. Match() reads, a byte at a time, from the given connection, attempting to match...
- MatchCommand(...) Member function
- DebugCommand class. MatchCommand will return a pointer to the debug command associated with a particular token. The token shouldn't be over MAX_TOKEN_LENGTH in length...
- Max(...) Global function
- sys_info library. A #define macro that returns the bigger of two arguments. The items compared must have a ''operator associated with them (true of all integral and...
- Max3(...) Global function
- sys_info library. Returns the maximum of three values.
- MAX_ALARM_STRING_LENGTH Global data
- shell library. The maximum length for the UAL or context string stored with an alarm. Note that this is a length, and includes the NULL terminator, so if you are...
- MAX_DEVICE_NAME Global data
- irda library. A device name may not exceed MAX_DEVICE_NAME bytes.
- MAX_IAS_QUERY Global data
- irda library. An incoming IAS query will not exceed MAX_IAS_QUERY bytes.
- MAX_IAS_QUERY_LEN Global data
- irda library. A query string (see SetQueryString()) may not exceed MAX_IAS_QUERY_LEN bytes.
- MAX_LIST_ITEMS Global data
- toolkit library. The maximum number of items in a FlexList. MAX_LIST_ITEMS is equal to the maximum value for a uint16 -1.
- MAX_LM_CONNECT_PACKET Global data
- irda library. Max size of connect request, connect response and disconnect packets for Link Management connections.
- MAX_NUM_CALIBRATION_POINTS Global data
- drivermisc library. MAX_NUM_CALIBRATION_POINTS is the maximum number of points that can be passed to or returned from GetCalibrationPoints() and SetCalibrationPoints().
- MAX_NUM_INDEX_FIELDS Global data
- database library. The maximum number of fields that a multi-field index can have.
- MAX_SORTING_NAME Global data
- database library. The maximum length of an index driver name (the sorting name) in TCHAR's
- MAX_TOKEN_LENGTH Enumerated value
- DebugCommand class, in enum DebugCommandConstants. The Maxmimum length of a command token including null terminator.
- MAX_TTP_CONNECT_PACKET Global data
- irda library. Max size of connect request, connect response and disconnect packets for Tiny TP connections.
- MAX_WINCOORD Global data
- graphics library. MAX_WINCOORD and MIN_WINCOORD are the maximum and minimum coordinates that the graphics system can handle.
- MAXLSAP Global data
- irda library. The maximum legal LSAP value is 0x6f.
- MediaAvailable(...) Pure virtual member function
- MediaAvailableListener class. This is a notification method; it should be intercepted by subclasses. It should not be called by the user; it will be called by the OS when media...
- MediaAvailableListener class
- fs library. MediaAvailableListeners receive notification when FileStore media are inserted into or removed from the device.
- MediaExists(...) Pure virtual member function
- FileStore class. Queries to see if the media to which this FileStore writes is present. This will always be TRUE if the FileStore doesn't write to removable media.
- MENU_CANCELLED Enumerated value
- MenuEvent class, in enum MenuEventType. The user is closing the menu without choosing a menu item.
- MENU_CLOSED Enumerated value
- MenuEvent class, in enum MenuEventType. The menu popup window has been closed.
- MENU_ITEM_CHOSEN Enumerated value
- MenuEvent class, in enum MenuEventType. The user has chosen a menu item.
- MENU_NO_SELECTION Global data
- toolkit library. This constant is used to indicate that no MenuItems are selected within a menu.
- MENU_OPENED Enumerated value
- MenuEvent class, in enum MenuEventType. The menu popup window has been opened.
- MenuAdapter class
- toolkit library. The MenuAdapter class is a subclass of MenuListenerInterface to be notified of menu events. This subclass provides empty function definitions so that...
- MenuCancelled(...) Member function
- MenuAdapter class. By overriding this method, an application will be notified when the user cancels a menu (closes it without choosing a menu item).
- MenuCancelled(...) Pure virtual member function
- MenuListenerInterface class. By overriding this method, an application will be notified when the user cancels a menu (closes it without choosing a menu item).
- MenuClosed(...) Member function
- MenuAdapter class. By overriding this method, an application will be notified when a menu has been closed. This is sent out after the menu closes.
- MenuClosed(...) Pure virtual member function
- MenuListenerInterface class. By overriding this method, an application will be notified when a menu has been closed. This is sent out after the menu closes.
- MenuEvent class
- toolkit library. The MenuEvent is created and sent to a MenuListener when a menu item is chosen.
- MenuEvent(...) Member function
- MenuEvent class. Constructs a MenuEvent object with the specified source object, event type, and MenuItemID.
- MenuEventType Enumerated type
- MenuEvent class. The type of menu events that can happen on a FlexMenu.
- _menuEventType Member data
- MenuEvent class. The type of event represented by this MenuEvent.
- MenuItem class
- toolkit library. The MenuItem class forms part of the inheritance hierarchy for any component that is placed inside a menu window.
- MenuItem(...) Member function
- MenuItem class. Default constructor.
- MenuItemChosen(...) Member function
- MenuAdapter class. By overriding this method, an application will be notified when the user chooses a menu item. The MENU_ITEM_CHOSEN event is sent before the...
- MenuItemChosen(...) Pure virtual member function
- MenuListenerInterface class. By overriding this method, an application will be notified when the user chooses a menu item. The MENU_ITEM_CHOSEN event is sent before the...
- MenuItemID Global data
- toolkit library. This is the type used for creating menu item ID values.
- _menuItemID Member data
- MenuEvent class. The MenuItemID stored in this event. This data member is set by the constructor.
- MenuListenerInterface class
- toolkit library. This class is the abstract base class for MenuListener objects. It is the listener interface for receiving menu events.
- MenuOpened(...) Member function
- MenuAdapter class. By overriding this method, an application will be notified when a menu is opened. This is sent out after the menu opens.
- MenuOpened(...) Pure virtual member function
- MenuListenerInterface class. By overriding this method, an application will be notified when a menu is opened. This is sent out after the menu opens.
- MenuPopupDirectionType Enumerated type
- FlexMenu class. Indicates where to place the menu window with respect to the menu trigger.
- MergeCall(...) Member function
- VoiceCallManager class. Merge a call. Closes the old calls and opens a new one with the same address. The owner is the old owner of both -which must be the same.
- Message class
- kernel library. The Message class encapsulates a message number and seven data elements. Messages are used to pass data between threads or from an interrupt service...
- MESSAGE_EMAIL_DISCARD Enumerated value
- GSMSMSSystem class, in enum MessageIndicationType. Email messages waiting; discard SM.
- MESSAGE_EMAIL_STORE Enumerated value
- GSMSMSSystem class, in enum MessageIndicationType. Email messages waiting; store SM.
- MESSAGE_FAX_DISCARD Enumerated value
- GSMSMSSystem class, in enum MessageIndicationType. Fax messages waiting; discard SM.
- MESSAGE_FAX_STORE Enumerated value
- GSMSMSSystem class, in enum MessageIndicationType. Fax messages waiting; store SM.
- MESSAGE_OTHER_DISCARD Enumerated value
- GSMSMSSystem class, in enum MessageIndicationType. Other messages waiting; discard SM.
- MESSAGE_OTHER_STORE Enumerated value
- GSMSMSSystem class, in enum MessageIndicationType. Other messages waiting; store SM.
- MESSAGE_VOICE_DISCARD Enumerated value
- GSMSMSSystem class, in enum MessageIndicationType. Voice messages waiting; discard SM.
- MESSAGE_VOICE_STORE Enumerated value
- GSMSMSSystem class, in enum MessageIndicationType. Voice messages waiting; store SM.
- MessageAdded(...) Pure virtual member function
- MailboxListener class. This event is invoked when a new message has been added to the mailbox with which the MailboxListener is registered.
- MessageArg Global data
- kernel library. A MessageArg typedef to be used to hold the various pieces of data in a Message object.
- MessageBody class
- uma library. The MessageBody class provides the common API for classes used to store message bodies.
- MessageFlagsModified(...) Pure virtual member function
- MailboxListener class. This event is invoked when the flags of a message in the MailboxListener's associated mailbox have been modified.
- MessageHeaderModified(...) Pure virtual member function
- MailboxListener class. This event is invoked when a field (other than "flags") of a message in the MailboxListener's associated mailbox has been modified.
- MessageIndicationElement Struct
- GSMSMSSystem class. UDH can deliver a special information element which contains the number of messages waiting -not SMs, but voicemail, email, etc.
- MessageIndicationType Enumerated type
- GSMSMSSystem class. Message indication types define what kinds of message are waiting, and whether the update SM should be stored after updating the internal indicator.
- MessageNum Global data
- kernel library. A MessageNum is stored in a uint16, but is in any number of ranges within that uint16 (0 to 65536), depending on where it is defined.
- MessageNumber Member data
- GSMSMSSystem class. A message number field identifies a previously sent SM. It is the same as the message reference field of that SM.
- MessagePool class
- kernel library. The MessagePool class provides pools of Message objects for efficient allocation and deallocation.
- MessagePool(...) Member function
- MessagePool class. The constructor of MessagePool initializes itself by setting its preferences (MessagePoolFlags) and setting up a preallocated pool, if provided.
- ~MessagePool(...) Member function
- MessagePool class. The destructor of MessagePool will deallocate its pool if it was not preallocated. A MessagePool should be removed from the MessagePoolManager before...
- MessagePoolFlags Struct
- kernel library. Flags to pass to the MessagePool constructor.
- MessagePoolManager class
- kernel library. The MessagePoolManager class manages the initialization and destruction of MessagePool objects.
- MessageQueue class
- kernel library. The MessageQueue class is a queue of Message objects. It also provides a default Message dispatch loop implementation.
- MessageQueue(...) Member function
- MessageQueue class. The MessageQueue constructor initializes it to an empty queue.
- ~MessageQueue(...) Member function
- MessageQueue class. MessageQueue destructor.
- MessageReference Member data
- GSMSMSSystem class. A message reference is a number from 0 to 255 that uniquely identifies an SM in processing. The MS keeps track (through the SIM) of the current...
- MessageRemoved(...) Pure virtual member function
- MailboxListener class. This event is invoked when a message has been removed from the mailbox with which the MailboxListener is registered.
- MigrateData(...) Member function
- Array class. Moves this array's data to the specified array. Any elements previously in the passed array are deleted.
- MIME_MAX_ENCODED_WORD_LENGTH Global data
- mime library. The maximum length of an RFC 2047-compliant encoded word.
- MimeDecoder class
- mime library.
- MimeDeserializer class
- mime library. This class is used to decode mime message bodies and convert them into our internal hierarchical representation.
- MimeEncoder class
- mime library.
- MimeHeaderParser class
- mime library.
- mime library.
- MimeHeaderParser(...) Member function
- MimeHeaderParser class. Class constructor.
- ~MimeHeaderParser(...) Member function
- MimeHeaderParser class. Class destructor.
- MimeLayout class
- mime library. This class represents the structure of a MIME layout file. It maintains an array of MimePartNodes, each of which corresponds to one line in the...
- mime library. This class represents the structure of a MIME layout file. It maintains an array of MimePartNodes, each of which corresponds to one line in the...
- MimeLibrary class
- mime library. This class provides some library functions for manipulating MIME data. ***************************************************************************/
- MimePartNode Struct
- mime library. Structure representing the data on one line of a MIME layout file.
- mime library. Structure representing the data on one line of a MIME layout file.
- MimeSerializer class
- mime library. This class is used to encode and serialize mime bodies that are stored using our hierarchical file format.
- Min(...) Global function
- sys_info library. Returns the smaller of two arguments. The items compared must have a '
- Min3(...) Global function
- sys_info library. Returns the minimum of three values.
- MinimumLayoutSize(...) Member function
- DialogLayout class. Determines the minimum size of the passed container when laid out with this layout manager.
- HorizontalFlowLayout class. Determines the minimum size of the passed container when laid out with this layout manager.
- LayoutManagerInterface class. Determines the minimum size of the passed container when laid out with this layout manager.
- VerticalFlowLayout class. Determines the minimum size of the passed container when laid out with this layout manager.
- minute Member data
- DateTime class. Minute value of this DateTime.
- MMTS_MORE_MESSAGES_WAITING Enumerated value
- GSMSMSSystem class, in enum MoreMessagesToSend. More messages are waiting.
- MMTS_NO_MESSAGES_WAITING Enumerated value
- GSMSMSSystem class, in enum MoreMessagesToSend. No more messages are waiting.
- modificationTime Struct field
- fs library, in struct StatBuffer. Time of last modification of the file's contents, if a file; otherwise unspecified. The DateTime structure itself is precise to the second, but a...
- month Member data
- DateTime class. Month value of this DateTime.
- MoreMessagesToSend Enumerated type
- GSMSMSSystem class. Indicates whether more messages are waiting for this MS in the SC.
- MOUSE_CLICKED Enumerated value
- MouseEvent class, in enum MouseEventType. Mouse was pressed and released without being dragged
- MOUSE_DRAGGED Enumerated value
- MouseEvent class, in enum MouseEventType. Mouse was pressed and dragged in the FlexComponent.
- MOUSE_PRESSED Enumerated value
- MouseEvent class, in enum MouseEventType. Mouse was pressed on the FlexComponent.
- MOUSE_RELEASED Enumerated value
- MouseEvent class, in enum MouseEventType. Mouse was released on the FlexComponent.
- MouseAdapter class
- toolkit library. The MouseAdapter class is a subclass of MouseListenerInterface to be notified of mouse events. This subclass provides empty function definitions so...
- MouseClicked(...) Member function
- MouseAdapter class. Notified when the FlexComponent receives a mouse press/release without any intervening movement.
- MouseClicked(...) Pure virtual member function
- MouseListenerInterface class. Notified when the FlexComponent receives a mouse click (mouse press and release without any intervening pen movement).
- MouseDragged(...) Member function
- MouseMotionAdapter class. Notified when the FlexComponent receives a mouse drag.
- MouseDragged(...) Pure virtual member function
- MouseMotionListenerInterface class. Notified when the FlexComponent receives a mouse drag.
- MouseEvent class
- toolkit library. The MouseEvent is created and sent to a MouseListener when a FlexComponent has received a mouse press, mouse release, or mouse drag.
- MouseEvent(...) Member function
- MouseEvent class. Constructor for the MouseEvent.
- MouseEventType Enumerated type
- MouseEvent class. The types of mouse events that can be received by a FlexComponent.
- MouseListenerInterface class
- toolkit library. MouseListenerInterface is the abstract base class for MouseListener objects. It is the listener interface for receiving mouse events.
- MouseMotionAdapter class
- toolkit library. The MouseMotionAdapter class is a subclass of MouseMotionListenerInterface to be notified of mouse motion events.
- MouseMotionListenerInterface class
- toolkit library. MouseMotionListenerInterface is the abstract base class for MouseMotionListener objects. It is the listener interface for receiving mouse motion...
- MousePressed(...) Member function
- MouseAdapter class. Notified when the FlexComponent receives a mouse press.
- MousePressed(...) Pure virtual member function
- MouseListenerInterface class. Notified when the FlexComponent receives a mouse press.
- MouseReleased(...) Member function
- MouseAdapter class. Notified when the FlexComponent receives a mouse release.
- MouseReleased(...) Pure virtual member function
- MouseListenerInterface class. Notified when the FlexComponent receives a mouse release.
- MovableList class
- umadata library. The MovableList class manages a doubly linked list of nodes that are stored in movable memory. The class itself is not movable, but only takes up 8...
- MovableListNode class
- umadata library. The MovableListNode class provides an interface for interacting with the nodes in a movable list. While the class itself is not movable, it only...
- Move(...) Member function
- FileStoreManager class. Moves a file and possibly changes its name. sourcePath must specify an existing unopened file. The directory containing destPath must exist, but...
- Window class. Move the window to the specified position, which is relative to its parent. The X Y position is parent relative.
- MoveMessage(...) Member function
- MailboxView class. Moves the current message to the given mailbox. Important:If the operation succeeds, there will be no current message.
- MPDT_DOWN Enumerated value
- FlexMenu class, in enum MenuPopupDirectionType. Open at the bottom and downward.
- MPDT_FLOATING Enumerated value
- FlexMenu class, in enum MenuPopupDirectionType. Floating menu (not attached to trigger).
- MPDT_LEFT_DOWN Enumerated value
- FlexMenu class, in enum MenuPopupDirectionType. Open at the left and downward.
- MPDT_LEFT_UP Enumerated value
- FlexMenu class, in enum MenuPopupDirectionType. Open at the left and upward.
- MPDT_RIGHT_DOWN Enumerated value
- FlexMenu class, in enum MenuPopupDirectionType. Open at right and downward.
- MPDT_RIGHT_UP Enumerated value
- FlexMenu class, in enum MenuPopupDirectionType. Open at the right and upward.
- MPDT_UP Enumerated value
- FlexMenu class, in enum MenuPopupDirectionType. Open on top and upward.
- MSG_INPUT_EVENT Enumerated value
- kernel library, in enum SystemMessages. Encapsulates an input event. arg0 =InputEventType. arg1-6 =Vary depending on the InputEventType.
- MSG_NULL Enumerated value
- kernel library, in enum SystemMessages. Null message -this message is quietly ignored by MessageQueue::DispatchMessage(). It is useful to send a null message to a message queue if you need...
- MSG_QUEUED_FUNCTION_CALL Enumerated value
- kernel library, in enum SystemMessages. Enqueues a function call on the thread associated with this queue. arg0 =Address of routine to call. arg1-6 =Arguments for the routine.
- MultXY(...) Member function
- WinXYPoint class. Multiplies the point values by a floating point value.