adapt at the new OS abstraction

This commit is contained in:
Edouard Dupin 2012-08-19 16:56:59 +02:00
parent 699564e17f
commit ae9c0f8eeb
3 changed files with 7 additions and 6 deletions

View File

@ -395,7 +395,7 @@ void CodeView::OnGetFocus(void)
/* /*
ewol::widgetMessageMultiCast::Send(GetWidgetId(), ednMsgBufferId, m_bufferID); ewol::widgetMessageMultiCast::Send(GetWidgetId(), ednMsgBufferId, m_bufferID);
*/ */
ewol::KeyboardShow(ewol::KEYBOARD_MODE_CODE); ewol::KeyboardShow();
APPL_INFO("Focus - In"); APPL_INFO("Focus - In");
} }

View File

@ -215,4 +215,5 @@ void globals::ParameterGlobalsGui::OnReceiveMessage(ewol::EObject * CallerObject
} }
} }
} }

View File

@ -63,7 +63,7 @@ void APP_Init(void)
APPL_INFO("==> Init "PROJECT_NAME" (START) (Android) (Debug)"); APPL_INFO("==> Init "PROJECT_NAME" (START) (Android) (Debug)");
#endif #endif
#endif #endif
ewol::ChangeSize(800, 600); ewol::ChangeSize(Vector2D<int32_t>(800, 600));
etk::InitDefaultFolder(PROJECT_NAME); etk::InitDefaultFolder(PROJECT_NAME);
ewol::SetFontFolder("Font"); ewol::SetFontFolder("Font");
@ -139,9 +139,9 @@ void APP_Init(void)
// add files // add files
APPL_INFO("show list of files : "); APPL_INFO("show list of files : ");
for( int32_t iii=0 ; iii<ewol::CmdLineNb(); iii++) { for( int32_t iii=0 ; iii<ewol::CmdLine::Nb(); iii++) {
APPL_INFO("need load file : \"" << ewol::CmdLineGet(iii) << "\"" ); APPL_INFO("need load file : \"" << ewol::CmdLine::Get(iii) << "\"" );
etk::UString tmpppp = ewol::CmdLineGet(iii); etk::UString tmpppp = ewol::CmdLine::Get(iii);
ewol::EObjectMessageMultiCast::AnonymousSend(ednMsgOpenFile, tmpppp); ewol::EObjectMessageMultiCast::AnonymousSend(ednMsgOpenFile, tmpppp);
} }