~tux-style/eflxx/eflxx_examples

« back to all changes in this revision

Viewing changes to src/elementaryxx/full/test_radio.cpp

  • Committer: seoz
  • Date: 2011-04-13 13:25:55 UTC
  • Revision ID: svn-v4:7cbeb6ba-43b4-40fd-8cce-4c39aea84d33:trunk/BINDINGS/cxx/eflxx_examples:58633
BINDINGS/cxx elementaryxx: Removed trailing whitespaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
  Radio *rd = NULL;
6
6
  Radio *rdg = NULL;
7
7
  Icon *ic = NULL;
8
 
  
 
8
 
9
9
  Window *win = Window::factory ("radio", ELM_WIN_BASIC);
10
10
  win->setTitle ("Radios");
11
11
  win->setAutoDel (true);
12
 
  
 
12
 
13
13
  Background *bg = Background::factory (*win);
14
14
  win->addObjectResize (*bg);
15
15
  bg->setWeightHintSize (EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
16
16
  bg->show ();
17
 
  
 
17
 
18
18
  Box *bx = Box::factory (*win);
19
19
  win->addObjectResize (*bx);
20
20
  bx->setWeightHintSize (EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
21
21
  bx->show ();
22
 
  
 
22
 
23
23
  ic = Icon::factory (*win);
24
24
  ic->setFile (searchPixmapFile ("elementaryxx/logo_small.png"));
25
25
  ic->setAspectHintSize (EVAS_ASPECT_CONTROL_VERTICAL, Size (1, 1));
82
82
  bx->packEnd (*rd);
83
83
  rd->show ();
84
84
  ic->show ();
85
 
  
 
85
 
86
86
  rdg->setValue (2);
87
87
 
88
88
  win->show ();