#include <sgline.h>
Inheritance diagram for LineAttrGroup:
Public Member Functions | |
LineAttrGroup (const String_64 &strTitle, SuperGallery *pGal) | |
Contructs a LineAttrGroup, representing a section heading within the line-attributes super-gallery. | |
const String_64 & | GetTitle () const |
Gets this group's title (the text displayed next to the folder icon). |
Definition at line 135 of file sgline.h.
|
Contructs a LineAttrGroup, representing a section heading within the line-attributes super-gallery.
Definition at line 1063 of file sgline.cpp. 01064 : SGDisplayGroup(pGal, NULL, NULL) 01065 { 01066 // Set the title (in the base class). 01067 TitleText = strTitle; 01068 }
|
|
Gets this group's title (the text displayed next to the folder icon).
Definition at line 1082 of file sgline.cpp. 01083 { 01084 return TitleText; 01085 }
|