2021-07-28 10:13:31 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2021, Jaidyn Levesque <jadedctrl@teknik.io>
|
|
|
|
* All rights reserved. Distributed under the terms of the MIT license.
|
|
|
|
*/
|
|
|
|
#ifndef _ACCOUNT_MENU_ITEM_H
|
|
|
|
#define _ACCOUNT_MENU_ITEM_H
|
|
|
|
|
|
|
|
#include <MenuItem.h>
|
|
|
|
|
2021-08-03 10:29:19 -05:00
|
|
|
#include <libinterface/BitmapMenuItem.h>
|
2021-07-28 10:13:31 -05:00
|
|
|
|
2021-08-03 10:29:19 -05:00
|
|
|
|
|
|
|
class AccountMenuItem : public BitmapMenuItem {
|
2021-07-28 10:13:31 -05:00
|
|
|
public:
|
2021-08-03 10:29:19 -05:00
|
|
|
AccountMenuItem(const char* label, BMessage* msg, BBitmap* icon = NULL);
|
2021-07-28 10:13:31 -05:00
|
|
|
|
|
|
|
virtual void SetMarked(bool mark);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _ACCOUNT_MENU_ITEM_H
|