summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHwankyu Jhun <h.jhun@samsung.com>2019-04-18 08:16:50 +0900
committerHwankyu Jhun <h.jhun@samsung.com>2019-04-18 09:16:19 +0900
commit21db8fa2156eb29c1274c2cc97609b698996503e (patch)
tree30b4e2e2a8fb138dcb7ba852e3ee67d75178af89
parent37f7f3c49f6dee73aef30d74a58c2c4f04428472 (diff)
downloadsyspopup-21db8fa2156eb29c1274c2cc97609b698996503e.tar.gz
syspopup-21db8fa2156eb29c1274c2cc97609b698996503e.tar.bz2
syspopup-21db8fa2156eb29c1274c2cc97609b698996503e.zip
Add README file
Change-Id: I4d07368155afe1d891b2753c56ed9ef899f64a5b Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
-rw-r--r--README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8c5bfb9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,29 @@
+# SYSPOPUP
+
+- The syspopup package is a library to set the notification level of the window. It's not an application to show the popup window. (If you think this package is an application, it's misunderstanding.)
+</br>
+</br>
+</br>
+## How to register a syspopup
+- If you install a xml file to the syspopup directory which is "/usr/share/syspopup/\<profile\>", the syspopup information will be registered automatically while creating the binary image.
+</br>
+e.g. org.tizen.hellopopup.xml (for mobile profile)
+</br>
+/usr/share/syspopup/mobile/org.tizen.hellopopup.xml
+```
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<manifest xmlns="http://tizen.org/ns/packages" version="5.5">
+ <profile name="mobile"/>
+ <syspopup name="hellopopup" priority="medium" focus="false" timeout="-1" term-action="hide" endkey-action="hide" appid="org.tizen.hellopopup"/>
+</manifest>
+```
+
+ Attribute | Description
+ ------------- | -------------
+ name | The popup name
+ appid | The application ID of the popup
+ priority | The priority of the notification level of the popup window (value: 'default' or 'medium' or 'high' or 'top')
+ focus | The focus. If it's 'true', the popup window has a focus (value: 'true' or 'false')
+ timeout | The timeout interval. (value: -1 ~ integer [-1: infinite, 0: don't use])
+ term-action | The termination action (value: 'term' or 'hide' or 'ignore')
+ endkey-action | The endkey action (value: 'term' or 'hide' or 'ignore') \ No newline at end of file