2 * Copyright 2013, Stephan Aßmus <superstippi@gmx.de>.
3 * All rights reserved. Distributed under the terms of the MIT License.
9 #include <Application.h>
16 class App
: public BApplication
{
21 virtual bool QuitRequested();
22 virtual void ReadyToRun();
23 virtual void MessageReceived(BMessage
* message
);
24 virtual void RefsReceived(BMessage
* message
);
25 virtual void ArgvReceived(int32 argc
, char* argv
[]);
28 void _Open(const BEntry
& entry
);
29 void _ShowWindow(MainWindow
* window
);
31 bool _LoadSettings(BMessage
& settings
);
32 void _StoreSettings(const BMessage
& windowSettings
);
34 void _CheckPackageDaemonRuns();
35 bool _LaunchPackageDaemon();
38 MainWindow
* fMainWindow
;