TCP: Fixed RTO update and dup ACKs generation.
[haiku.git] / src / add-ons / translators / webp / ConfigView.h
bloba35e8dc9a6cbe14636a1a5817d49ccb0a2696373
1 /*
2 * Copyright 2010-2011, Haiku. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Philippe Houdoin
7 */
8 #ifndef CONFIG_VIEW_H
9 #define CONFIG_VIEW_H
12 #include <GroupView.h>
14 class BCheckBox;
15 class BPopUpMenu;
16 class BSlider;
17 class TranslatorSettings;
19 class ConfigView : public BGroupView {
20 public:
21 ConfigView(TranslatorSettings* settings);
22 virtual ~ConfigView();
24 virtual void AttachedToWindow();
25 virtual void MessageReceived(BMessage *message);
27 private:
28 TranslatorSettings* fSettings;
29 BPopUpMenu* fPresetsMenu;
30 BSlider* fQualitySlider;
31 BSlider* fMethodSlider;
32 BCheckBox* fPreprocessingCheckBox;
36 #endif /* CONFIG_VIEW_H */