1 /* 2 * Copyright 2012, Gerasim Troeglazov, 3dEyes@gmail.com. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 6 #ifndef CONFIG_VIEW_H 7 #define CONFIG_VIEW_H 8 9 #include "TranslatorSettings.h" 10 11 #include <View.h> 12 #include <TextView.h> 13 #include <String.h> 14 #include <GroupView.h> 15 16 17 class ConfigView : public BGroupView { 18 public: 19 ConfigView(TranslatorSettings *settings); 20 virtual ~ConfigView(); 21 22 private: 23 BTextView* fCopyrightView; 24 TranslatorSettings *fSettings; 25 }; 26 27 #endif // CONFIG_VIEW_H 28