/** ******************************************************************************* * @file Main.cpp * @brief main fonction * @author Edouard DUPIN * @date 13/10/2011 * @par Project * ewol * * @par Copyright * Copyright 2011 Edouard DUPIN, all right reserved * * This software is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY. * * Licence summary : * You can modify and redistribute the sources code and binaries. * You can send me the bug-fix * * Term of the licence in in the file licence.txt. * ******************************************************************************* */ #include #include #include #include #include #include #include #include #include #include #include #include #include // need to run xcompmgr to have transparency class Plop :public ewol::Windows { public: Plop(void) { // generate the display : ewol::SizerHori * mySizer = new ewol::SizerHori(); SetSubWidget(mySizer); ewol::SizerVert * mySizerVert = new ewol::SizerVert(); mySizer->SubWidgetAdd(mySizerVert); ewol::Button * myButton = new ewol::Button("LB"); mySizerVert->SubWidgetAdd(myButton); ewol::Label * myLabel = new ewol::Label("Mon Mabel"); myLabel->SetExpendY(true); myLabel->SetFillY(true); mySizerVert->SubWidgetAdd(myLabel); mySizerVert = new ewol::SizerVert(); mySizer->SubWidgetAdd(mySizerVert); myButton = new ewol::Button("BT 3"); myButton->SetExpendX(true); //myButton->SetExpendY(true); myButton->SetFillX(true); mySizerVert->SubWidgetAdd(myButton); ewol::Test * myTest = new ewol::Test(); mySizerVert->SubWidgetAdd(myTest); ewol::CheckBox * myCheckBox = new ewol::CheckBox("mon label d'eK"); mySizerVert->SubWidgetAdd(myCheckBox); myCheckBox = new ewol::CheckBox("Exemple 2"); mySizerVert->SubWidgetAdd(myCheckBox); myCheckBox = new ewol::CheckBox("Exemple 3 et יא$"); mySizerVert->SubWidgetAdd(myCheckBox); myTest = new ewol::Test(); myTest->SetExpendY(true); mySizerVert->SubWidgetAdd(myTest); myButton = new ewol::Button("4 4 BT"); myButton->SetFillX(true); myButton->SetFillY(true); myButton->SetExpendY(true); mySizerVert->SubWidgetAdd(myButton); myButton = new ewol::Button("Exemple 2"); myButton->SetExpendX(true); myButton->SetFillY(true); mySizer->SubWidgetAdd(myButton); }; ~Plop(void) { }; }; static Plop * myWindowsExample = NULL; /** * @brief main application function Initialisation */ void APP_Init(int argc, char *argv[]) { ewol::ChangeSize(800, 600); /* if (true == ewol::AddFont("dataTest/TextMonospace.ebt", true, true, true) ) { //fontID = GetFontIdWithFileName("dataTest/TextMonospace.ebt"); } */ // set the default Path of the application : #ifdef PLATFORM_Linux etk::String homedir; #ifdef NDEBUG homedir = "/usr/share/"PROJECT_NAME"/"; #else char cCurrentPath[FILENAME_MAX]; if (!getcwd(cCurrentPath, FILENAME_MAX)) { homedir = "./assets/"; } else { cCurrentPath[FILENAME_MAX - 1] = '\0'; homedir = cCurrentPath; homedir += "/assets/"; } #endif SetBaseFolderData(homedir.c_str()); SetBaseFolderDataUser("~/."PROJECT_NAME"/"); SetBaseFolderCache("/tmp/"PROJECT_NAME"/"); #endif ewol::SetFontFolder("Font"); #ifdef EWOL_USE_FREE_TYPE ewol::SetDefaultFont("freefont/FreeMono", 14); #else //ewol::SetDefaultFont("ebtfont/Monospace", 14); ewol::SetDefaultFont("ebtfont/Monospace", 22); #endif //ewol::theme::LoadDefault("dataTest/exemple.eol"); /* etk::File fileTmp("exemple.eol", etk::FILE_TYPE_DATA); ewol::theme::LoadDefault(fileTmp); */ /* etk::File tmpFile("/data/data/com.example.EwolActivity.app/assets/theme/exemple.eol"); if (tmpFile.Exist() ) { EWOL_WARNING("file existed : " << tmpFile); } tmpFile = ("/data/data/com.example.EwolActivity/assets/theme/exemple.eol"); if (tmpFile.Exist() ) { EWOL_WARNING("file existed : " << tmpFile); } tmpFile=("/data/com.example.EwolActivity.app/assets/theme/exemple.eol"); if (tmpFile.Exist() ) { EWOL_WARNING("file existed : " << tmpFile); } tmpFile=("/data/com.example.EwolActivity/assets/theme/exemple.eol"); if (tmpFile.Exist() ) { EWOL_WARNING("file existed : " << tmpFile); } tmpFile=("/data/data/com.example.ewolactivity.app/assets/theme/exemple.eol"); if (tmpFile.Exist() ) { EWOL_WARNING("file existed : " << tmpFile); } tmpFile=("/data/data/com.example.ewolactivity/assets/theme/exemple.eol"); if (tmpFile.Exist() ) { EWOL_WARNING("file existed : " << tmpFile); } tmpFile=("/data/com.example.ewolactivity.app/assets/theme/exemple.eol"); if (tmpFile.Exist() ) { EWOL_WARNING("file existed : " << tmpFile); } tmpFile=("/data/com.example.ewolactivity/assets/theme/exemple.eol"); if (tmpFile.Exist() ) { EWOL_WARNING("file existed : " << tmpFile); } */ myWindowsExample = new Plop(); // create the specific windows ewol::DisplayWindows(myWindowsExample); } /** * @brief main application function Un-Initialisation */ void APP_UnInit(void) { delete(myWindowsExample); }