| 258 | } |
| 259 | |
| 260 | void ExpandingToolBar::TryAutoCollapse() |
| 261 | { |
| 262 | #ifdef EXPERIMENTAL_ROLL_UP_DIALOG |
| 263 | if (mIsAutoExpanded == true && mIsManualExpanded == false) { |
| 264 | mToggleButton->PopUp(); |
| 265 | mIsAutoExpanded = false; |
| 266 | Fit(); |
| 267 | } |
| 268 | #endif |
| 269 | } |
| 270 | |
| 271 | class ExpandingToolBarEvtHandler final : public wxEvtHandler |
| 272 | { |