VirtualBox

Changeset 46912 in vbox


Ignore:
Timestamp:
Jul 2, 2013 3:06:34 PM (12 years ago)
Author:
vboxsync
Message:

FE/Qt: Selector UI: Details pane: Display element: Added Video Capture stuff.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsElements.cpp

    r45050 r46912  
    417417                    m_text << UITextTableLine(QApplication::translate("UIGDetails", "Remote Desktop Server", "details (display/vrde)"),
    418418                                              QApplication::translate("UIGDetails", "Disabled", "details (display/vrde/VRDE server)"));
     419            }
     420
     421            /* Video Capture info: */
     422            if (machine().GetVideoCaptureEnabled())
     423            {
     424                m_text << UITextTableLine(QApplication::translate("UIGDetails", "Video Capture File", "details (display/video capture)"),
     425                                          machine().GetVideoCaptureFile());
     426                m_text << UITextTableLine(QApplication::translate("UIGDetails", "Video Capture Attributes", "details (display/video capture)"),
     427                                          tr("Frame Size: %1x%2, Frame Rate: %3fps, Bit Rate: %4kbps")
     428                                             .arg(machine().GetVideoCaptureWidth()).arg(machine().GetVideoCaptureHeight())
     429                                             .arg(machine().GetVideoCaptureFPS()).arg(machine().GetVideoCaptureRate()));
     430            }
     431            else
     432            {
     433                m_text << UITextTableLine(QApplication::translate("UIGDetails", "Video Capture", "details (display/video capture)"),
     434                                          QApplication::translate("UIGDetails", "Disabled", "details (display/video capture)"));
    419435            }
    420436        }
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