haiku/src/apps/pulse/PrefsWindow.h
Axel Dörfler eb8d1e3895 * Made preferences window font sensitive, this fixes bug #196.
* BottomPrefsView is no longer needed (just contained two buttons, moved
  their creation to the PrefsWindow class).
* Cleanup.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16705 a95241bf-73f2-0310-859d-f6bbb57e9c96
2006-03-11 17:12:27 +00:00

36 lines
748 B
C++

/*
* Copyright 2002-2006 Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT license.
*
* Copyright 1999, Be Incorporated. All Rights Reserved.
* This file may be used under the terms of the Be Sample Code License.
*
* Written by: Daniel Switkin
*/
#ifndef PREFS_WINDOW_H
#define PREFS_WINDOW_H
#include "Prefs.h"
#include <Messenger.h>
#include <Window.h>
class BTabView;
class PrefsWindow : public BWindow {
public:
PrefsWindow(BRect rect, const char *name, BMessenger *messenger, Prefs *prefs);
virtual ~PrefsWindow();
virtual void MessageReceived(BMessage *message);
virtual bool QuitRequested();
private:
BTabView* fTabView;
BMessenger fTarget;
Prefs* fPrefs;
};
#endif // PREFS_WINDOW_H