Chat-O-Matic/libs/libinterface/BitmapMenuItem.h

42 lines
1.2 KiB
C
Raw Normal View History

/*
BitmapListItem.h: A BMenuItem with an optional picture
Written by DarkWyrm <darkwyrm@earthlink.net>, Copyright 2007
Released under the MIT license.
*/
#ifndef BITMAP_MENU_ITEM_H
#define BITMAP_MENU_ITEM_H
#include <MenuItem.h>
/*
BitmapMenuItems are simple little items, really. They provide the
ability to show a menu item with some text, a picture, or both. The item
optionally takes ownership of the BBitmap given to it.
Note that it is still possible to see the checkmark on marked
BitmapMenuItems -- the bitmap does not obscure the checkmark.
*/
class BitmapMenuItem : public BMenuItem {
public:
BitmapMenuItem(const char* label, BMessage* msg,
BBitmap* bitmap, char shortcut = 0,
uint32 modifiers = 0, bool ownership = true);
BitmapMenuItem(BMessage* data);
virtual ~BitmapMenuItem(void);
virtual status_t Archive(BMessage* data, bool deep = true) const;
virtual void GetContentSize(float* width, float* height);
virtual void DrawContent(void);
virtual void SetBitmap(BBitmap* bitmap);
BBitmap* Bitmap(void) const { return fBitmap; }
private:
BBitmap* fBitmap;
float fBaselineOffset;
bool fOwnership;
};
#endif