tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / notifications / PrefletWin.h
blob561c1fb4c89bb0685b5d416ea37d669d377cb887
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 _PREFLET_WIN_H
7 #define _PREFLET_WIN_H
9 #include <Window.h>
11 #include "SettingsHost.h"
13 class BButton;
15 class PrefletView;
17 class PrefletWin : public BWindow, public SettingsHost {
18 public:
19 PrefletWin();
21 virtual bool QuitRequested();
22 virtual void MessageReceived(BMessage* msg);
24 virtual void SettingChanged();
25 void ReloadSettings();
27 private:
28 PrefletView* fMainView;
29 BButton* fApply;
30 BButton* fRevert;
33 #endif // _PREFLET_WIN_H