Revert "[3.0] Add descriptions and example codes" 61/97661/1
authordongsug.song <dongsug.song@samsung.com>
Tue, 15 Nov 2016 00:17:35 +0000 (09:17 +0900)
committerdongsug.song <dongsug.song@samsung.com>
Tue, 15 Nov 2016 00:17:39 +0000 (09:17 +0900)
This reverts commit 638495740e3ddc49ada7ff96b40bf1c292df6514.

Change-Id: I8d31278bc97de54f875f20f7cdc78d4909f8d3aa

adaptors/public-api/adaptor-framework/application.h
adaptors/public-api/adaptor-framework/native-image-source.h
adaptors/public-api/adaptor-framework/tts-player.h
adaptors/public-api/adaptor-framework/window.h

index 3be6593..375fa0e 100644 (file)
@@ -145,7 +145,6 @@ public:
    * @param[in,out]  argc        A pointer to the number of arguments
    * @param[in,out]  argv        A pointer the the argument list
    * @param[in]      stylesheet  The path to user defined theme file
-   * @note If the stylesheet is not specified, then the library's default stylesheet will not be overridden.
    */
   static Application New( int* argc, char **argv[], const std::string& stylesheet );
 
@@ -157,7 +156,6 @@ public:
    * @param[in,out]  argv        A pointer the the argument list
    * @param[in]      stylesheet  The path to user defined theme file
    * @param[in]      windowMode  A member of WINDOW_MODE
-   * @note If the stylesheet is not specified, then the library's default stylesheet will not be overridden.
    */
   static Application New( int* argc, char **argv[], const std::string& stylesheet, WINDOW_MODE windowMode );
 
@@ -279,10 +277,7 @@ public: // Stereoscopy
   /**
    * @brief Set the stereo base (eye separation) for Stereoscopic 3D
    *
-   * The stereo base is the distance in millimetres between the eyes. Typical values are
-   * between 50mm and 70mm. The default value is 65mm.
    * @SINCE_1_0.0
-   * @remarks SetStereoBase() is supported in mobile applications only.
    * @param[in] stereoBase The stereo base (eye separation) for Stereoscopic 3D
    */
   void SetStereoBase( float stereoBase );
@@ -291,7 +286,6 @@ public: // Stereoscopy
    * @brief Get the stereo base (eye separation) for Stereoscopic 3D
    *
    * @SINCE_1_0.0
-   * @remarks GetStereoBase() is supported in mobile applications only.
    * @return The stereo base (eye separation) for Stereoscopic 3D
    */
   float GetStereoBase() const;
index effacce..a6258ce 100755 (executable)
@@ -53,11 +53,8 @@ typedef Dali::IntrusivePtr<Dali::NativeImageSource> NativeImageSourcePtr;
  *
  * NativeImageSource can be created internally or
  * externally by native image source.
- * NativeImage is a platform specific way of providing pixel data to the GPU for rendering,
- * for example via an EGL image.
  *
  * @SINCE_1_1.4
- * @see NativeImage
  */
 class DALI_IMPORT_API NativeImageSource : public NativeImageInterface
 {
@@ -94,7 +91,6 @@ public:
    * @SINCE_1_0.0
    * @param[in] nativeImageSource must be a any handle with native image source
    * @return A smart-pointer to a newly allocated image.
-   * @see NativeImageInterface
    */
   static NativeImageSourcePtr New( Any nativeImageSource );
 
index 27b8a5e..f233f15 100644 (file)
@@ -52,8 +52,8 @@ public: // ENUMs
   enum Mode
   {
     DEFAULT = 0,  ///< Default mode for normal application @SINCE_1_0.0
-    NOTIFICATION, ///< Notification mode, such as playing utterance is started or completed @SINCE_1_0.0
-    SCREEN_READER, ///< Screen reader mode. To help visually impaired users interact with their devices, screen reader reads text or graphic elements on the screen using the TTS engine. @SINCE_1_0.0
+    NOTIFICATION, ///< Notification mode @SINCE_1_0.0
+    SCREEN_READER, ///< Screen reader mode @SINCE_1_0.0
     MODE_NUM
   };
 
index 0df8dae..5bfe0ca 100644 (file)
@@ -63,13 +63,13 @@ public:
   // Enumerations
 
   /**
-   * @brief Orientation of the window is the way in which a rectangular page is oriented for normal viewing.
+   * @brief Orientation of the window.
    * @SINCE_1_0.0
    */
   enum WindowOrientation
   {
-    PORTRAIT = 0,  ///< Portrait orientation. The height of the display area is greater than the width. @SINCE_1_0.0
-    LANDSCAPE = 90,  ///< Landscape orientation. A wide view area is needed. @SINCE_1_0.0
+    PORTRAIT = 0,  ///< Portrait orientation @SINCE_1_0.0
+    LANDSCAPE = 90,  ///< Landscape orientation @SINCE_1_0.0
     PORTRAIT_INVERSE = 180,  ///< Portrait inverse orientation @SINCE_1_0.0
     LANDSCAPE_INVERSE = 270  ///< Landscape inverse orientation @SINCE_1_0.0
   };
@@ -232,7 +232,6 @@ public:
 
   /**
    * @brief Returns the Drag & drop detector which can be used to receive drag & drop events.
-   * @note  Not intended for application developers.
    * @SINCE_1_0.0
    * @return A handle to the DragAndDropDetector.
    */
@@ -240,8 +239,6 @@ public:
 
   /**
    * @brief Get the native handle of the window.
-   *
-   * When users call this function, it wraps the actual type used by the underlying window system.
    * @SINCE_1_0.0
    * @return The native handle of the window or an empty handle.
    */