Changeset 167
- Timestamp:
- Dec 11, 2006, 11:01:25 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.cmd
r128 r167 54 54 Opt.!NETWORK = 1 55 55 Opt.!WORKSPACE = 1 56 Opt.!ICONVIEW = 1 57 Opt.!TABLE = 1 56 58 Opt.!CANVAS = 1 57 59 Opt.!XML = 1 … … 287 289 call WriteVar G.!ConfigCache, 'Opt.!NETWORK' 288 290 call WriteVar G.!ConfigCache, 'Opt.!WORKSPACE' 291 call WriteVar G.!ConfigCache, 'Opt.!ICONVIEW' 292 call WriteVar G.!ConfigCache, 'Opt.!TABLE' 289 293 call WriteVar G.!ConfigCache, 'Opt.!CANVAS' 290 294 call WriteVar G.!ConfigCache, 'Opt.!XML' … … 602 606 /* Optional Qt modules */ 603 607 604 G.!Choices.0 = 4608 G.!Choices.0 = 6 605 609 do forever 606 610 G.!Choices.1 = 'Network 'GetEnabledText(Opt.!NETWORK) 607 611 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) 610 616 call SaySay 'Enable or disable optional Qt library modules' 611 617 choice = GetChoice('(pressing Enter will accept the current selection):',, … … 614 620 when choice == 1 then Opt.!NETWORK = \Opt.!NETWORK 615 621 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 618 626 otherwise leave 619 627 end … … 694 702 OptionalModules = OptionalModules 'workspace' 695 703 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 696 712 end 697 713 if (Opt.!CANVAS == 1) then do -
trunk/src/qt.pro
r104 r167 207 207 include($$WIDGETS_CPP/qt_widgets.pri) 208 208 include($$DIALOGS_CPP/qt_dialogs.pri) 209 include($$ICONVIEW_CPP/qt_iconview.pri) 209 210 include($$WORKSPACE_CPP/qt_workspace.pri) 210 211 include($$NETWORK_CPP/qt_network.pri) 211 212 include($$CANVAS_CPP/qt_canvas.pri) 213 include($$TABLE_CPP/qt_table.pri) 212 214 include($$XML_CPP/qt_xml.pri) 213 215 include($$KERNEL_CPP/qt_gfx.pri)
Note:
See TracChangeset
for help on using the changeset viewer.