Enlightenment CVS committal Author : nerochiaro Project : e17 Module : proto
Dir : e17/proto/ruby-efl/src/ewl Modified Files: config.rb Log Message: keep up with class hierarchy change: new Range class, some classes reparented to Range. =================================================================== RCS file: /cvs/e/e17/proto/ruby-efl/src/ewl/config.rb,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- config.rb 11 Aug 2006 11:47:07 -0000 1.1 +++ config.rb 11 Aug 2006 19:01:55 -0000 1.2 @@ -19,6 +19,7 @@ 'ewl_text.h', 'ewl_entry.h', 'ewl_colorpicker.h', 'ewl_colordialog.h', 'ewl_password.h', + 'ewl_range.h', 'ewl_seeker.h', 'ewl_scrollbar.h', 'ewl_spacer.h', 'ewl_spinner.h', @@ -61,76 +62,90 @@ :classes => [ { :name => 'EwlBase', :wraps => 'ewl' } , - { :name => 'EObject', :wraps => 'object', :child_of => 'EwlBase' } , - { :name => 'Widget' , :child_of => 'EObject' } , - { :name => 'Container' , :child_of => 'Widget' } , - { :name => 'Box' , :child_of => 'Container' } , - { :name => 'VBox' , :child_of => 'Box' } , - { :name => 'HBox' , :child_of => 'Box' } , - { :name => 'FreeBox' , :child_of => 'Box' } , - { :name => 'Border' , :child_of => 'Box' } , - { :name => 'Cell' , :child_of => 'Container' } , - { :name => 'Row' , :child_of => 'Widget' } , - { :name => 'Grid' , :child_of => 'Container' } , - { :name => 'Table' , :child_of => 'Container' } , - { :name => 'EConfig', :wraps => 'config', :child_of => 'EwlBase' } , - { :name => 'Theme' , :child_of => 'EwlBase' } , - { :name => 'Label' , :child_of => 'Widget' } , - { :name => 'Button' , :child_of => 'Box' } , - { :name => 'Floater' , :child_of => 'Box' } , - { :name => 'Overlay' , :child_of => 'Container' } , - { :name => 'Embed' , :child_of => 'Container' } , - { :name => 'Window' , :child_of => 'Embed' } , - { :name => 'Dialog' , :child_of => 'Window' } , - { :name => 'FileList' , :child_of => 'Box' } , - { :name => 'FileList_List' , :child_of => 'FileList' } , - { :name => 'FileList_Column' , :child_of => 'FileList' } , - { :name => 'FileList_Icon' , :child_of => 'FileList' } , - { :name => 'FilePicker' , :child_of => 'Box' } , - { :name => 'FileDialog' , :child_of => 'Dialog' } , - { :name => 'Text' , :child_of => 'Container' } , - { :name => 'TextTrigger' , :wraps => 'text_trigger', :child_of => 'Widget' } , - { :name => 'Entry' , :child_of => 'Text' } , - { :name => 'Password' , :child_of => 'Entry' } , - { :name => 'ColorPicker' , :child_of => 'Box' } , - { :name => 'ColorDialog' , :child_of => 'Dialog' } , - { :name => 'Seeker' , :child_of => 'Container' } , - { :name => 'Scrollbar' , :child_of => 'Box' }, - { :name => 'Scrollpane' , :child_of => 'Container' }, - { :name => 'Spacer' , :child_of => 'Widget' }, - { :name => 'Spinner' , :child_of => 'Box' }, - { :name => 'Image' , :child_of => 'Widget' }, - { :name => 'Spectrum' , :child_of => 'Overlay' }, - { :name => 'MenuItem' , :wraps => 'menu_item', :child_of => 'Button' }, - { :name => 'MenuBase' , :child_of => 'MenuItem' }, - { :name => 'Menu' , :child_of => 'MenuBase' }, - { :name => 'IMenu' , :child_of => 'MenuBase' }, - { :name => 'MenuBar' , :child_of => 'Box' }, - { :name => 'VMenuBar' , :child_of => 'MenuBar' }, - { :name => 'HMenuBar' , :child_of => 'MenuBar' }, - { :name => 'Combo' , :child_of => 'MenuBase' }, - { :name => 'Model' , :child_of => 'EwlBase' }, - { :name => 'View' , :child_of => 'EwlBase' }, - { :name => 'Check' , :child_of => 'Widget' }, - { :name => 'CheckButton' , :child_of => 'Button' }, - { :name => 'RadioButton' , :child_of => 'CheckButton' }, - { :name => 'Separator' , :child_of => 'Widget' }, - { :name => 'HSeparator' , :child_of => 'Separator' }, - { :name => 'VSeparator' , :child_of => 'Separator' }, - { :name => 'Calendar' , :child_of => 'Box' }, - { :name => 'DatePicker' , :child_of => 'Text' }, - { :name => 'Icon' , :child_of => 'Box' }, - { :name => 'IconBox' , :child_of => 'Box' }, - { :name => 'IconBoxIcon' , :wraps => 'iconbox_icon', :child_of => 'Box' }, - { :name => 'Media' , :child_of => 'Widget' }, - { :name => 'Notebook' , :child_of => 'Box' }, - { :name => 'Progressbar' , :child_of => 'Container' }, - { :name => 'Paned' , :child_of => 'Container' }, - { :name => 'PanedGrabber' , :wraps => 'paned_grabber', :child_of => 'Container' }, - { :name => 'StatusBar' , :child_of => 'Box' }, - { :name => 'DND' , :child_of => 'EwlBase' }, - { :name => 'Tree' , :child_of => 'Container' }, - { :name => 'Tree2' , :child_of => 'Container' } + { :name => 'EConfig', :wraps => 'config', :child_of => 'EwlBase' } , + { :name => 'Theme' , :child_of => 'EwlBase' } , + { :name => 'Model' , :child_of => 'EwlBase' }, + { :name => 'View' , :child_of => 'EwlBase' }, + { :name => 'DND' , :child_of => 'EwlBase' }, + + { :name => 'EObject', :wraps => 'object', :child_of => 'EwlBase' } , + + { :name => 'Widget' , :child_of => 'EObject' } , + { :name => 'Label' , :child_of => 'Widget' } , + { :name => 'TextTrigger' , :wraps => 'text_trigger', :child_of => 'Widget' } , + { :name => 'Row' , :child_of => 'Widget' } , + { :name => 'Spacer' , :child_of => 'Widget' }, + { :name => 'Image' , :child_of => 'Widget' }, + { :name => 'Check' , :child_of => 'Widget' }, + { :name => 'Media' , :child_of => 'Widget' }, + + { :name => 'Separator' , :child_of => 'Widget' }, + { :name => 'HSeparator' , :child_of => 'Separator' }, + { :name => 'VSeparator' , :child_of => 'Separator' }, + + { :name => 'Container' , :child_of => 'Widget' } , + { :name => 'Cell' , :child_of => 'Container' } , + { :name => 'Grid' , :child_of => 'Container' } , + { :name => 'Table' , :child_of => 'Container' } , + { :name => 'Scrollpane' , :child_of => 'Container' }, + { :name => 'Tree' , :child_of => 'Container' }, + { :name => 'Tree2' , :child_of => 'Container' }, + { :name => 'Paned' , :child_of => 'Container' }, + { :name => 'PanedGrabber' , :wraps => 'paned_grabber', :child_of => 'Container' }, + + { :name => 'Overlay' , :child_of => 'Container' } , + { :name => 'Spectrum' , :child_of => 'Overlay' }, + + { :name => 'Text' , :child_of => 'Container' } , + { :name => 'DatePicker' , :child_of => 'Text' }, + { :name => 'Entry' , :child_of => 'Text' } , + { :name => 'Password' , :child_of => 'Entry' } , + + { :name => 'Range' , :child_of => 'Container' } , + { :name => 'Seeker' , :child_of => 'Range' } , + { :name => 'Spinner' , :child_of => 'Range' }, + { :name => 'Progressbar' , :child_of => 'Range' }, + + { :name => 'Embed' , :child_of => 'Container' } , + { :name => 'Window' , :child_of => 'Embed' } , + { :name => 'Dialog' , :child_of => 'Window' } , + { :name => 'FileDialog' , :child_of => 'Dialog' } , + { :name => 'ColorDialog' , :child_of => 'Dialog' } , + + { :name => 'Box' , :child_of => 'Container' } , + { :name => 'VBox' , :child_of => 'Box' } , + { :name => 'HBox' , :child_of => 'Box' } , + { :name => 'FreeBox' , :child_of => 'Box' } , + { :name => 'Border' , :child_of => 'Box' } , + { :name => 'Floater' , :child_of => 'Box' } , + { :name => 'Scrollbar' , :child_of => 'Box' }, + { :name => 'FilePicker' , :child_of => 'Box' } , + { :name => 'ColorPicker' , :child_of => 'Box' } , + { :name => 'Calendar' , :child_of => 'Box' }, + { :name => 'Icon' , :child_of => 'Box' }, + { :name => 'IconBox' , :child_of => 'Box' }, + { :name => 'IconBoxIcon' , :wraps => 'iconbox_icon', :child_of => 'Box' }, + { :name => 'Notebook' , :child_of => 'Box' }, + { :name => 'StatusBar' , :child_of => 'Box' }, + + { :name => 'MenuBar' , :child_of => 'Box' }, + { :name => 'VMenuBar' , :child_of => 'MenuBar' }, + { :name => 'HMenuBar' , :child_of => 'MenuBar' }, + + { :name => 'Button' , :child_of => 'Box' } , + { :name => 'CheckButton' , :child_of => 'Button' }, + { :name => 'RadioButton' , :child_of => 'CheckButton' }, + + { :name => 'MenuItem' , :wraps => 'menu_item', :child_of => 'Button' }, + { :name => 'MenuBase' , :child_of => 'MenuItem' }, + { :name => 'Menu' , :child_of => 'MenuBase' }, + { :name => 'IMenu' , :child_of => 'MenuBase' }, + { :name => 'Combo' , :child_of => 'MenuBase' }, + + { :name => 'FileList' , :child_of => 'Box' } , + { :name => 'FileList_List' , :child_of => 'FileList' } , + { :name => 'FileList_Column' , :child_of => 'FileList' } , + { :name => 'FileList_Icon' , :child_of => 'FileList' } ] , :ignore => [ ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs