Merge "fix wrong behaviour of SelectNone()" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / text-controls / text-editor-devel.cpp
old mode 100755 (executable)
new mode 100644 (file)
index 875e270..f3f073b
@@ -1,8 +1,5 @@
-#ifndef DALI_TOOLKIT_TEXT_EDITOR_DEVEL_H
-#define DALI_TOOLKIT_TEXT_EDITOR_DEVEL_H
-
 /*
- * Copyright (c) 2017 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2021 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 namespace Dali
 {
-
 namespace Toolkit
 {
-
 namespace DevelTextEditor
 {
+InputMethodContext GetInputMethodContext(TextEditor textEditor)
+{
+  return GetImpl(textEditor).GetInputMethodContext();
+}
+
+MaxLengthReachedSignalType& MaxLengthReachedSignal(TextEditor textEditor)
+{
+  return GetImpl(textEditor).MaxLengthReachedSignal();
+}
+
+AnchorClickedSignalType& AnchorClickedSignal(TextEditor textEditor)
+{
+  return GetImpl(textEditor).AnchorClickedSignal();
+}
+
+CursorPositionChangedSignalType& CursorPositionChangedSignal(TextEditor textEditor)
+{
+  return GetImpl(textEditor).CursorPositionChangedSignal();
+}
+
+InputFilteredSignalType& InputFilteredSignal(TextEditor textEditor)
+{
+  return GetImpl(textEditor).InputFilteredSignal();
+}
+
+SelectionChangedSignalType& SelectionChangedSignal(TextEditor textEditor)
+{
+  return GetImpl(textEditor).SelectionChangedSignal();
+}
+
+SelectionClearedSignalType& SelectionClearedSignal(TextEditor textEditor)
+{
+  return GetImpl(textEditor).SelectionClearedSignal();
+}
+
+void SelectWholeText(TextEditor textEditor)
+{
+  GetImpl(textEditor).SelectWholeText();
+}
+
+void SelectNone(TextEditor textEditor)
+{
+  GetImpl(textEditor).SelectNone();
+}
+
+void SelectText(TextEditor textEditor, const uint32_t start, const uint32_t end)
+{
+  GetImpl(textEditor).SelectText(start, end);
+}
 
-InputMethodContext GetInputMethodContext( TextEditor textEditor )
+void ScrollBy(TextEditor textEditor, Vector2 scroll)
 {
-  return GetImpl( textEditor ).GetInputMethodContext();
+  GetImpl(textEditor).ScrollBy(scroll);
+}
+
+string CopyText(TextEditor textEditor)
+{
+  return GetImpl(textEditor).CopyText();
+}
+
+string CutText(TextEditor textEditor)
+{
+  return GetImpl(textEditor).CutText();
+}
+
+void PasteText(TextEditor textEditor)
+{
+  GetImpl(textEditor).PasteText();
 }
 
 } // namespace DevelTextEditor
@@ -41,5 +100,3 @@ InputMethodContext GetInputMethodContext( TextEditor textEditor )
 } // namespace Toolkit
 
 } // namespace Dali
-
-#endif // DALI_TOOLKIT_TEXT_EDITOR_DEVEL_H