try error

This commit is contained in:
Edouard Dupin 2012-01-25 23:32:14 +01:00
parent 102e11b74a
commit fda95289bd
2 changed files with 31 additions and 13 deletions

View File

@ -3,7 +3,8 @@
package="com.heeroyui.ednpackage"
android:versionCode="1"
android:versionName="1.0">
<application android:label="Edn">
<application android:label="Edn"
android:icon="@drawable/ic_luncher_edn">
<!--android:hasCode="false"-->
<!-- classpath-->
<activity android:name=".edn"

View File

@ -70,32 +70,36 @@ void APP_Init(int argc, char *argv[])
#endif
ewol::SetFontFolder("Font");
#ifdef EWOL_USE_FREE_TYPE
ewol::SetDefaultFont("freefont/FreeMono.ttf", 12);
//ewol::SetDefaultFont("freefont/FreeMonoBold.ttf", 12);
//ewol::SetDefaultFont("ACharmingFont.ttf", 45);
//ewol::SetDefaultFont("Monospace/Monospace", 40);
//ewol::SetDefaultFont("unispace.ttf", 12);
#else
//ewol::SetDefaultFont("ebtfont/Monospace", 14);
ewol::SetDefaultFont("ebtfont/Monospace", 22);
#endif
//ewol::SetDefaultFont("freefont/FreeMono.ttf", 12);
//ewol::SetDefaultFont("freefont/FreeMonoBold.ttf", 12);
//ewol::SetDefaultFont("ACharmingFont.ttf", 45);
//ewol::SetDefaultFont("Monospace/Monospace", 40);
//ewol::SetDefaultFont("unispace.ttf", 12);
EDN_DEBUG("TEST1");
// init internal global value
globals::init();
EDN_DEBUG("TEST2");
ClipBoard::Init();
EDN_DEBUG("TEST3");
// init ALL Singleton :
(void)MsgBroadcastCore::getInstance();
EDN_DEBUG("TEST4");
//(void)AccelKey::getInstance();
(void)WindowsManager::getInstance();
EDN_DEBUG("TEST5");
(void)CTagsManager::getInstance();
EDN_DEBUG("TEST6");
BufferManager *myBufferManager = BufferManager::getInstance();
EDN_DEBUG("TEST7");
// set color and other trucs...
ColorizeManager *myColorManager = NULL;
myColorManager = ColorizeManager::getInstance();
EDN_DEBUG("TEST8");
etk::String homedir;
//homedir = getenv("HOME");
#ifdef NDEBUG
@ -106,14 +110,19 @@ void APP_Init(int argc, char *argv[])
//homedir += "color_black.xml";
homedir = "color_white.xml";
myColorManager->LoadFile( homedir.c_str() );
EDN_DEBUG("TEST9");
myColorManager->DisplayListOfColor();
EDN_DEBUG("TEST10");
HighlightManager *myHighlightManager = NULL;
myHighlightManager = HighlightManager::getInstance();
EDN_DEBUG("TEST11");
myHighlightManager->loadLanguages();
EDN_DEBUG("TEST12");
// open display
MsgBroadcastCore::getInstance()->SendMessage(NULL, EDN_MSG__GUI_SHOW_MAIN_WINDOWS);
EDN_DEBUG("TEST13");
// get the curent program folder
char cCurrentPath[FILENAME_MAX];
@ -123,10 +132,14 @@ void APP_Init(int argc, char *argv[])
cCurrentPath[FILENAME_MAX - 1] = '\0';
//EDN_INFO("The current working directory is " << cCurrentPath);
EDN_DEBUG("TEST14");
basicWindows = new MainWindows();
EDN_DEBUG("TEST15");
// add files
EDN_INFO("show list of files : ");
/*
for( int32_t i=1 ; i<argc; i++) {
EDN_INFO("need load file : \"" << argv[i] << "\"" );
etk::File myfile((char *)argv[i], etk::FILE_TYPE_DIRECT);
@ -136,7 +149,9 @@ void APP_Init(int argc, char *argv[])
MsgBroadcastCore::getInstance()->SendMessage(NULL, EDN_MSG__CURRENT_CHANGE_BUFFER_ID, idBuffOpened);
}
}
}
}*/
EDN_DEBUG("TEST16");
/*
{
etk::File myfile((char *)"licence.txt", etk::FILE_TYPE_DIRECT);
@ -150,9 +165,11 @@ void APP_Init(int argc, char *argv[])
EDN_ERROR("Can not allocate the basic windows");
ewol::Stop();
}
EDN_DEBUG("TEST17");
// create the specific windows
ewol::DisplayWindows(basicWindows);
EDN_DEBUG("TEST18");
}