B : // _setup

(Menu)   A   B   C   D   E   F   G   H   I

setup()
Declare and define a local constant:
int BTN_W = 108-1;

Define four variables:
btn01_x1 = 0;     btn01_y1 = 0;
btn01_w  = BTN_W; btn01_h  = 25;
Create btn01 as a new Rect Button:
btn01 = new RectButton(btn01_x1, btn01_y1,
                       btn01_w, btn01_h,
                       0, "File");