Changeset 167


Ignore:
Timestamp:
Dec 11, 2006, 11:01:25 PM (19 years ago)
Author:
dmik
Message:

Added table and iconview modules to the build system configuration.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.cmd

    r128 r167  
    5454Opt.!NETWORK    = 1
    5555Opt.!WORKSPACE  = 1
     56Opt.!ICONVIEW   = 1
     57Opt.!TABLE      = 1
    5658Opt.!CANVAS     = 1
    5759Opt.!XML        = 1
     
    287289    call WriteVar G.!ConfigCache, 'Opt.!NETWORK'
    288290    call WriteVar G.!ConfigCache, 'Opt.!WORKSPACE'
     291    call WriteVar G.!ConfigCache, 'Opt.!ICONVIEW'
     292    call WriteVar G.!ConfigCache, 'Opt.!TABLE'
    289293    call WriteVar G.!ConfigCache, 'Opt.!CANVAS'
    290294    call WriteVar G.!ConfigCache, 'Opt.!XML'
     
    602606    /* Optional Qt modules */
    603607   
    604     G.!Choices.0 = 4
     608    G.!Choices.0 = 6
    605609    do forever
    606610        G.!Choices.1 = 'Network     'GetEnabledText(Opt.!NETWORK)
    607611        G.!Choices.2 = 'Workspace   'GetEnabledText(Opt.!WORKSPACE)
    608         G.!Choices.3 = 'Canvas      'GetEnabledText(Opt.!CANVAS)
    609         G.!Choices.4 = 'XML         'GetEnabledText(Opt.!XML)
     612        G.!Choices.3 = 'Iconview    'GetEnabledText(Opt.!ICONVIEW)
     613        G.!Choices.4 = 'Table       'GetEnabledText(Opt.!TABLE)
     614        G.!Choices.5 = 'Canvas      'GetEnabledText(Opt.!CANVAS)
     615        G.!Choices.6 = 'XML         'GetEnabledText(Opt.!XML)
    610616        call SaySay 'Enable or disable optional Qt library modules'
    611617        choice = GetChoice('(pressing Enter will accept the current selection):',,
     
    614620            when choice == 1 then Opt.!NETWORK = \Opt.!NETWORK
    615621            when choice == 2 then Opt.!WORKSPACE = \Opt.!WORKSPACE
    616             when choice == 3 then Opt.!CANVAS = \Opt.!CANVAS
    617             when choice == 4 then Opt.!XML = \Opt.!XML
     622            when choice == 3 then Opt.!ICONVIEW = \Opt.!ICONVIEW
     623            when choice == 4 then Opt.!TABLE = \Opt.!TABLE
     624            when choice == 5 then Opt.!CANVAS = \Opt.!CANVAS
     625            when choice == 6 then Opt.!XML = \Opt.!XML
    618626            otherwise leave
    619627        end
     
    694702        OptionalModules = OptionalModules 'workspace'
    695703        ModulesHeader = ModulesHeader || '#define QT_MODULE_WORKSPACE'G.!EOL
     704    end
     705    if (Opt.!ICONVIEW == 1) then do
     706        OptionalModules = OptionalModules 'iconview'
     707        ModulesHeader = ModulesHeader || '#define QT_MODULE_ICONVIEW'G.!EOL
     708    end
     709    if (Opt.!TABLE == 1) then do
     710        OptionalModules = OptionalModules 'table'
     711        ModulesHeader = ModulesHeader || '#define QT_MODULE_TABLE'G.!EOL
    696712    end
    697713    if (Opt.!CANVAS == 1) then do
  • trunk/src/qt.pro

    r104 r167  
    207207        include($$WIDGETS_CPP/qt_widgets.pri)
    208208        include($$DIALOGS_CPP/qt_dialogs.pri)
     209        include($$ICONVIEW_CPP/qt_iconview.pri)
    209210        include($$WORKSPACE_CPP/qt_workspace.pri)
    210211        include($$NETWORK_CPP/qt_network.pri)
    211212        include($$CANVAS_CPP/qt_canvas.pri)
     213        include($$TABLE_CPP/qt_table.pri)
    212214        include($$XML_CPP/qt_xml.pri)
    213215        include($$KERNEL_CPP/qt_gfx.pri)
Note: See TracChangeset for help on using the changeset viewer.