#include <bmplist.h>
Inheritance diagram for BitmapListChangedMsg:

Public Types | |
| enum | BitmapListState { SELECTNEWBITMAP, LISTCHANGED } |
Public Member Functions | |
| BitmapListChangedMsg (BitmapList *pList) | |
| BitmapListChangedMsg (BitmapList *pList, KernelBitmap *pBitmap) | |
Public Attributes | |
| BitmapList * | pChangedBmpList |
| KernelBitmap * | pNewBitmap |
| BitmapListState | State |
Private Member Functions | |
| CC_DECLARE_DYNAMIC (BitmapListChangedMsg) | |
Definition at line 241 of file bmplist.h.
|
|
Definition at line 247 of file bmplist.h. 00248 { 00249 SELECTNEWBITMAP, // Sent when a new bitmap has been added to the list and 00250 // this new bitmap should be the new selection in the 00251 // bitmap gallery. 00252 LISTCHANGED, // Sent when the list has changed. This is the default message. 00253 };
|
|
|
Definition at line 261 of file bmplist.h. 00261 : 00262 pChangedBmpList(pList), pNewBitmap(NULL), State(LISTCHANGED) { }
|
|
||||||||||||
|
Definition at line 267 of file bmplist.h. 00267 : 00268 pChangedBmpList(pList), pNewBitmap(pBitmap), State(SELECTNEWBITMAP) { } };
|
|
|
|
|
|
|
|
|
|
|
|
|
1.4.4