settings.cpp 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. namespace hiro {
  2. Settings::Settings() {
  3. string path = {Path::userSettings(), "hiro/"};
  4. #if HIRO_GTK==2
  5. auto document = BML::unserialize(file::read({path, "gtk2.bml"}));
  6. #elif HIRO_GTK==3
  7. auto document = BML::unserialize(file::read({path, "gtk3.bml"}));
  8. #endif
  9. #define get(name, type, value) \
  10. if(auto node = document[name]) value = node.type()
  11. get("Geometry/FrameX", integer, geometry.frameX);
  12. get("Geometry/FrameY", integer, geometry.frameY);
  13. get("Geometry/FrameWidth", integer, geometry.frameWidth);
  14. get("Geometry/FrameHeight", integer, geometry.frameHeight);
  15. get("Geometry/MenuHeight", integer, geometry.menuHeight);
  16. get("Geometry/StatusHeight", integer, geometry.statusHeight);
  17. get("Theme/ActionIcons", boolean, theme.actionIcons);
  18. get("Theme/WidgetColors", boolean, theme.widgetColors);
  19. #undef get
  20. }
  21. Settings::~Settings() {
  22. string path = {Path::userSettings(), "hiro/"};
  23. directory::create(path, 0755);
  24. Markup::Node document;
  25. #define set(name, value) \
  26. document(name).setValue(value)
  27. set("Geometry/FrameX", geometry.frameX);
  28. set("Geometry/FrameY", geometry.frameY);
  29. set("Geometry/FrameWidth", geometry.frameWidth);
  30. set("Geometry/FrameHeight", geometry.frameHeight);
  31. set("Geometry/MenuHeight", geometry.menuHeight);
  32. set("Geometry/StatusHeight", geometry.statusHeight);
  33. set("Theme/ActionIcons", theme.actionIcons);
  34. set("Theme/WidgetColors", theme.widgetColors);
  35. #undef set
  36. #if HIRO_GTK==2
  37. file::write({path, "gtk2.bml"}, BML::serialize(document));
  38. #elif HIRO_GTK==3
  39. file::write({path, "gtk3.bml"}, BML::serialize(document));
  40. #endif
  41. }
  42. }