fxruby 1.6.24-x86-mingw32 → 1.6.25.pre1-x86-mingw32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ext/fox16/FXRuby.cpp +0 -18
 - data/ext/fox16/extconf.rb +1 -1
 - data/lib/1.8/fox16.so +0 -0
 - data/lib/1.9/fox16.so +0 -0
 - data/lib/fox16.rb +12 -0
 - data/lib/fox16/version.rb +1 -1
 - metadata +80 -76
 
    
        data/ext/fox16/FXRuby.cpp
    CHANGED
    
    | 
         @@ -2019,12 +2019,6 @@ extern "C" void Init_text(void); 
     | 
|
| 
       2019 
2019 
     | 
    
         
             
            extern "C" void Init_treelist(void);
         
     | 
| 
       2020 
2020 
     | 
    
         
             
            extern "C" void Init_ui(void);
         
     | 
| 
       2021 
2021 
     | 
    
         | 
| 
       2022 
     | 
    
         
            -
            #ifdef USE_RB_REQUIRE
         
     | 
| 
       2023 
     | 
    
         
            -
            #define REQUIRE(fname) rb_require((fname))
         
     | 
| 
       2024 
     | 
    
         
            -
            #else
         
     | 
| 
       2025 
     | 
    
         
            -
            #define REQUIRE(fname) rb_funcall(rb_mKernel,rb_intern("require"),1,rb_str_new2((fname)))
         
     | 
| 
       2026 
     | 
    
         
            -
            #endif
         
     | 
| 
       2027 
     | 
    
         
            -
             
     | 
| 
       2028 
2022 
     | 
    
         
             
            extern "C" void
         
     | 
| 
       2029 
2023 
     | 
    
         
             
            #if defined _WIN32
         
     | 
| 
       2030 
2024 
     | 
    
         
             
            __declspec(dllexport)
         
     | 
