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