 |
Verovio
Source code documentation
|
8 #ifndef __VRV_TOOLKIT_H__
9 #define __VRV_TOOLKIT_H__
16 #include "docselection.h"
17 #include "toolkitdef.h"
68 std::string
GetID() {
return m_doc.GetID(); }
135 bool LoadFile(
const std::string &filename);
145 bool LoadData(
const std::string &data);
238 bool SetOptions(
const std::string &jsonOptions);
248 void PrintOptionUsage(
const std::string &category, std::ostream &output)
const;
272 int GetScale() {
return m_options->m_scale.GetValue(); }
304 bool Select(
const std::string &selection);
321 bool Edit(
const std::string &editorAction);
349 std::string
RenderData(
const std::string &data,
const std::string &jsonOptions);
358 std::string
RenderToSVG(
int pageNo = 1,
bool xmlDeclaration =
false);
433 bool RenderToTimemapFile(
const std::string &filename,
const std::string &jsonOptions =
"");
509 std::string
GetMEI(
const std::string &jsonOptions =
"");
520 bool SaveFile(
const std::string &filename,
const std::string &jsonOptions =
"");
632 void RedoLayout(
const std::string &jsonOptions =
"");
733 int GetOutputTo() {
return m_outputTo; }
751 double GetRuntimeInSeconds()
const;
752 void LogRuntime()
const;
787 bool LoadData(
const std::string &data,
bool resetLogBuffer);
790 bool SetFont(
const std::string &fontName);
791 bool IsUTF16(
const std::string &filename);
792 bool LoadUTF16File(
const std::string &filename);
793 bool IsZip(
const std::string &filename);
794 bool LoadZipFile(
const std::string &filename);
795 bool LoadZipData(
const std::vector<unsigned char> &bytes);
796 void GetClassIds(
const std::vector<std::string> &classStrings, std::vector<ClassId> &classIds);
804 std::string
GetOptions(
bool defaultValues)
const;
810 DocSelection m_docSelection;
812 FileFormat m_inputFrom;
813 FileFormat m_outputTo;
817 std::optional<std::locale> m_previousLocale;
828 std::stringstream m_cerrCaptured;
834 std::streambuf *m_cerrOriginalBuf;
836 EditorToolkit *m_editorToolkit;
840 RuntimeClock *m_runtimeClock;
847 static char *m_humdrumBuffer;
const char * GetHumdrumBuffer()
Return the content of the humdrum internal buffer.
int GetInputFrom()
Get the input format.
Definition: toolkit.h:728
void SetLocale()
Setting the global locale.
void SetHumdrumBuffer(const char *contents)
Copy the data to the humdrum internal buffer.
This class is an abstract device context.
Definition: devicecontext.h:57
void SetCString(const std::string &data)
Copy the data to the cstring internal buffer.
bool RenderToDeviceContext(int pageNo, DeviceContext *deviceContext)
Render the page to the deviceContext.
void ClearHumdrumBuffer()
Clear the Humdrum buffer of any contents.
Options * GetOptionsObj()
Return the Options object of the Toolkit instance.
Definition: toolkit.h:669
const char * GetCString()
Return the content of the cstring internal buffer.
void InitClock()
Measuring runtime.
This class contains the document styling parameters.
Definition: options.h:576
This class is a base class of each styling parameter.
Definition: options.h:100