AccountMenuItem.h 468 B

123456789101112131415161718192021
  1. /*
  2. * Copyright 2021, Jaidyn Levesque <jadedctrl@teknik.io>
  3. * All rights reserved. Distributed under the terms of the MIT license.
  4. */
  5. #ifndef _ACCOUNT_MENU_ITEM_H
  6. #define _ACCOUNT_MENU_ITEM_H
  7. #include <MenuItem.h>
  8. #include <libinterface/BitmapMenuItem.h>
  9. class AccountMenuItem : public BitmapMenuItem {
  10. public:
  11. AccountMenuItem(const char* label, BMessage* msg, BBitmap* icon = NULL);
  12. virtual void SetMarked(bool mark);
  13. };
  14. #endif // _ACCOUNT_MENU_ITEM_H