1 /* 2 * Copyright 2006, Haiku. 3 * Distributed under the terms of the MIT License. 4 * 5 * Authors: 6 * Stephan Aßmus <superstippi@gmx.de> 7 */ 8 9 #ifndef INT64_VALUE_VIEW_H 10 #define INT64_VALUE_VIEW_H 11 12 #include "TextInputValueView.h" 13 14 class Int64Property; 15 class NummericalTextView; 16 17 class Int64ValueView : public TextInputValueView { 18 public: 19 Int64ValueView(Int64Property* property); 20 virtual ~Int64ValueView(); 21 22 // TextInputValueView interface 23 virtual InputTextView* TextView() const; 24 25 // PropertyEditorView interface 26 virtual void ValueChanged(); 27 28 virtual bool AdoptProperty(Property* property); 29 30 private: 31 Int64Property* fProperty; 32 NummericalTextView* fTextView; 33 }; 34 35 #endif // INT64_VALUE_VIEW_H 36 37 38