ROVLib2
RISCOSC++applicationdevelopmentlibrary
iconbar.cpp
1 #include "iconbar.h"
2 
3 #include "task.h"
4 #include <string.h>
5 #include "errorexception.h"
6 
7 namespace rov2
8 {
9 
10 CIconBar*
12 {
13  if (sm_pibIconBar == NULL)
14  {
15  sm_pibIconBar = new CIconBar();
16  }
17 
18  return sm_pibIconBar;
19 }
20 
21 CIconBar::CIconBar()
22  : CWindow()
23 {
25  m_whHandle = -2;
26 }
27 
28 void CIconBar::SetTitle(const std::string& new_title)
29 {
30 }
31 
32 CIconBar* CIconBar::sm_pibIconBar = NULL;
33 
34 }
tWindowHandle m_whHandle
Definition: window.h:97
static CIconBar * GetIconBar()
Definition: iconbar.cpp:11
static CTask * CurrentTask()
Definition: task.h:70
void RegisterWindow(const CWindow *kpwWindow)
Definition: task.cpp:140