Languages

Menu
Sites
Language
시스템 클립보드 사용에 관하여

Tizen 2.4 에서 시스템 클립보드를 사용하려 합니다.

 

forum에서는 아래 내용이 나오는데, 해당 내용은 아닌 것 같습니다.

preference_get_string("virtualClipboard", &text);

 

시스템 클립보드 관련 정보는 어디서 찾을 수 있나요?

Edited by: terry kim on 27 Nov, 2015

Responses

5 Replies
Alex Dem

Hi,
FYI, similar topic:
https://developer.tizen.org/forums/native-application-development/how-copy-text-system-clipbard
but approach with virtualClipboard (which is your own key) could be used inside your app only - it is not system clipboard.
Alexey

terry kim

I have already checked the contents of the link.

I would like to use the system clipboard. and implemet copy/paste between the app.

How can I use system clipboard, such as below image?


 

terry kim

Native app 에서 사용하려고 합니다.

Alex Dem 의 답변 링크는 앱이 실행될 때만 사용가능하고 앱들간 copy/paste 가 불가능합니다.

system clipboard를 제어하는 방법을 알고 싶습니다.(가능은 한가요?)

 

Mohammad Nur Nobi

To access system clipboard, use elm_cnp_selection_set() API.

 

Sample Code:

if(elm_cnp_selection_set(parent, ELM_SEL_TYPE_CLIPBOARD, ELM_SEL_FORMAT_TEXT, "String to be copied", strlen(String to be copied)) == EINA_FALSE)
    ERR("copy data set error!");