xref: /haiku/src/apps/showimage/ShowImageStatusView.cpp (revision 7120e97489acbf17d86d3f33e3b2e68974fd4b23)
1 /*
2     OBOS ShowImage 0.1 - 17/02/2002 - 22:22 - Fernando Francisco de Oliveira
3 */
4 
5 #include "ShowImageStatusView.h"
6 
7 ShowImageStatusView::ShowImageStatusView(BRect r, const char* name, uint32 resizingMode, uint32 flags)
8 	: BView(r, name, resizingMode, flags)
9 {
10 	m_caption = "";
11 }
12 
13 void ShowImageStatusView::Draw(BRect updateRect)
14 {
15 	DrawString( m_caption, BPoint( 3, 11) );
16 }
17 
18 void ShowImageStatusView::SetCaption( char * Caption )
19 {
20 	m_caption = Caption;
21 	Invalidate();
22 }
23