SVN revision: 72907devs/lucas/wip
parent
002ca0803b
commit
0f3b3ccdbd
6 changed files with 50 additions and 2 deletions
@ -0,0 +1,20 @@ |
||||
#include "private.h" |
||||
|
||||
#include <Elementary.h> |
||||
#include "config.h" |
||||
#include "termio.h" |
||||
#include "options.h" |
||||
#include "options_theme.h" |
||||
|
||||
void |
||||
options_theme(Evas_Object *opbox, Evas_Object *term __UNUSED__) |
||||
{ |
||||
Evas_Object *o; |
||||
|
||||
o = elm_label_add(opbox); |
||||
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); |
||||
evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL); |
||||
elm_object_text_set(o, "Not Implemented Yet."); |
||||
evas_object_show(o); |
||||
elm_box_pack_end(opbox, o); |
||||
} |
@ -0,0 +1 @@ |
||||
void options_theme(Evas_Object *opbox, Evas_Object *term); |
@ -0,0 +1,20 @@ |
||||
#include "private.h" |
||||
|
||||
#include <Elementary.h> |
||||
#include "config.h" |
||||
#include "termio.h" |
||||
#include "options.h" |
||||
#include "options_wallpaper.h" |
||||
|
||||
void |
||||
options_wallpaper(Evas_Object *opbox, Evas_Object *term __UNUSED__) |
||||
{ |
||||
Evas_Object *o; |
||||
|
||||
o = elm_label_add(opbox); |
||||
evas_object_size_hint_weight_set(o, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); |
||||
evas_object_size_hint_align_set(o, EVAS_HINT_FILL, EVAS_HINT_FILL); |
||||
elm_object_text_set(o, "Not Implemented Yet."); |
||||
evas_object_show(o); |
||||
elm_box_pack_end(opbox, o); |
||||
} |
@ -0,0 +1 @@ |
||||
void options_wallpaper(Evas_Object *opbox, Evas_Object *term); |
Loading…
Reference in new issue