2010-05-07 04:47:10 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2009, Pier Luigi Fiorini. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _NICKNAME_TEXT_CONTROL_H
|
|
|
|
#define _NICKNAME_TEXT_CONTROL_H
|
|
|
|
|
2012-05-15 11:48:53 -05:00
|
|
|
#include <TextView.h>
|
2010-05-07 04:47:10 -05:00
|
|
|
|
2012-05-15 11:48:53 -05:00
|
|
|
class NicknameTextControl : public BTextView {
|
2010-05-07 04:47:10 -05:00
|
|
|
public:
|
|
|
|
NicknameTextControl(const char* name, BMessage* message);
|
|
|
|
|
2012-05-15 11:48:53 -05:00
|
|
|
// virtual void Draw(BRect updateRect);
|
2010-05-07 04:47:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _NICKNAME_TEXT_CONTROL_H
|