2 * Copyright 2002-2012, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
6 * DarkWyrm (darkwyrm@earthlink.net)
7 * Alexander von Gluck, kallisti5@unixzen.com
8 * Stephan Aßmus <superstippi@gmx.de>
14 #include <Application.h>
21 class AntialiasingSettingsView
;
23 class LookAndFeelSettingsView
;
26 class APRWindow
: public BWindow
{
28 APRWindow(BRect frame
);
29 void MessageReceived(BMessage
*message
);
32 void _UpdateButtons();
33 bool _IsDefaultable() const;
34 bool _IsRevertable() const;
37 BButton
* fDefaultsButton
;
38 BButton
* fRevertButton
;
40 AntialiasingSettingsView
* fAntialiasingSettings
;
41 FontView
* fFontSettings
;
42 LookAndFeelSettingsView
* fLookAndFeelSettings
;
46 static const int32 kMsgUpdate
= 'updt';