mirror of
https://review.haiku-os.org/haiku
synced 2025-01-31 02:35:03 +01:00
eb8d1e3895
* 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
36 lines
748 B
C++
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
|