repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / pulse / PrefsWindow.h
blob4dc9409ce7b397cc43f0937eea02d07ed7323ccd
1 /*
2 * Copyright 2002-2006 Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT license.
5 * Copyright 1999, Be Incorporated. All Rights Reserved.
6 * This file may be used under the terms of the Be Sample Code License.
8 * Written by: Daniel Switkin
9 */
10 #ifndef PREFS_WINDOW_H
11 #define PREFS_WINDOW_H
14 #include "Prefs.h"
16 #include <Messenger.h>
17 #include <Window.h>
19 class BTabView;
21 class PrefsWindow : public BWindow {
22 public:
23 PrefsWindow(BRect rect, const char *name, BMessenger *messenger, Prefs *prefs);
24 virtual ~PrefsWindow();
26 virtual void MessageReceived(BMessage *message);
27 virtual bool QuitRequested();
29 private:
30 BTabView* fTabView;
31 BMessenger fTarget;
32 Prefs* fPrefs;
35 #endif // PREFS_WINDOW_H