From: Noha Park Date: Wed, 19 May 2010 01:25:48 +0000 (+0900) Subject: modify elm_tab X-Git-Tag: beat-winset-test_0.1.1-40~310 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5f0089f48ab43ff5603de75724b95df3d52acbb4;p=framework%2Fuifw%2Felementary.git modify elm_tab --- diff --git a/src/lib/elm_tab.h b/src/lib/elm_tab.h new file mode 100755 index 0000000..e877f89 --- /dev/null +++ b/src/lib/elm_tab.h @@ -0,0 +1,38 @@ +/* + * SLP + * Copyright (c) 2009 Samsung Electronics, Inc. + * All rights reserved. + * + * This software is a confidential and proprietary information + * of Samsung Electronics, Inc. ("Confidential Information"). You + * shall not disclose such Confidential Information and shall use + * it only in accordance with the terms of the license agreement + * you entered into with Samsung Electronics. + */ + +/** + * library for composing TW3 tab + * @file tab_ui.h + * @ingroup library libtab + * @brief this file is the header file including UI macros + * @author Jaehwan Kim + * @date 2009-08-07 + */ + +#ifndef __TAB_UI_H__ +#define __TAB_UI_H__ + + +///////////////////////////////////////////////////////////////////////////// +// +// UTIL define +// +///////////////////////////////////////////////////////////////////////////// +#define MAX_ITEM 8 +#define BASIC_SLOT_NUMBER 3 +#define ELM_MAX(v1, v2) (((v1) > (v2)) ? (v1) : (v2)) +#define KEYDOWN_INTERVAL 0.6 + +#define _EDJ(x) (Evas_Object *)elm_layout_edje_get(x) + +#endif