Add initial start of code to create monitors.

Signed-off-by: Christopher Michael <cp.michael@samsung.com>

SVN revision: 84127
This commit is contained in:
Christopher Michael 2013-02-19 10:55:36 +00:00 committed by Christopher Michael
parent 6cf9624275
commit 468998fca6
1 changed files with 10 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#include "e.h"
#include "e_mod_main.h"
#include "e_smart_randr.h"
#include "e_smart_monitor.h"
/* local structures */
typedef struct _E_Smart_Data E_Smart_Data;
@ -46,6 +47,15 @@ e_smart_randr_add(Evas *evas)
return evas_object_smart_add(evas, smart);
}
void
e_smart_randr_monitors_create(Evas_Object *obj)
{
E_Smart_Data *sd;
/* try to get the objects smart data */
if (!(sd = evas_object_smart_data_get(obj))) return;
}
/* local functions */
static void
_e_smart_add(Evas_Object *obj)