mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:08:10 +00:00
LibPDF: Rename Command to Operator
This is the correct name, according to the spec
This commit is contained in:
parent
49cb040c27
commit
468ceb1b48
5 changed files with 65 additions and 65 deletions
|
@ -89,16 +89,16 @@ private:
|
|||
|
||||
PDFErrorOr<void> render();
|
||||
|
||||
PDFErrorOr<void> handle_command(Command const&);
|
||||
PDFErrorOr<void> handle_operator(Operator const&);
|
||||
#define V(name, snake_name, symbol) \
|
||||
PDFErrorOr<void> handle_##snake_name(Vector<Value> const& args);
|
||||
ENUMERATE_COMMANDS(V)
|
||||
ENUMERATE_OPERATORS(V)
|
||||
#undef V
|
||||
PDFErrorOr<void> handle_text_next_line_show_string(Vector<Value> const& args);
|
||||
PDFErrorOr<void> handle_text_next_line_show_string_set_spacing(Vector<Value> const& args);
|
||||
|
||||
PDFErrorOr<void> set_graphics_state_from_dict(NonnullRefPtr<DictObject>);
|
||||
// shift is the manual advance given in the TJ command array
|
||||
// shift is the manual advance given in the TJ operator array
|
||||
void show_text(String const&, float shift = 0.0f);
|
||||
PDFErrorOr<NonnullRefPtr<ColorSpace>> get_color_space(Value const&);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue