VirtualBox

Changeset 15616 in vbox


Ignore:
Timestamp:
Dec 17, 2008 1:21:20 AM (16 years ago)
Author:
vboxsync
Message:

FE/Qt4: Added spacing between the first and the second column in the Details table. Also added semicolons for property names (first column), italics for None-like values (no NLS change).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp

    r15610 r15616  
    20782078    static const char *sSectionHrefTpl =
    20792079        "<tr><td width=22 rowspan=%1 align=left><img src='%2'></td>"
    2080             "<td colspan=2><b><a href='%3'><nobr>%4</nobr></a></b></td></tr>"
     2080            "<td colspan=3><b><a href='%3'><nobr>%4</nobr></a></b></td></tr>"
    20812081            "%5"
    2082         "<tr><td colspan=2><font size=1>&nbsp;</font></td></tr>";
     2082        "<tr><td colspan=3><font size=1>&nbsp;</font></td></tr>";
    20832083    static const char *sSectionBoldTpl =
    20842084        "<tr><td width=22 rowspan=%1 align=left><img src='%2'></td>"
    2085             "<td colspan=2><!-- %3 --><b><nobr>%4</nobr></b></td></tr>"
     2085            "<td colspan=3><!-- %3 --><b><nobr>%4</nobr></b></td></tr>"
    20862086            "%5"
    2087         "<tr><td colspan=2><font size=1>&nbsp;</font></td></tr>";
    2088     static const char *sSectionItemTpl =
    2089         "<tr><td width=40%><nobr>%1</nobr></td><td>%2</td></tr>";
     2087        "<tr><td colspan=3><font size=1>&nbsp;</font></td></tr>";
     2088    static const char *sSectionItemTpl1 =
     2089        "<tr><td width=40%><nobr><i>%1</i></nobr></td><td/><td/></tr>";
     2090    static const char *sSectionItemTpl2 =
     2091        "<tr><td width=40%><nobr>%1:</nobr></td><td/><td>%2</td></tr>";
    20902092
    20912093    static QString sGeneralBasicHrefTpl, sGeneralBasicBoldTpl;
     
    20992101
    21002102        QString generalItems
    2101             = QString (sSectionItemTpl).arg (tr ("Name", "details report"), "%1")
    2102             + QString (sSectionItemTpl).arg (tr ("OS Type", "details report"), "%2")
    2103             + QString (sSectionItemTpl).arg (tr ("Base Memory", "details report"),
    2104                                              tr ("<nobr>%3 MB</nobr>", "details report"));
     2103            = QString (sSectionItemTpl2).arg (tr ("Name", "details report"), "%1")
     2104            + QString (sSectionItemTpl2).arg (tr ("OS Type", "details report"), "%2")
     2105            + QString (sSectionItemTpl2).arg (tr ("Base Memory", "details report"),
     2106                                              tr ("<nobr>%3 MB</nobr>", "details report"));
    21052107        sGeneralBasicHrefTpl = QString (sSectionHrefTpl)
    21062108                .arg (2 + 3) /* rows */
     
    21172119
    21182120        generalItems
    2119            += QString (sSectionItemTpl).arg (tr ("Video Memory", "details report"),
    2120                                              tr ("<nobr>%4 MB</nobr>", "details report"))
    2121             + QString (sSectionItemTpl).arg (tr ("Boot Order", "details report"), "%5")
    2122             + QString (sSectionItemTpl).arg (tr ("ACPI", "details report"), "%6")
    2123             + QString (sSectionItemTpl).arg (tr ("IO APIC", "details report"), "%7")
    2124             + QString (sSectionItemTpl).arg (tr ("VT-x/AMD-V", "details report"), "%8")
    2125             + QString (sSectionItemTpl).arg (tr ("PAE/NX", "details report"), "%9")
    2126             + QString (sSectionItemTpl).arg (tr ("3D Acceleration", "details report"), "%10");
     2121           += QString (sSectionItemTpl2).arg (tr ("Video Memory", "details report"),
     2122                                              tr ("<nobr>%4 MB</nobr>", "details report"))
     2123            + QString (sSectionItemTpl2).arg (tr ("Boot Order", "details report"), "%5")
     2124            + QString (sSectionItemTpl2).arg (tr ("ACPI", "details report"), "%6")
     2125            + QString (sSectionItemTpl2).arg (tr ("IO APIC", "details report"), "%7")
     2126            + QString (sSectionItemTpl2).arg (tr ("VT-x/AMD-V", "details report"), "%8")
     2127            + QString (sSectionItemTpl2).arg (tr ("PAE/NX", "details report"), "%9")
     2128            + QString (sSectionItemTpl2).arg (tr ("3D Acceleration", "details report"), "%10");
    21272129
    21282130        sGeneralFullHrefTpl = QString (sSectionHrefTpl)
     
    21632165                LONG channel = hda.GetChannel();
    21642166                LONG device = hda.GetDevice();
    2165                 hardDisks += QString (sSectionItemTpl)
     2167                hardDisks += QString (sSectionItemTpl2)
    21662168                    .arg (toFullString (bus, channel, device))
    21672169                    .arg (details (hd, aIsNewVM));
     
    21722174        if (hardDisks.isNull())
    21732175        {
    2174             hardDisks = QString (sSectionItemTpl)
    2175                 .arg (tr ("Not Attached", "details report (HDDs)")).arg ("");
     2176            hardDisks = QString (sSectionItemTpl1)
     2177                .arg (tr ("Not Attached", "details report (HDDs)"));
    21762178            ++ rows;
    21772179        }
     
    22682270        /* DVD */
    22692271        CDVDDrive dvd = aMachine.GetDVDDrive();
    2270         item = QString (sSectionItemTpl);
    22712272        switch (dvd.GetState())
    22722273        {
    22732274            case KDriveState_NotMounted:
    2274                 item = item.arg (tr ("Not mounted", "details report (DVD)"), "");
     2275                item = QString (sSectionItemTpl1)
     2276                    .arg (tr ("Not mounted", "details report (DVD)"));
    22752277                break;
    22762278            case KDriveState_ImageMounted:
    22772279            {
    22782280                CDVDImage2 img = dvd.GetImage();
    2279                 item = item.arg (tr ("Image", "details report (DVD)"),
    2280                                  locationForHTML (img.GetName()));
     2281                item = QString (sSectionItemTpl2)
     2282                    .arg (tr ("Image", "details report (DVD)"),
     2283                          locationForHTML (img.GetName()));
    22812284                break;
    22822285            }
     
    22892292                    drvName :
    22902293                    QString ("%1 (%2)").arg (description, drvName);
    2291                 item = item.arg (tr ("Host Drive", "details report (DVD)"),
    2292                                  fullName);
     2294                item = QString (sSectionItemTpl2)
     2295                    .arg (tr ("Host Drive", "details report (DVD)"),
     2296                          fullName);
    22932297                break;
    22942298            }
     
    23052309        /* Floppy */
    23062310        CFloppyDrive floppy = aMachine.GetFloppyDrive();
    2307         item = QString (sSectionItemTpl);
    23082311        switch (floppy.GetState())
    23092312        {
    23102313            case KDriveState_NotMounted:
    2311                 item = item.arg (tr ("Not mounted", "details report (floppy)"), "");
     2314                item = QString (sSectionItemTpl1)
     2315                    .arg (tr ("Not mounted", "details report (floppy)"));
    23122316                break;
    23132317            case KDriveState_ImageMounted:
    23142318            {
    23152319                CFloppyImage2 img = floppy.GetImage();
    2316                 item = item.arg (tr ("Image", "details report (floppy)"),
    2317                                  locationForHTML (img.GetName()));
     2320                item = QString (sSectionItemTpl2)
     2321                    .arg (tr ("Image", "details report (floppy)"),
     2322                          locationForHTML (img.GetName()));
    23182323                break;
    23192324            }
     
    23262331                    drvName :
    23272332                    QString ("%1 (%2)").arg (description, drvName);
    2328                 item = item.arg (tr ("Host Drive", "details report (floppy)"),
    2329                                  fullName);
     2333                item = QString (sSectionItemTpl2)
     2334                    .arg (tr ("Host Drive", "details report (floppy)"),
     2335                          fullName);
    23302336                break;
    23312337            }
     
    23452351            int rows = audio.GetEnabled() ? 3 : 2;
    23462352            if (audio.GetEnabled())
    2347                 item = QString (sSectionItemTpl)
     2353                item = QString (sSectionItemTpl2)
    23482354                       .arg (tr ("Host Driver", "details report (audio)"),
    23492355                             toString (audio.GetAudioDriver())) +
    2350                        QString (sSectionItemTpl)
     2356                       QString (sSectionItemTpl2)
    23512357                       .arg (tr ("Controller", "details report (audio)"),
    23522358                             toString (audio.GetAudioController()));
    23532359            else
    2354                 item = QString (sSectionItemTpl)
    2355                     .arg (tr ("Disabled", "details report (audio)"), "");
     2360                item = QString (sSectionItemTpl1)
     2361                    .arg (tr ("Disabled", "details report (audio)"));
    23562362
    23572363            detailsReport += sectionTpl
     
    23872393                        attType = attType.arg (vboxGlobal().toString (type));
    23882394
    2389                     item += QString (sSectionItemTpl)
     2395                    item += QString (sSectionItemTpl2)
    23902396                        .arg (tr ("Adapter %1", "details report (network)")
    23912397                              .arg (adapter.GetSlot() + 1))
     
    23962402            if (item.isNull())
    23972403            {
    2398                 item = QString (sSectionItemTpl)
    2399                     .arg (tr ("Disabled", "details report (network)"), "");
     2404                item = QString (sSectionItemTpl1)
     2405                    .arg (tr ("Disabled", "details report (network)"));
    24002406                ++ rows;
    24012407            }
     
    24292435                        data += toString (mode);
    24302436
    2431                     item += QString (sSectionItemTpl)
     2437                    item += QString (sSectionItemTpl2)
    24322438                        .arg (tr ("Port %1", "details report (serial ports)")
    24332439                              .arg (port.GetSlot() + 1))
     
    24382444            if (item.isNull())
    24392445            {
    2440                 item = QString (sSectionItemTpl)
    2441                     .arg (tr ("Disabled", "details report (serial ports)"), "");
     2446                item = QString (sSectionItemTpl1)
     2447                    .arg (tr ("Disabled", "details report (serial ports)"));
    24422448                ++ rows;
    24432449            }
     
    24652471                        .arg (QDir::toNativeSeparators (port.GetPath()));
    24662472
    2467                     item += QString (sSectionItemTpl)
     2473                    item += QString (sSectionItemTpl2)
    24682474                        .arg (tr ("Port %1", "details report (parallel ports)")
    24692475                              .arg (port.GetSlot() + 1))
     
    24742480            if (item.isNull())
    24752481            {
    2476                 item = QString (sSectionItemTpl)
    2477                     .arg (tr ("Disabled", "details report (parallel ports)"), "");
     2482                item = QString (sSectionItemTpl1)
     2483                    .arg (tr ("Disabled", "details report (parallel ports)"));
    24782484                ++ rows;
    24792485            }
     
    25032509                            active ++;
    25042510
    2505                     item = QString (sSectionItemTpl)
     2511                    item = QString (sSectionItemTpl2)
    25062512                        .arg (tr ("Device Filters", "details report (USB)"),
    25072513                              tr ("%1 (%2 active)", "details report (USB)")
     
    25092515                }
    25102516                else
    2511                     item = QString (sSectionItemTpl)
    2512                         .arg (tr ("Disabled", "details report (USB)"), "");
     2517                    item = QString (sSectionItemTpl1)
     2518                        .arg (tr ("Disabled", "details report (USB)"));
    25132519
    25142520                detailsReport += sectionTpl
     
    25252531            if (count > 0)
    25262532            {
    2527                 item = QString (sSectionItemTpl)
    2528                     .arg (tr ("Shared Folders", "details report (shared folders)"),
    2529                           tr ("%1", "details report (shadef folders)")
    2530                               .arg (count));
     2533                item = QString (sSectionItemTpl2)
     2534                    .arg (tr ("Shared Folders", "details report (shared folders)"))
     2535                    .arg (count);
    25312536            }
    25322537            else
    2533                 item = QString (sSectionItemTpl)
    2534                     .arg (tr ("None", "details report (shared folders)"), "");
     2538                item = QString (sSectionItemTpl1)
     2539                    .arg (tr ("None", "details report (shared folders)"));
    25352540
    25362541            detailsReport += sectionTpl
     
    25492554
    25502555                if (srv.GetEnabled())
    2551                     item = QString (sSectionItemTpl)
    2552                         .arg (tr ("VRDP Server Port", "details report (VRDP)"),
    2553                               tr ("%1", "details report (VRDP)")
    2554                                   .arg (srv.GetPort()));
     2556                    item = QString (sSectionItemTpl2)
     2557                        .arg (tr ("VRDP Server Port", "details report (VRDP)"))
     2558                        .arg (srv.GetPort());
    25552559                else
    2556                     item = QString (sSectionItemTpl)
    2557                         .arg (tr ("Disabled", "details report (VRDP)"), "");
     2560                    item = QString (sSectionItemTpl1)
     2561                        .arg (tr ("Disabled", "details report (VRDP)"));
    25582562
    25592563                detailsReport += sectionTpl
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette