1 /* 2 * Copyright 2002-2006, Haiku, Inc. 3 * Distributed under the terms of the MIT license. 4 * 5 * Authors: 6 * Michael Wilber 7 * Axel Dörfler, axeld@pinc-software.de 8 */ 9 #ifndef STXT_VIEW_H 10 #define STXT_VIEW_H 11 12 13 #include "TranslatorSettings.h" 14 15 #include <View.h> 16 17 18 class STXTView : public BView { 19 public: 20 STXTView(const BRect &frame, const char *name, uint32 resizeMode, 21 uint32 flags, TranslatorSettings *settings); 22 virtual ~STXTView(); 23 24 private: 25 TranslatorSettings *fSettings; 26 }; 27 28 #endif // STXT_VIEW_H 29