[dialoguegroup] hidden style added
authorWooHyun Jung <wh0705.jung@samsung.com>
Mon, 23 Aug 2010 11:34:12 +0000 (20:34 +0900)
committerWooHyun Jung <wh0705.jung@samsung.com>
Mon, 23 Aug 2010 11:34:12 +0000 (20:34 +0900)
src/lib/Elementary.h.in
src/lib/elm_dialoguegroup.c

index d3a5662..eff2ced 100755 (executable)
@@ -2481,7 +2481,8 @@ extern "C" {
        ELM_DIALOGUEGROUP_ITEM_STYLE_DEFAULT = 0,
        ELM_DIALOGUEGROUP_ITEM_STYLE_EDITFIELD = (1 << 0),
        ELM_DIALOGUEGROUP_ITEM_STYLE_EDITFIELD_WITH_TITLE = (1 << 1),
-       ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT_TITLE = (1 << 2)
+       ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT_TITLE = (1 << 2),
+       ELM_DIALOGUEGROUP_ITEM_STYLE_HIDDEN = (1 << 3)
      } Elm_Dialoguegroup_Item_Style;
 
    EAPI Evas_Object *elm_dialoguegroup_add(Evas_Object *parent);
index 3995c2b..92f5918 100644 (file)
@@ -139,6 +139,8 @@ static void _set_item_theme(Dialogue_Item *item, const char *location)
                elm_layout_theme_set(item->bg_layout, "dialoguegroup", "editfield_with_title", location);
        else if (item->style == ELM_DIALOGUEGROUP_ITEM_STYLE_EDIT_TITLE)
                elm_layout_theme_set(item->bg_layout, "dialoguegroup", "title", location);
+       else if (item->style == ELM_DIALOGUEGROUP_ITEM_STYLE_HIDDEN)
+               elm_layout_theme_set(item->bg_layout, "dialoguegroup", "hidden", location);
 }
 
 /*