fat: Greatly simplify and clean up dosfs_get_file_map().
[haiku.git] / src / preferences / notifications / DisplayView.h
blobc651865c824fa3cc733d5bac0871664de61887a2
1 /*
2 * Copyright 2010, Haiku, Inc. All Rights Reserved.
3 * Copyright 2009, Pier Luigi Fiorini.
4 * Distributed under the terms of the MIT License.
5 */
6 #ifndef _DISPLAY_VIEW_H
7 #define _DISPLAY_VIEW_H
9 #include "SettingsPane.h"
11 class BTextControl;
12 class BMenu;
13 class BMenuField;
15 class DisplayView : public SettingsPane {
16 public:
17 DisplayView(SettingsHost* host);
19 virtual void AttachedToWindow();
20 virtual void MessageReceived(BMessage* msg);
22 // SettingsPane hooks
23 status_t Load(BMessage&);
24 status_t Save(BMessage&);
25 status_t Revert();
27 private:
28 BTextControl* fWindowWidth;
29 BMenu* fIconSize;
30 BMenuField* fIconSizeField;
34 #endif // _DISPLAY_VIEW_H