elementary: Improve include file modularity

Move stuff out of elm_priv.h

Signed-off-by: Mike McCormack <mj.mccormack@samsung.com>

SVN revision: 63900
This commit is contained in:
Mike McCormack 2011-10-07 05:56:07 +00:00 committed by Mike McCormack
parent 3c084f09c4
commit beafec3884
20 changed files with 24 additions and 5 deletions

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_box.h"
static const char SIG_CHILD_ADDED[] = "child,added";
static const char SIG_CHILD_REMOVED[] = "child,removed";

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_scroller.h"
#ifndef MAX
# define MAX(a, b) (((a) > (b)) ? (a) : (b))

View File

@ -1,6 +1,7 @@
#include <Elementary.h>
#include <Elementary_Cursor.h>
#include "elm_priv.h"
#include "els_scroller.h"
/* Maximum chunk size to be inserted to the entry at once

View File

@ -1,6 +1,7 @@
#include <Elementary.h>
#include <Elementary_Cursor.h>
#include "elm_priv.h"
#include "els_scroller.h"
/* --
* TODO:

View File

@ -3,6 +3,7 @@
#include <Elementary.h>
#include <Elementary_Cursor.h>
#include "elm_priv.h"
#include "els_scroller.h"
#define SWIPE_MOVES 12
#define MAX_ITEMS_PER_BLOCK 32

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_icon.h"
#ifdef ELM_EFREET
#define NON_EXISTING (void *)-1

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_icon.h"
typedef struct _Widget_Data Widget_Data;

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_box.h"
typedef struct _Widget_Data Widget_Data;

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_scroller.h"
#define SWIPE_MOVES 12

View File

@ -4,6 +4,7 @@
#include "Elementary.h"
#include "elm_priv.h"
#include "els_scroller.h"
typedef struct _Widget_Data Widget_Data;
typedef struct _Pan Pan;

View File

@ -1,5 +1,7 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_scroller.h"
#include "els_box.h"
typedef struct _Widget_Data Widget_Data;
struct _Widget_Data

View File

@ -1,5 +1,7 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_icon.h"
#include "els_scroller.h"
typedef struct _Widget_Data Widget_Data;

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_scroller.h"
/*
* TODO (maybe - optional future stuff):

View File

@ -13,11 +13,6 @@
# include <Ecore_WinCE.h>
#endif
#include "els_pan.h"
#include "els_scroller.h"
#include "els_box.h"
#include "els_icon.h"
#include "elm_widget.h"
#define CRITICAL(...) EINA_LOG_DOM_CRIT(_elm_log_dom, __VA_ARGS__)

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_scroller.h"
typedef struct _Widget_Data Widget_Data;

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_icon.h"
static Elm_Theme theme_default =
{

View File

@ -1,5 +1,8 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_scroller.h"
#include "els_box.h"
#include "els_icon.h"
typedef struct _Widget_Data Widget_Data;

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_box.h"
static void
_smart_extents_calculate(Evas_Object *box, Evas_Object_Box_Data *priv, int horizontal, int homogeneous)

View File

@ -1,5 +1,6 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_icon.h"
typedef struct _Smart_Data Smart_Data;

View File

@ -1,5 +1,7 @@
#include <Elementary.h>
#include "elm_priv.h"
#include "els_scroller.h"
#include "els_pan.h"
#define SMART_NAME "els_scroller"
#define API_ENTRY Smart_Data *sd; sd = evas_object_smart_data_get(obj); if ((!obj) || (!sd) || (evas_object_type_get(obj) && strcmp(evas_object_type_get(obj), SMART_NAME)))