From 0c498ef04e55a836aa54fc6f4af7b0b0eafece21 Mon Sep 17 00:00:00 2001 From: Edouard Dupin Date: Thu, 22 Dec 2011 18:24:17 +0100 Subject: [PATCH] Add the Entry test lines --- jni/Main.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/jni/Main.cpp b/jni/Main.cpp index c0bb776..2a9c385 100644 --- a/jni/Main.cpp +++ b/jni/Main.cpp @@ -32,6 +32,7 @@ #include #include #include +#include #include #include @@ -54,6 +55,14 @@ class Plop :public ewol::Windows ewol::Button * myButton = new ewol::Button("LB"); mySizerVert->SubWidgetAdd(myButton); + + ewol::Entry * myEntry = new ewol::Entry("basic Text"); + myEntry->SetExpendY(true); + myEntry->SetFillY(true); + myEntry->SetExpendX(true); + myEntry->SetFillX(true); + mySizerVert->SubWidgetAdd(myEntry); + ewol::Label * myLabel = new ewol::Label("Mon Mabel"); myLabel->SetExpendY(true); myLabel->SetFillY(true);