summaryrefslogtreecommitdiff
path: root/include/smartsearch.h
blob: 1edd84e23418522788747ab1ab9bc88810b890e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 * Copyright 2012  Samsung Electronics Co., Ltd
 * 
 * Licensed under the Flora License, Version 1.0 (the License);
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.tizenopensource.org/license
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an AS IS BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */






#ifndef __DEF_SMARTSEARCH_H__
#define __DEF_SMARTSEARCH_H__

#include <glib.h>
#include <time.h>
#include <Elementary.h>
#include <Ecore_X.h>
#include <appcore-efl.h>
#include <Ecore_IMF.h>
#include <vconf.h>
#include <aul.h>
#include <ui-gadget.h>
#include <malloc.h>
extern "C" {
}
#include <sqlite3.h>
#include <media-svc.h>
#include <MapiControl.h>
#include <MapiStorage.h>
#include <MapiMessage.h>
#include <MsgStorageTypes.h>

#include "smartsearch_define.h"
#include "ps_debug_util.h"
#include "search_bar.h"
#include "ps_makeupviews.h"
#include "ps_app_interface.h"
#include "common_util.h"
#include "util-func.h"

#define _EDJ(x)    elm_layout_edje_get(x)
 
struct search_more_result{
	int next_point;
	int offset;
	int loop_cnt;
	int result_cnt;
};

struct search_item_sel {
	unsigned char type;
	char path[MAX_LENGTH_PER_PATH];
	char main_id[MAX_LENGTH_PER_ID];
	char main_buf[MAX_LENGTH_PER_LINE];
	char sub_buf[MAX_LENGTH_PER_LINE];
};

struct appdata {
	Evas_Object *win_main;
	Evas_Object *layout_main;
	Evas_Object *navi_bar;

	double scale_factor;

	Evas_Object *search_entry;
	Evas_Object *search_bar;
	Evas_Object *search_cancel_btn;
	Evas_Object *search_gl;
	Evas_Object *noresult_view;
	Evas_Object *sb_layout;
	Evas_Object *back_btn;

	Evas_Object *ctxpopup;
	Evas_Object *cate_ctxpopup;

	Evas_Object *cate_btn;
	Ecore_Idler *idler_search;
	Ecore_Idler *idler_create_ui;
	
	int touch_x;
	int touch_y;

	Elm_Genlist_Item_Class *itc_pslist_1line;
	Elm_Genlist_Item_Class *itc_pslist_2line;
	Elm_Genlist_Item_Class *itc_grouptitle;
	Elm_Genlist_Item_Class *itc_listmore;

	search_more_result cate_info[SEARCH_TYPE_PHONE_MAX];

	char *search_word;
	char *not_markup_search_word;

	int back_btn_type;

	Evas_Object *effect_layout;
	ui_gadget *detail_ug;

	Elm_Object_Item *gl_result_group_item[PHONE_CATEGORY_LIST_CNT];

	sqlite3 *search_db_hd;
	sqlite3_stmt *search_db_sql_stmt[SEARCH_STMT_MAX];

	/* Handle List */
	MSG_HANDLE_T msg_handle;
	MediaSvcHandle *media_handle;
};

#endif