main: disabled command line option 'tizen' and 'mobile' now.

I will not enable them for v0.1, they will be enabled in v0.2.
This commit is contained in:
Daniel Juyung Seo 2014-02-12 21:43:19 +09:00
parent c984b41eef
commit 7c9e393406
1 changed files with 5 additions and 5 deletions

View File

@ -19,15 +19,15 @@ static const Ecore_Getopt options = {
{
ECORE_GETOPT_STORE_STR('t', "theme",
"Set the theme to load and parse."),
ECORE_GETOPT_STORE_TRUE('m', "mobile", "Set the mobile view."),
//ECORE_GETOPT_STORE_TRUE('m', "mobile", "Set the mobile view."), // TODO: enable in v0.2
ECORE_GETOPT_STORE_STR('s', "screensize", "Set the screen size in "
"WIDTHxHEIGHT format. (300x500)"),
ECORE_GETOPT_STORE_TRUE('F', "fullscreen",
"Go into the fullscreen mode from start."),
ECORE_GETOPT_STORE_TRUE('T', "tizen",
/*ECORE_GETOPT_STORE_TRUE('T', "tizen",
"Run as a Tizen platform mode. Use Tizen "
"internal styles. This enables mobile mode "
"automatically."),
"automatically."),*/ // TODO: enable in v0.2
ECORE_GETOPT_STORE_STR('w', "widget",
"Set the widget to launch from command line."),
ECORE_GETOPT_VERSION ('V', "version"),
@ -57,10 +57,10 @@ elm_main(int argc, char **argv)
Ecore_Getopt_Value values[] = {
ECORE_GETOPT_VALUE_STR(theme),
ECORE_GETOPT_VALUE_BOOL(mobile_version),
//ECORE_GETOPT_VALUE_BOOL(mobile_version), // TODO: enable in v0.2
ECORE_GETOPT_VALUE_STR(screen_size),
ECORE_GETOPT_VALUE_BOOL(fullscreen),
ECORE_GETOPT_VALUE_BOOL(tizen),
//ECORE_GETOPT_VALUE_BOOL(tizen), // TODO: enable in v0.2
ECORE_GETOPT_VALUE_STR(widget),
ECORE_GETOPT_VALUE_BOOL(quit_option),
ECORE_GETOPT_VALUE_BOOL(quit_option),