The MFC implementation of vgui_statusbar. More...
#include <vgui_mfc_statusbar.h>
Public Member Functions | |
vgui_mfc_statusbar () | |
Constructor, creates an MFC status bar object and displays it. | |
~vgui_mfc_statusbar () | |
Destructor. | |
int | write (const char *text, int n) |
Append given text (of given length) to the status bar. | |
int | write (const char *text) |
Append given text to the status bar. | |
void | update () |
Updates the status bar by calling OnUpdateStatusBar of vgui_mfc_mainfrm. | |
Public Attributes | |
CStatusBar * | statusbar |
MFC status bar object. | |
vcl_string | linebuffer |
Text displayed on the statusbar. | |
vgui_statusbuf * | statusbuf |
vcl_ostream | out |
The MFC implementation of vgui_statusbar.
Definition at line 27 of file vgui_mfc_statusbar.h.
vgui_mfc_statusbar::vgui_mfc_statusbar | ( | ) |
Constructor, creates an MFC status bar object and displays it.
Definition at line 22 of file vgui_mfc_statusbar.cxx.
vgui_mfc_statusbar::~vgui_mfc_statusbar | ( | ) |
Destructor.
Definition at line 36 of file vgui_mfc_statusbar.cxx.
void vgui_mfc_statusbar::update | ( | ) |
Updates the status bar by calling OnUpdateStatusBar of vgui_mfc_mainfrm.
Definition at line 45 of file vgui_mfc_statusbar.cxx.
int vgui_mfc_statusbar::write | ( | const char * | text, |
int | n | ||
) | [virtual] |
Append given text (of given length) to the status bar.
Implements vgui_statusbar.
Definition at line 58 of file vgui_mfc_statusbar.cxx.
int vgui_mfc_statusbar::write | ( | const char * | text | ) | [virtual] |
Append given text to the status bar.
Write given text to the status bar.
Implements vgui_statusbar.
Definition at line 94 of file vgui_mfc_statusbar.cxx.
vcl_string vgui_mfc_statusbar::linebuffer |
Text displayed on the statusbar.
Definition at line 46 of file vgui_mfc_statusbar.h.
vcl_ostream vgui_mfc_statusbar::out |
Definition at line 48 of file vgui_mfc_statusbar.h.
CStatusBar* vgui_mfc_statusbar::statusbar |
MFC status bar object.
Definition at line 44 of file vgui_mfc_statusbar.h.
Definition at line 47 of file vgui_mfc_statusbar.h.