xref: /haiku/src/preferences/filetypes/PreferredAppMenu.h (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
1 /*
2  * Copyright 2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef PREFERRED_APP_MENU_H
6 #define PREFERRED_APP_MENU_H
7 
8 
9 #include <SupportDefs.h>
10 
11 class BMenu;
12 class BMessage;
13 class BMimeType;
14 class BString;
15 
16 void update_preferred_app_menu(BMenu* menu, BMimeType* type, uint32 what,
17 	const char* preferredFrom = NULL);
18 status_t retrieve_preferred_app(BMessage* message, bool sameAs, const char* forType,
19 	BString& preferredApp);
20 
21 #endif	// PREFERRED_APP_MENU_H
22