Add the Entry test lines
This commit is contained in:
parent
53ae19c952
commit
0c498ef04e
@ -32,6 +32,7 @@
|
|||||||
#include <ewol/widget/SizerVert.h>
|
#include <ewol/widget/SizerVert.h>
|
||||||
#include <ewol/widget/Test.h>
|
#include <ewol/widget/Test.h>
|
||||||
#include <ewol/widget/Label.h>
|
#include <ewol/widget/Label.h>
|
||||||
|
#include <ewol/widget/Entry.h>
|
||||||
|
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
@ -54,6 +55,14 @@ class Plop :public ewol::Windows
|
|||||||
|
|
||||||
ewol::Button * myButton = new ewol::Button("LB");
|
ewol::Button * myButton = new ewol::Button("LB");
|
||||||
mySizerVert->SubWidgetAdd(myButton);
|
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");
|
ewol::Label * myLabel = new ewol::Label("Mon Mabel");
|
||||||
myLabel->SetExpendY(true);
|
myLabel->SetExpendY(true);
|
||||||
myLabel->SetFillY(true);
|
myLabel->SetFillY(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user