fb2mode.cpp 529 B

12345678910111213141516171819202122
  1. #include "fb2mode.h"
  2. //---------------------------------------------------------------------------
  3. // FbActionMap
  4. //---------------------------------------------------------------------------
  5. void FbActionMap::connect()
  6. {
  7. for (QAction *action: *this) {
  8. action->setEnabled(true);
  9. }
  10. }
  11. void FbActionMap::disconnect()
  12. {
  13. for (QAction *action: *this) {
  14. if (action->isCheckable()) action->setChecked(false);
  15. action->setEnabled(false);
  16. action->disconnect();
  17. }
  18. }