summaryrefslogtreecommitdiff
path: root/sw/inc/crsrsh.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/crsrsh.hxx')
-rw-r--r--sw/inc/crsrsh.hxx14
1 files changed, 8 insertions, 6 deletions
diff --git a/sw/inc/crsrsh.hxx b/sw/inc/crsrsh.hxx
index 26e6895e88cd..a0205ffe4d52 100644
--- a/sw/inc/crsrsh.hxx
+++ b/sw/inc/crsrsh.hxx
@@ -326,7 +326,7 @@ public:
// only for usage in special cases allowed!
void ExtendedSelectAll(bool bFootnotes = true);
/// If ExtendedSelectAll() was called and selection didn't change since then.
- ::std::optional<::std::pair<SwNode const*, ::std::vector<SwTableNode*>>> ExtendedSelectedAll() const;
+ bool ExtendedSelectedAll();
enum class StartsWith { None, Table, HiddenPara };
/// If document body starts with a table or starts/ends with hidden paragraph.
StartsWith StartsWith_();
@@ -586,11 +586,8 @@ public:
// fields etc.
OUString GetSelText() const;
- /// Check if Point of current cursor is placed within a table.
- const SwTableNode* IsCursorInTable() const;
- bool MoveOutOfTable();
- bool TrySelectOuterTable();
- bool MoveStartText();
+ // Check of SPoint or Mark of current cursor are placed within a table.
+ inline const SwTableNode* IsCursorInTable() const;
bool IsCursorInFootnote() const;
@@ -904,6 +901,11 @@ inline bool SwCursorShell::IsMultiSelection() const
return m_pCurrentCursor->GetNext() != m_pCurrentCursor;
}
+inline const SwTableNode* SwCursorShell::IsCursorInTable() const
+{
+ return m_pCurrentCursor->GetNode().FindTableNode();
+}
+
inline bool SwCursorShell::IsCursorPtAtEnd() const
{
return m_pCurrentCursor->End() == m_pCurrentCursor->GetPoint();