docs/ikteam: Delete most files.
[haiku.git] / src / preferences / screen / RefreshWindow.h
blobff16508d1242fe97aa736ed45c2a95a9654f6555
1 /*
2 * Copyright 2001-2006, Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Rafael Romo
7 * Stefano Ceccherini (burton666@libero.it)
8 * Axel Dörfler, axeld@pinc-software.de
9 */
10 #ifndef REFRESH_WINDOW_H
11 #define REFRESH_WINDOW_H
14 #include <Window.h>
16 class BSlider;
19 class RefreshWindow : public BWindow {
20 public:
21 RefreshWindow(BPoint position, float current, float min, float max);
23 virtual void MessageReceived(BMessage* message);
24 virtual void WindowActivated(bool active);
26 private:
27 BSlider* fRefreshSlider;
30 #endif // REFRESH_WINDOW_H