int ug_type;
void *ug_login_data;
int sort_type; /* Types: wminfo_media_sort_type; pass it to imageviewer */
- ui_gadget_h gallery_ug_called_by_me; /* The gallery-ug called by Gallery for appsvc */
+ ui_gadget_h gallery_ug_called_by_me; /* The gallery-ug called by Gallery for appcontrol */
} gl_ug_info;
typedef struct
<label xml:lang="fr-fr">Galerie</label>
<label xml:lang="ko-kr">갤러리</label>
<application-service>
- <operation name="http://tizen.org/appsvc/operation/view"/>
+ <operation name="http://tizen.org/appcontrol/operation/view"/>
</application-service>
<application-service>
- <operation name="http://tizen.org/appsvc/operation/wallpaper"/>
+ <operation name="http://tizen.org/appcontrol/operation/wallpaper"/>
</application-service>
<application-service>
- <operation name="http://tizen.org/appsvc/operation/pick"/>
+ <operation name="http://tizen.org/appcontrol/operation/pick"/>
</application-service>
<application-service>
- <operation name="http://tizen.org/appsvc/operation/pick"/>
+ <operation name="http://tizen.org/appcontrol/operation/pick"/>
<mime name="image/*"/>
<mime name="video/*"/>
</application-service>
Name: org.tizen.gallery
Summary: org.tizen.gallery UX
-Version: 1.1.32
+Version: 1.1.33
Release: 1
Group: Applications
License: Flora Software License
filter.count = end_pos - start_pos + 1;\r
filter.with_meta = true;\r
\r
- /* get file-type from service when launched by appsvc */\r
+ /* get file-type from service when launched by appcontrol */\r
if (ad->albuminfo.aul_launch_type == GL_AUL_T_VIEW_ALBUM) {\r
if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_IMAGE) {\r
g_strlcpy(filter.cond, GL_CONDITION_IMAGE,\r
/* check root case */
al_na = GL_ALBUM_PHOME_ROOT_NAME;
} else if (ad->albuminfo.aul_launch_type == GL_AUL_T_VIEW_ALBUM) {
- /* launch by appsvc */
+ /* launch by appcontrol */
if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_IMAGE)
al_na = GL_ALBUM_IMAGES_NAME;
else if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_VIDEO)
#define GL_MIME_SEP ":"
#define GL_MIME_TYPE_GALLERY "gallery.uri"
-#define GL_SERVICE_OPERATION_WALLPAPER "http://tizen.org/appsvc/operation/wallpaper"
+#define GL_SERVICE_OPERATION_WALLPAPER "http://tizen.org/appcontrol/operation/wallpaper"
struct text_part {
char *part;
gl_dbgW("Bakc(End) key");
} else if (!strcmp(key_event->keyname, KEY_SELECT)) {
gl_dbgW("Home key");
- /* For select appsvc, destory ug when HOME key is pressed */
+ /* For select appcontrol, destory ug when HOME key is pressed */
gl_ext_destroy_gallery_ug(ad);
} else if (!strcmp(key_event->keyname, KEY_POWER)) {
gl_dbgW("Power key");
/* DB update callback unregister. */
gl_dereg_db_update_noti();
- /* Free memory allocated for appsvc */
+ /* Free memory allocated for appcontrol */
_gallery_init_app_svc(ad);
ug_destroy_all();
return -1;
}
-/* init appsvc launch related global variables */
+/* init appcontrol launch related global variables */
static int _gallery_init_app_svc(void *data)
{
GL_CHECK_VAL(data, -1);
gl_dbg("");
gl_appdata *ad = (gl_appdata *)data;
- /* For select appsvc, destory ug when HOME key is pressed */
+ /* For select appcontrol, destory ug when HOME key is pressed */
if (ad->albuminfo.aul_launch_type != GL_AUL_T_NONE &&
ad->albuminfo.aul_launch_type != GL_AUL_T_VIEW_ALBUM &&
ad->uginfo.gallery_ug_called_by_me) {
/* check root case */\r
al_na = GL_ALBUM_PHOME_ROOT_NAME;\r
} else if (ad->albuminfo.aul_launch_type == GL_AUL_T_VIEW_ALBUM) {\r
- /* launch by appsvc */\r
+ /* launch by appcontrol */\r
if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_IMAGE)\r
al_na = GL_ALBUM_IMAGES_NAME;\r
else if (ad->albuminfo.aul_file_type == GL_AUL_FILE_T_VIDEO)\r
Evas_Object *segment = NULL;
/**
- * Stop creating segment bar when launched by appsvc with
+ * Stop creating segment bar when launched by appcontrol with
* specified file-type ( image or video ) only.
*/
if (ad->albuminfo.aul_launch_type == GL_AUL_T_VIEW_ALBUM &&
(ad->albuminfo.aul_file_type == GL_AUL_FILE_T_IMAGE ||
ad->albuminfo.aul_file_type == GL_AUL_FILE_T_VIDEO)) {
- gl_dbgW("Segment bar not created when launched by appsvc!");
+ gl_dbgW("Segment bar not created when launched by appcontrol!");
return NULL;
}