| 101 | // active one (the highest numbered gets focus). |
| 102 | public: |
| 103 | CustTabButton (int x,int y,int w,int h, const char* label = 0) : |
| 104 | Fl_Button (x,y,w,h,label) { ui_ = NULL; focus_num_ = 0; }; |
| 105 | void ui(UI *pui) { ui_ = pui; } |
| 106 | UI *ui(void) { return ui_; } |
| 107 | void focus_num(uint_t fn) { focus_num_ = fn; } |
nothing calls this directly
no outgoing calls
no test coverage detected