1245163Serwin/*
2174187Sdougb * Copyright 2010, Stephan A��mus <superstippi@gmx.de>.
3174187Sdougb * Copyright 2020, Panagiotis "Ivory" Vasilopoulos <git@n0toose.net>
4174187Sdougb * All rights reserved. Distributed under the terms of the MIT License.
5174187Sdougb */
6174187Sdougb#ifndef BOOT_PROMPT_APP_H
7174187Sdougb#define BOOT_PROMPT_APP_H
8174187Sdougb
9174187Sdougb#include <Application.h>
10174187Sdougb
11174187Sdougb#include "BootPromptWindow.h"
12174187Sdougb
13174187Sdougbenum {
14174187Sdougb	MSG_BOOT_DESKTOP	= 'dktp',
15234010Sdougb	MSG_RUN_INSTALLER	= 'inst',
16174187Sdougb	MSG_REBOOT_REQUESTED	= 'rebt'
17174187Sdougb};
18174187Sdougb
19174187Sdougbextern const char* kAppSignature;
20174187Sdougbextern const char* kDeskbarSignature;
21174187Sdougb
22174187Sdougb
23174187Sdougbclass BootPromptApp : public BApplication {
24174187Sdougbpublic:
25								BootPromptApp();
26
27	virtual	void				MessageReceived(BMessage* message);
28			bool				QuitRequested();
29	virtual	void				ReadyToRun();
30};
31
32
33#endif // BOOT_PROMPT_APP_H
34