summaryrefslogtreecommitdiff
path: root/include/vcl/weld.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/weld.hxx')
-rw-r--r--include/vcl/weld.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx
index 0d3db5f51251..f05e3408e207 100644
--- a/include/vcl/weld.hxx
+++ b/include/vcl/weld.hxx
@@ -440,7 +440,8 @@ public:
virtual void set_font_color(int pos, const Color& rColor) const = 0;
//by text
- virtual OUString get_text(int pos) const = 0;
+ virtual OUString get_text(int row, int col = -1) const = 0;
+ virtual void set_text(int row, const OUString& rText, int col = -1) = 0;
virtual int find_text(const OUString& rText) const = 0;
OUString get_selected_text() const
{
@@ -499,6 +500,8 @@ public:
virtual void clear() = 0;
virtual int get_height_rows(int nRows) const = 0;
+ virtual void set_column_fixed_widths(const std::vector<int>& rWidths) = 0;
+
virtual void set_selection_mode(bool bMultiple) = 0;
virtual int count_selected_rows() const = 0;
};