Assorted whitespace cleanup and typo fixes.
[haiku.git] / src / preferences / appearance / FontMenu.h
blobe57b2f9580156f0d4391f102a7ddb996d36b5752
1 #ifndef FONTMENU_H_
2 #define FONTMENU_H_
4 #include <Menu.h>
6 #define MENU_FONT_STYLE 'mnfs'
7 #define MENU_FONT_FAMILY 'mnff'
9 class FontMenu : public BMenu {
10 public:
11 FontMenu();
12 virtual ~FontMenu();
13 virtual void GetFonts();
14 virtual void Update();
15 virtual status_t PlaceCheckMarkOnFont(font_family family, font_style style);
16 virtual void ClearAllMarkedItems();
18 menu_info info;
19 BMenuItem *fontFamily;
20 BMenu *fontStyleMenu;
21 BMenuItem *fontStyleItem;
23 #endif