fb2enum.h 788 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef FB2ENUM_H
  2. #define FB2ENUM_H
  3. namespace Fb {
  4. enum Actions {
  5. GoBack,
  6. GoForward,
  7. EditUndo,
  8. EditRedo,
  9. EditCut,
  10. EditCopy,
  11. EditPaste,
  12. PasteText,
  13. TextSelect,
  14. TextFind,
  15. TextReplace,
  16. InsertImage,
  17. InsertNote,
  18. InsertLink,
  19. InsertBody,
  20. InsertTitle,
  21. InsertEpigraph,
  22. InsertSubtitle,
  23. InsertAnnot,
  24. InsertCite,
  25. InsertPoem,
  26. InsertDate,
  27. InsertStanza,
  28. InsertAuthor,
  29. InsertSection,
  30. InsertText,
  31. InsertParag,
  32. InsertLine,
  33. ClearFormat,
  34. TextBold,
  35. TextItalic,
  36. TextStrike,
  37. TextSub,
  38. TextSup,
  39. TextCode,
  40. TextTitle,
  41. SectionAdd,
  42. SectionDel,
  43. ViewContents,
  44. ViewPictures,
  45. ViewInspect,
  46. ZoomIn,
  47. ZoomOut,
  48. ZoomReset,
  49. };
  50. }
  51. #endif // FB2ENUM_H