fb2enum.h 844 B

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