summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2020-05-15 12:23:50 +0000
committerAlbert Astals Cid <tsdgeos@yahoo.es>2020-05-19 21:06:58 +0000
commit57de32198a4406eae18b80eed42e6050e2b48cca (patch)
tree62cd33e6403231548de440f9f656d41c5280d1ef /cpp
parent507027de297f43146f5bbebe8d098dededffc577 (diff)
[cpp] in poppler-page.h, add "since 0.89" comment to 3 new methods.
Diffstat (limited to 'cpp')
-rw-r--r--cpp/poppler-page.h16
1 files changed, 12 insertions, 4 deletions
diff --git a/cpp/poppler-page.h b/cpp/poppler-page.h
index 50ccdb06..ca5be2fd 100644
--- a/cpp/poppler-page.h
+++ b/cpp/poppler-page.h
@@ -67,10 +67,6 @@ public:
bool has_space_after() const;
/**
- \since 0.8x
- */
-
- /**
Get a writing mode for the i-th glyph
This method returns an enum of the writing mode
@@ -85,6 +81,10 @@ public:
horizontal_wmode = 0,
vertical_wmode = 1
};
+
+ /**
+ \since 0.89
+ */
writing_mode_enum get_wmode(int i = 0) const;
/**
@@ -93,6 +93,10 @@ public:
This method return a double floating value of the
font size from the text_box instance.
*/
+
+ /**
+ \since 0.89
+ */
double get_font_size() const;
/**
@@ -111,6 +115,10 @@ public:
Latin1 or UTF-8. Some legacy PDF producers used
in CJK market use GBK, Big5, Wansung or Shift-JIS.
*/
+
+ /**
+ \since 0.89
+ */
std::string get_font_name(int i = 0) const;
private: