Updated all header files to new format
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / text-editable-control-interface.h
index 6239a68..0f55494 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_TOOLKIT_TEXT_EDITABLE_CONTROL_INTERFACE_H
 
 /*
- * Copyright (c) 2016 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
 {
-
 class Actor;
 
 namespace Toolkit
 {
-
 namespace Text
 {
-
 /**
  * @brief An interface that the Text::Controller uses to notify about text changes and add decoration to the text control.
  */
 class EditableControlInterface
 {
 public:
-
   /**
    * @brief Virtual destructor.
    */
   virtual ~EditableControlInterface()
-  {}
+  {
+  }
 
   /**
    * @brief Called to signal that text has been inserted.
    */
-  virtual void TextInserted( unsigned int position, unsigned int length, const std::string &content ) = 0;
+  virtual void TextInserted(unsigned int position, unsigned int length, const std::string& content) = 0;
 
   /**
    * @brief Called to signal that text has been deleted.
    */
-  virtual void TextDeleted( unsigned int position, unsigned int length, const std::string &content ) = 0;
+  virtual void TextDeleted(unsigned int position, unsigned int length, const std::string& content) = 0;
 
   /**
    * @brief Called to signal that caret (cursor position) has been moved.
    */
-  virtual void CaretMoved( unsigned int position ) = 0;
+  virtual void CaretMoved(unsigned int position) = 0;
 
   /**
    * @brief Called to signal that text has been inserted or deleted.
@@ -75,7 +72,7 @@ public:
    *
    * @param[in] inputStyleMask Mask with the bits of the input style that has changed.
    */
-  virtual void InputStyleChanged( InputStyle::Mask inputStyleMask ) = 0;
+  virtual void InputStyleChanged(InputStyle::Mask inputStyleMask) = 0;
 
   /**
    * @brief Add a decoration.
@@ -83,7 +80,7 @@ public:
    * @param[in] decoration The actor displaying a decoration.
    * @param[in] needsClipping Whether the actor needs clipping.
    */
-  virtual void AddDecoration( Actor& actor, bool needsClipping ) = 0;
+  virtual void AddDecoration(Actor& actor, bool needsClipping) = 0;
 
   /**
    * @brief Editable status (on/off).
@@ -97,7 +94,7 @@ public:
    *
    * @param[in] editable The editable status.
    */
-  virtual void SetEditable( bool editable ) = 0;
+  virtual void SetEditable(bool editable) = 0;
 };
 
 } // namespace Text