Public Member Functions | |
ChartsApplication (const WEnvironment &env) |
Definition at line 12 of file ChartsApplication.C.
ChartsApplication::ChartsApplication | ( | const WEnvironment & | env | ) | [inline] |
Definition at line 15 of file ChartsApplication.C.
00015 : WApplication(env) { 00016 setTitle("Charts example"); 00017 00018 messageResourceBundle().use("charts"); 00019 00020 root()->setPadding(10); 00021 root()->resize(WLength::Auto, WLength::Auto); 00022 00023 new ChartsExample(root()); 00024 00025 00026 /* 00027 * Set our style sheet last, so that it loaded after the ext stylesheets. 00028 */ 00029 useStyleSheet("charts.css"); 00030 }