1/*
2 * Copyright (c) 2007, Haiku, Inc.
3 * Distributed under the terms of the MIT license.
4 *
5 * Author:
6 *		Łukasz 'Sil2100' Zemczak <sil2100@vexillium.org>
7 */
8#ifndef PACKAGEWINDOW_H
9#define PACKAGEWINDOW_H
10
11#include "PackageView.h"
12#include <Window.h>
13#include <Entry.h>
14
15
16const uint32 P_WINDOW_QUIT		=	'PiWq';
17
18
19class PackageWindow : public BWindow {
20	public:
21		PackageWindow(const entry_ref *refs);
22		virtual ~PackageWindow();
23
24		virtual void Quit();
25
26	private:
27		PackageView *fBackground;
28};
29
30
31#endif
32
33