TrackGit
LogWindow.h
Go to the documentation of this file.
1 
8 #ifndef _LOG_WINDOW_H_
9 #define _LOG_WINDOW_H_
10 
11 #include "TrackGitWindow.h"
12 
13 #include <InterfaceKit.h>
14 #include <SupportKit.h>
15 
16 
20 class LogWindow : public TrackGitWindow {
24  BTextView* fLogTextView;
25 public:
26  LogWindow(BString);
27  void SetText(BString);
28  virtual void MessageReceived(BMessage*);
29 };
30 
31 #endif
The Log Window class.
Definition: LogWindow.h:20
LogWindow(BString)
LogWindow Constructor.
Definition: LogWindow.cpp:27
virtual void MessageReceived(BMessage *)
Handler to received messages.
Definition: LogWindow.cpp:72
BTextView * fLogTextView
The Log Text View.
Definition: LogWindow.h:24
void SetText(BString)
Sets Text of the View in Window.
Definition: LogWindow.cpp:58
The TrackGit Window class.
Header file of TrackGit window.