| 
         @@ -2050,18 +2044,6 @@ Init_fox16(void) { 
     | 
|
| 
       2050 
2044 
     | 
    
         
             
              Init_table();
         
     | 
| 
       2051 
2045 
     | 
    
         
             
              Init_text();
         
     | 
| 
       2052 
2046 
     | 
    
         
             
              Init_treelist();
         
     | 
| 
       2053 
     | 
    
         
            -
              REQUIRE("fox16/core");
         
     | 
| 
       2054 
     | 
    
         
            -
              REQUIRE("fox16/dict");
         
     | 
| 
       2055 
     | 
    
         
            -
              REQUIRE("fox16/settings");
         
     | 
| 
       2056 
     | 
    
         
            -
              REQUIRE("fox16/iterators");
         
     | 
| 
       2057 
     | 
    
         
            -
              REQUIRE("fox16/keys");
         
     | 
| 
       2058 
     | 
    
         
            -
              REQUIRE("fox16/aliases");
         
     | 
| 
       2059 
     | 
    
         
            -
              REQUIRE("fox16/responder2");
         
     | 
| 
       2060 
     | 
    
         
            -
              REQUIRE("fox16/glgroup");
         
     | 
| 
       2061 
     | 
    
         
            -
              REQUIRE("fox16/execute_nonmodal");
         
     | 
| 
       2062 
     | 
    
         
            -
              REQUIRE("fox16/version");
         
     | 
| 
       2063 
     | 
    
         
            -
              REQUIRE("fox16/kwargs");
         
     | 
| 
       2064 
     | 
    
         
            -
              REQUIRE("fox16/exceptions_for_fxerror");
         
     | 
| 
       2065 
2047 
     | 
    
         | 
| 
       2066 
2048 
     | 
    
         
             
              id_assocs=rb_intern("@assocs");
         
     | 
| 
       2067 
2049 
     | 
    
         
             
              id_backtrace=rb_intern("backtrace");
         
     | 
    
        data/ext/fox16/extconf.rb
    CHANGED
    
    | 
         @@ -81,7 +81,7 @@ def do_rake_compiler_setup 
     | 
|
| 
       81 
81 
     | 
    
         | 
| 
       82 
82 
     | 
    
         
             
                CONFIG['CC'] += "\nCXX=#{ENV['CROSS_PREFIX']}-g++" # Hack CXX into Makefile for cross compilation
         
     | 
| 
       83 
83 
     | 
    
         
             
                CONFIG['LDSHARED'].gsub!('gcc', 'g++') # ensure C++ linker is used, so that libstdc++ is linked static
         
     | 
| 
       84 
     | 
    
         
            -
                $LDFLAGS += " -static-libgcc -static-libstdc++" # mingw-w64 v4.7 defaults to dynamic linking
         
     | 
| 
      
 84 
     | 
    
         
            +
                $LDFLAGS += " -s -static-libgcc -static-libstdc++" # mingw-w64 v4.7 defaults to dynamic linking
         
     | 
| 
       85 
85 
     | 
    
         
             
              elsif RUBY_PLATFORM =~ /mingw/
         
     | 
| 
       86 
86 
     | 
    
         
             
                $CFLAGS = $CFLAGS + " -I/usr/local/include"
         
     | 
| 
       87 
87 
     | 
    
         
             
                $LDFLAGS = $LDFLAGS + " -I/usr/local/lib"
         
     | 
    
        data/lib/1.8/fox16.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/1.9/fox16.so
    CHANGED
    
    | 
         Binary file 
     | 
    
        data/lib/fox16.rb
    CHANGED
    
    | 
         @@ -6,3 +6,15 @@ else 
     | 
|
| 
       6 
6 
     | 
    
         
             
              require "fox16.so"
         
     | 
| 
       7 
7 
     | 
    
         
             
            end
         
     | 
| 
       8 
8 
     | 
    
         | 
| 
      
 9 
     | 
    
         
            +
            require "fox16/core"
         
     | 
| 
      
 10 
     | 
    
         
            +
            require "fox16/dict"
         
     | 
| 
      
 11 
     | 
    
         
            +
            require "fox16/settings"
         
     | 
| 
      
 12 
     | 
    
         
            +
            require "fox16/iterators"
         
     | 
| 
      
 13 
     | 
    
         
            +
            require "fox16/keys"
         
     | 
| 
      
 14 
     | 
    
         
            +
            require "fox16/aliases"
         
     | 
| 
      
 15 
     | 
    
         
            +
            require "fox16/responder2"
         
     | 
| 
      
 16 
     | 
    
         
            +
            require "fox16/glgroup"
         
     | 
| 
      
 17 
     | 
    
         
            +
            require "fox16/execute_nonmodal"
         
     | 
| 
      
 18 
     | 
    
         
            +
            require "fox16/version"
         
     | 
| 
      
 19 
     | 
    
         
            +
            require "fox16/kwargs"
         
     | 
| 
      
 20 
     | 
    
         
            +
            require "fox16/exceptions_for_fxerror"
         
     | 
    
        data/lib/fox16/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,13 +1,15 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification 
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: fxruby
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version 
         
     | 
| 
       4 
     | 
    
         
            -
              hash:  
     | 
| 
       5 
     | 
    
         
            -
              prerelease: 
         
     | 
| 
      
 4 
     | 
    
         
            +
              hash: 1923831843
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 7
         
     | 
| 
       6 
6 
     | 
    
         
             
              segments: 
         
     | 
| 
       7 
7 
     | 
    
         
             
              - 1
         
     | 
| 
       8 
8 
     | 
    
         
             
              - 6
         
     | 
| 
       9 
     | 
    
         
            -
              -  
     | 
| 
       10 
     | 
    
         
            -
               
     | 
| 
      
 9 
     | 
    
         
            +
              - 25
         
     | 
| 
      
 10 
     | 
    
         
            +
              - pre
         
     | 
| 
      
 11 
     | 
    
         
            +
              - 1
         
     | 
| 
      
 12 
     | 
    
         
            +
              version: 1.6.25.pre1
         
     | 
| 
       11 
13 
     | 
    
         
             
            platform: x86-mingw32
         
     | 
| 
       12 
14 
     | 
    
         
             
            authors: 
         
     | 
| 
       13 
15 
     | 
    
         
             
            - Lyle Johnson
         
     | 
| 
         @@ -16,7 +18,7 @@ autorequire: 
     | 
|
| 
       16 
18 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       17 
19 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       18 
20 
     | 
    
         | 
| 
       19 
     | 
    
         
            -
            date: 2012-06- 
     | 
| 
      
 21 
     | 
    
         
            +
            date: 2012-06-15 00:00:00 Z
         
     | 
| 
       20 
22 
     | 
    
         
             
            dependencies: 
         
     | 
| 
       21 
23 
     | 
    
         
             
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       22 
24 
     | 
    
         
             
              name: rdoc
         
     | 
| 
         @@ -41,11 +43,11 @@ dependencies: 
     | 
|
| 
       41 
43 
     | 
    
         
             
                requirements: 
         
     | 
| 
       42 
44 
     | 
    
         
             
                - - ~>
         
     | 
| 
       43 
45 
     | 
    
         
             
                  - !ruby/object:Gem::Version 
         
     | 
| 
       44 
     | 
    
         
            -
                    hash:  
     | 
| 
      
 46 
     | 
    
         
            +
                    hash: 7
         
     | 
| 
       45 
47 
     | 
    
         
             
                    segments: 
         
     | 
| 
       46 
     | 
    
         
            -
                    -  
     | 
| 
       47 
     | 
    
         
            -
                    -  
     | 
| 
       48 
     | 
    
         
            -
                    version: " 
     | 
| 
      
 48 
     | 
    
         
            +
                    - 3
         
     | 
| 
      
 49 
     | 
    
         
            +
                    - 0
         
     | 
| 
      
 50 
     | 
    
         
            +
                    version: "3.0"
         
     | 
| 
       49 
51 
     | 
    
         
             
              type: :development
         
     | 
| 
       50 
52 
     | 
    
         
             
              version_requirements: *id002
         
     | 
| 
       51 
53 
     | 
    
         
             
            description: FXRuby is the Ruby binding to the FOX GUI toolkit.
         
     | 
| 
         @@ -1023,93 +1025,95 @@ required_ruby_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       1023 
1025 
     | 
    
         
             
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
       1024 
1026 
     | 
    
         
             
              none: false
         
     | 
| 
       1025 
1027 
     | 
    
         
             
              requirements: 
         
     | 
| 
       1026 
     | 
    
         
            -
              - - " 
     | 
| 
      
 1028 
     | 
    
         
            +
              - - ">"
         
     | 
| 
       1027 
1029 
     | 
    
         
             
                - !ruby/object:Gem::Version 
         
     | 
| 
       1028 
     | 
    
         
            -
                  hash:  
     | 
| 
      
 1030 
     | 
    
         
            +
                  hash: 25
         
     | 
| 
       1029 
1031 
     | 
    
         
             
                  segments: 
         
     | 
| 
       1030 
     | 
    
         
            -
                  -  
     | 
| 
       1031 
     | 
    
         
            -
                   
     | 
| 
      
 1032 
     | 
    
         
            +
                  - 1
         
     | 
| 
      
 1033 
     | 
    
         
            +
                  - 3
         
     | 
| 
      
 1034 
     | 
    
         
            +
                  - 1
         
     | 
| 
      
 1035 
     | 
    
         
            +
                  version: 1.3.1
         
     | 
| 
       1032 
1036 
     | 
    
         
             
            requirements: []
         
     | 
| 
       1033 
1037 
     | 
    
         | 
| 
       1034 
1038 
     | 
    
         
             
            rubyforge_project: fxruby
         
     | 
| 
       1035 
     | 
    
         
            -
            rubygems_version: 1. 
     | 
| 
      
 1039 
     | 
    
         
            +
            rubygems_version: 1.8.11
         
     | 
| 
       1036 
1040 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       1037 
1041 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       1038 
1042 
     | 
    
         
             
            summary: FXRuby is the Ruby binding to the FOX GUI toolkit.
         
     | 
| 
       1039 
1043 
     | 
    
         
             
            test_files: 
         
     | 
| 
       1040 
     | 
    
         
            -
            - test/ 
     | 
| 
       1041 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 1044 
     | 
    
         
            +
            - test/TC_FXVec2d.rb
         
     | 
| 
      
 1045 
     | 
    
         
            +
            - test/TC_FXListBox.rb
         
     | 
| 
      
 1046 
     | 
    
         
            +
            - test/TC_FXCheckButton.rb
         
     | 
| 
      
 1047 
     | 
    
         
            +
            - test/TC_FXVec4f.rb
         
     | 
| 
      
 1048 
     | 
    
         
            +
            - test/TC_FXIconList.rb
         
     | 
| 
       1042 
1049 
     | 
    
         
             
            - test/TC_FXXPMIcon.rb
         
     | 
| 
       1043 
     | 
    
         
            -
            - test/ 
     | 
| 
       1044 
     | 
    
         
            -
            - test/TC_FXRadioButton.rb
         
     | 
| 
       1045 
     | 
    
         
            -
            - test/TC_FXPoint.rb
         
     | 
| 
       1046 
     | 
    
         
            -
            - test/TC_FXGLGroup.rb
         
     | 
| 
       1047 
     | 
    
         
            -
            - test/TC_FXBMPIcon.rb
         
     | 
| 
      
 1050 
     | 
    
         
            +
            - test/TC_FXSegment.rb
         
     | 
| 
       1048 
1051 
     | 
    
         
             
            - test/TC_FXMemoryStream.rb
         
     | 
| 
       1049 
     | 
    
         
            -
            - test/ 
     | 
| 
       1050 
     | 
    
         
            -
            - test/ 
     | 
| 
       1051 
     | 
    
         
            -
            - test/ 
     | 
| 
       1052 
     | 
    
         
            -
            - test/ 
     | 
| 
       1053 
     | 
    
         
            -
            - test/ 
     | 
| 
       1054 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 1052 
     | 
    
         
            +
            - test/TC_FXComboBox.rb
         
     | 
| 
      
 1053 
     | 
    
         
            +
            - test/TC_FXShell.rb
         
     | 
| 
      
 1054 
     | 
    
         
            +
            - test/TC_FXRangef.rb
         
     | 
| 
      
 1055 
     | 
    
         
            +
            - test/TC_FXTreeListBox.rb
         
     | 
| 
      
 1056 
     | 
    
         
            +
            - test/TC_Misc.rb
         
     | 
| 
      
 1057 
     | 
    
         
            +
            - test/TC_FXMaterial.rb
         
     | 
| 
       1055 
1058 
     | 
    
         
             
            - test/TC_FXMenuCommand.rb
         
     | 
| 
      
 1059 
     | 
    
         
            +
            - test/TC_FXRectangle.rb
         
     | 
| 
      
 1060 
     | 
    
         
            +
            - test/TC_FXGLShape.rb
         
     | 
| 
      
 1061 
     | 
    
         
            +
            - test/TC_FXTreeList.rb
         
     | 
| 
       1056 
1062 
     | 
    
         
             
            - test/TC_FXGradientBar.rb
         
     | 
| 
       1057 
     | 
    
         
            -
            - test/ 
     | 
| 
       1058 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 1063 
     | 
    
         
            +
            - test/TC_FXUndoList.rb
         
     | 
| 
      
 1064 
     | 
    
         
            +
            - test/TC_FXImage.rb
         
     | 
| 
      
 1065 
     | 
    
         
            +
            - test/TC_FXTableItem.rb
         
     | 
| 
      
 1066 
     | 
    
         
            +
            - test/TC_FXVec3f.rb
         
     | 
| 
      
 1067 
     | 
    
         
            +
            - test/TC_FXIconDict.rb
         
     | 
| 
      
 1068 
     | 
    
         
            +
            - test/TC_FXStream.rb
         
     | 
| 
      
 1069 
     | 
    
         
            +
            - test/TC_FXBMPImage.rb
         
     | 
| 
      
 1070 
     | 
    
         
            +
            - test/TC_FXGLGroup.rb
         
     | 
| 
      
 1071 
     | 
    
         
            +
            - test/TC_FXRanged.rb
         
     | 
| 
      
 1072 
     | 
    
         
            +
            - test/TC_FXTopWindow.rb
         
     | 
| 
       1059 
1073 
     | 
    
         
             
            - test/TC_FXHiliteStyle.rb
         
     | 
| 
       1060 
1074 
     | 
    
         
             
            - test/TC_FXHeader.rb
         
     | 
| 
       1061 
     | 
    
         
            -
            - test/ 
     | 
| 
       1062 
     | 
    
         
            -
            - test/TC_FXVec2f.rb
         
     | 
| 
       1063 
     | 
    
         
            -
            - test/TC_FXId.rb
         
     | 
| 
       1064 
     | 
    
         
            -
            - test/TC_FXSize.rb
         
     | 
| 
       1065 
     | 
    
         
            -
            - test/TC_FXGLViewer.rb
         
     | 
| 
       1066 
     | 
    
         
            -
            - test/TC_FXCheckButton.rb
         
     | 
| 
       1067 
     | 
    
         
            -
            - test/TC_FXSegment.rb
         
     | 
| 
      
 1075 
     | 
    
         
            +
            - test/TC_FXPoint.rb
         
     | 
| 
       1068 
1076 
     | 
    
         
             
            - test/TC_FXRegistry.rb
         
     | 
| 
       1069 
     | 
    
         
            -
            - test/TC_downcast.rb
         
     | 
| 
       1070 
     | 
    
         
            -
            - test/TC_FXVec4f.rb
         
     | 
| 
       1071 
     | 
    
         
            -
            - test/TC_FXTreeList.rb
         
     | 
| 
       1072 
     | 
    
         
            -
            - test/TC_FXFont.rb
         
     | 
| 
       1073 
     | 
    
         
            -
            - test/TC_FXLight.rb
         
     | 
| 
       1074 
     | 
    
         
            -
            - test/TC_FXExtentf.rb
         
     | 
| 
       1075 
     | 
    
         
            -
            - test/TC_FXScrollArea.rb
         
     | 
| 
       1076 
     | 
    
         
            -
            - test/TC_FXList.rb
         
     | 
| 
       1077 
     | 
    
         
            -
            - test/TC_FXDirList.rb
         
     | 
| 
       1078 
     | 
    
         
            -
            - test/TC_FXApp.rb
         
     | 
| 
       1079 
     | 
    
         
            -
            - test/TC_FXComboBox.rb
         
     | 
| 
       1080 
     | 
    
         
            -
            - test/TC_FXMaterial.rb
         
     | 
| 
       1081 
     | 
    
         
            -
            - test/TC_FXGLShape.rb
         
     | 
| 
       1082 
     | 
    
         
            -
            - test/TC_FXStream.rb
         
     | 
| 
       1083 
     | 
    
         
            -
            - test/TC_FXRangef.rb
         
     | 
| 
       1084 
     | 
    
         
            -
            - test/TC_FXQuatf.rb
         
     | 
| 
       1085 
     | 
    
         
            -
            - test/TC_FXMessageBox.rb
         
     | 
| 
       1086 
     | 
    
         
            -
            - test/TC_FXImage.rb
         
     | 
| 
       1087 
     | 
    
         
            -
            - test/TC_FXRectangle.rb
         
     | 
| 
       1088 
1077 
     | 
    
         
             
            - test/TC_FXFileStream.rb
         
     | 
| 
       1089 
     | 
    
         
            -
            - test/TC_FXFileAssoc.rb
         
     | 
| 
       1090 
     | 
    
         
            -
            - test/TC_FXVec2d.rb
         
     | 
| 
       1091 
1078 
     | 
    
         
             
            - test/TC_FXXBMIcon.rb
         
     | 
| 
       1092 
     | 
    
         
            -
            - test/ 
     | 
| 
       1093 
     | 
    
         
            -
            - test/ 
     | 
| 
       1094 
     | 
    
         
            -
            - test/ 
     | 
| 
       1095 
     | 
    
         
            -
            - test/ 
     | 
| 
       1096 
     | 
    
         
            -
            - test/ 
     | 
| 
       1097 
     | 
    
         
            -
            - test/ 
     | 
| 
       1098 
     | 
    
         
            -
            - test/ 
     | 
| 
       1099 
     | 
    
         
            -
            - test/ 
     | 
| 
       1100 
     | 
    
         
            -
            - test/TC_FXMat4f.rb
         
     | 
| 
       1101 
     | 
    
         
            -
            - test/TC_FXDialogBox.rb
         
     | 
| 
       1102 
     | 
    
         
            -
            - test/TC_FXXPMImage.rb
         
     | 
| 
      
 1079 
     | 
    
         
            +
            - test/TC_FXScrollArea.rb
         
     | 
| 
      
 1080 
     | 
    
         
            +
            - test/TC_FXSettings.rb
         
     | 
| 
      
 1081 
     | 
    
         
            +
            - test/TC_FXSize.rb
         
     | 
| 
      
 1082 
     | 
    
         
            +
            - test/TC_FXApp.rb
         
     | 
| 
      
 1083 
     | 
    
         
            +
            - test/TC_FXVec3d.rb
         
     | 
| 
      
 1084 
     | 
    
         
            +
            - test/TC_FXExtentd.rb
         
     | 
| 
      
 1085 
     | 
    
         
            +
            - test/TC_FXDC.rb
         
     | 
| 
      
 1086 
     | 
    
         
            +
            - test/TC_FXMenuCheck.rb
         
     | 
| 
       1103 
1087 
     | 
    
         
             
            - test/TC_FXDCWindow.rb
         
     | 
| 
       1104 
     | 
    
         
            -
            - test/ 
     | 
| 
       1105 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 1088 
     | 
    
         
            +
            - test/TC_FXFont.rb
         
     | 
| 
      
 1089 
     | 
    
         
            +
            - test/TC_FXTable.rb
         
     | 
| 
       1106 
1090 
     | 
    
         
             
            - test/TC_FXMenuRadio.rb
         
     | 
| 
       1107 
     | 
    
         
            -
            - test/ 
     | 
| 
       1108 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 1091 
     | 
    
         
            +
            - test/TC_FXExtentf.rb
         
     | 
| 
      
 1092 
     | 
    
         
            +
            - test/TC_FXFontDesc.rb
         
     | 
| 
      
 1093 
     | 
    
         
            +
            - test/TC_FXGLViewer.rb
         
     | 
| 
      
 1094 
     | 
    
         
            +
            - test/TC_FXViewport.rb
         
     | 
| 
      
 1095 
     | 
    
         
            +
            - test/TC_FXArc.rb
         
     | 
| 
       1109 
1096 
     | 
    
         
             
            - test/TC_FXText.rb
         
     | 
| 
       1110 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 1097 
     | 
    
         
            +
            - test/TC_FXId.rb
         
     | 
| 
      
 1098 
     | 
    
         
            +
            - test/TC_FXXPMImage.rb
         
     | 
| 
      
 1099 
     | 
    
         
            +
            - test/TC_FXMessageBox.rb
         
     | 
| 
      
 1100 
     | 
    
         
            +
            - test/TC_FXLight.rb
         
     | 
| 
      
 1101 
     | 
    
         
            +
            - test/TC_FXVec2f.rb
         
     | 
| 
      
 1102 
     | 
    
         
            +
            - test/TC_downcast.rb
         
     | 
| 
      
 1103 
     | 
    
         
            +
            - test/TC_FXQuatf.rb
         
     | 
| 
      
 1104 
     | 
    
         
            +
            - test/TC_FXRadioButton.rb
         
     | 
| 
      
 1105 
     | 
    
         
            +
            - test/TC_FXDCPrint.rb
         
     | 
| 
      
 1106 
     | 
    
         
            +
            - test/TC_FXRegion.rb
         
     | 
| 
      
 1107 
     | 
    
         
            +
            - test/TC_FXFoldingList.rb
         
     | 
| 
      
 1108 
     | 
    
         
            +
            - test/TC_FXMat4f.rb
         
     | 
| 
      
 1109 
     | 
    
         
            +
            - test/TC_FXAccelTable.rb
         
     | 
| 
       1111 
1110 
     | 
    
         
             
            - test/TC_FXButton.rb
         
     | 
| 
       1112 
     | 
    
         
            -
            - test/ 
     | 
| 
       1113 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 1111 
     | 
    
         
            +
            - test/TC_FXList.rb
         
     | 
| 
      
 1112 
     | 
    
         
            +
            - test/TC_FXDialogBox.rb
         
     | 
| 
      
 1113 
     | 
    
         
            +
            - test/TC_FXBMPIcon.rb
         
     | 
| 
       1114 
1114 
     | 
    
         
             
            - test/TC_FXMainWindow.rb
         
     | 
| 
       1115 
     | 
    
         
            -
            - test/ 
     | 
| 
      
 1115 
     | 
    
         
            +
            - test/TC_FXXBMImage.rb
         
     | 
| 
      
 1116 
     | 
    
         
            +
            - test/TC_FXFileAssoc.rb
         
     | 
| 
      
 1117 
     | 
    
         
            +
            - test/TC_FXScrollWindow.rb
         
     | 
| 
      
 1118 
     | 
    
         
            +
            - test/TC_FXDirList.rb
         
     | 
| 
      
 1119 
     | 
    
         
            +
            - test/TC_FXDataTarget.rb
         
     |