pub mod chart;
pub mod color;
pub mod comments;
pub mod diagram;
pub mod notesmaster;
pub mod ns;
pub mod ole;
pub mod parse_sld;
pub mod parser;
pub mod presentation;
pub mod section;
pub mod shape;
pub mod simpletypes;
pub mod slide;
pub mod slidelayout;
pub mod slidemaster;
pub mod sppr;
pub mod table;
pub mod theme;
pub mod txbody;
pub mod writer;
pub use chart::{Chart, ChartCategory, ChartData, ChartSeries, ChartType};
pub use color::{Color, ColorFormat, ColorRole, PresetColor, SchemeColor};
pub use comments::{Comment, CommentAuthor, CommentAuthorList, CommentList};
pub use diagram::{
ColorsDef, DataModel, DataModelConnection, DataModelPoint, LayoutCategory, LayoutDef,
QuickStyleDef, StyleLabel,
};
pub use notesmaster::NotesMaster;
pub use ole::{OleObject, OLE_GRAPHIC_DATA_URI};
pub use presentation::{PresentationRoot, SldMasterIdEntry, SlideIdEntry};
pub use section::{Section, SectionList, SECTION_EXT_URI};
pub use shape::{
Connector, ExtensionEntry, ExtensionList, Graphic, GraphicFrame, Group, GroupChild, MediaKind,
Pic, ShapeLocks, ShapeStyle, SmartArtRef, Sp, StyleRef,
};
pub use simpletypes::{
Alignment, Cap, MsoAnchor, MsoAutoSize, MsoColorType, MsoConnectorType, MsoFillType,
MsoLineDashStyle, MsoShapeType, MsoThemeColorIndex, PpAlign, PpPlaceholderType, PresetGeometry,
TextDirection, TextWrapping, Underline,
};
pub use slide::{notes_xml, Sld, SlideShape};
pub use slidelayout::SldLayout;
pub use slidemaster::SldMaster;
pub use sppr::{
AdjustmentValue, ArrowHead, ArrowSize, ArrowType, Backdrop, Bevel, BlipFillMode, Camera,
CameraPreset, CustomGeometry, Dash, EffectList, Fill, FillFormat, GeomRect, Geometry,
GlowEffect, GradientFill, GradientPath, GradientStop, GradientType, LightRig,
LightRigDirection, LightRigType, Line, LineFormat, LineJoin, MaterialPreset, Path, PathSegment,
PatternFill, Point3d, ReflectionEffect, Rotation3d, Scene3d, ShadowEffect, ShapeProperties,
SoftEdgeEffect, Sp3d, Transform,
};
pub use table::{Cell, CellBorder, Col, Row, Table, TableLook, TableStyle, VerticalAnchor};
pub use theme::{default_theme_xml, ColorScheme, FontScheme, FormatScheme, Theme, ThemeColor};
pub use txbody::{
BodyProperties, BulletStyle, Caps, Font, Hyperlink, Indent, Inset, Paragraph, ParagraphFormat,
ParagraphProperties, Run, RunProperties, TextBody, TextFrame,
};