Terminal emulator with all the bells and whistles
https://www.enlightenment.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
512 B
21 lines
512 B
11 years ago
|
#include "private.h"
|
||
|
|
||
|
#include <Elementary.h>
|
||
|
#include "config.h"
|
||
|
#include "termio.h"
|
||
|
#include "options.h"
|
||
|
#include "options_colors.h"
|
||
|
|
||
|
void
|
||
|
options_colors(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);
|
||
|
}
|