A HeaderPanel is usually at the top of a page containing navigation elements it can contain three child elements. A left Widget, a center widget and a right widget.
Styling
The DOM structure looks like this:
<div class="mgwt-HeaderPanel"> </div>
If elements are added to the header panel they are directly appended to the div. A HeaderPanel with left, center and right child could look like this:
<div class="mgwt-HeaderPanel"> <div class="mgwt-HeaderPanel-left">custom child</div> <div class="mgwt-HeaderPanel-center">custom child</div> <div class="mgwt-HeaderPanel-right">custom child</div> </div>
@author Daniel Kurka