VirtualBox

Changeset 46477 in vbox for trunk


Ignore:
Timestamp:
Jun 10, 2013 4:10:40 PM (12 years ago)
Author:
vboxsync
Message:

FE/Qt: VM settings: Display page: Video Capture tab: Overall cleanup (part 7): Some stuff renaming.

Location:
trunk/src/VBox/Frontends/VirtualBox/src/settings/machine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsDisplay.cpp

    r46473 r46477  
    480480}
    481481
    482 void UIMachineSettingsDisplay::sltHandleVideoCaptureFrameWidthSpinboxChange()
     482void UIMachineSettingsDisplay::sltHandleVideoCaptureFrameWidthEditorChange()
    483483{
    484484    /* Look for preset: */
     
    488488}
    489489
    490 void UIMachineSettingsDisplay::sltHandleVideoCaptureFrameHeightSpinboxChange()
     490void UIMachineSettingsDisplay::sltHandleVideoCaptureFrameHeightEditorChange()
    491491{
    492492    /* Look for preset: */
     
    506506}
    507507
    508 void UIMachineSettingsDisplay::sltHandleVideoCaptureFrameRateSpinboxChange()
     508void UIMachineSettingsDisplay::sltHandleVideoCaptureFrameRateEditorChange()
    509509{
    510510    /* Apply proposed frame-rate: */
     
    527527}
    528528
    529 void UIMachineSettingsDisplay::sltHandleVideoCaptureBitRateSpinboxChange()
     529void UIMachineSettingsDisplay::sltHandleVideoCaptureBitRateEditorChange()
    530530{
    531531    /* Calculate/apply proposed quality: */
     
    644644    connect(m_pComboVideoCaptureSize, SIGNAL(currentIndexChanged(int)), this, SLOT(sltHandleVideoCaptureFrameSizeComboboxChange()));
    645645
    646     /* Prepare frame-width/height spin-boxes: */
     646    /* Prepare frame-width/height editors: */
    647647    vboxGlobal().setMinimumWidthAccordingSymbolCount(m_pEditorVideoCaptureWidth, 5);
    648648    vboxGlobal().setMinimumWidthAccordingSymbolCount(m_pEditorVideoCaptureHeight, 5);
     
    651651    m_pEditorVideoCaptureHeight->setMinimum(16);
    652652    m_pEditorVideoCaptureHeight->setMaximum(1200);
    653     connect(m_pEditorVideoCaptureWidth, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureFrameWidthSpinboxChange()));
    654     connect(m_pEditorVideoCaptureHeight, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureFrameHeightSpinboxChange()));
     653    connect(m_pEditorVideoCaptureWidth, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureFrameWidthEditorChange()));
     654    connect(m_pEditorVideoCaptureHeight, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureFrameHeightEditorChange()));
    655655
    656656    /* Prepare frame-rate slider: */
     
    665665    connect(m_pSliderVideoCaptureFrameRate, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureFrameRateSliderChange()));
    666666
    667     /* Prepare frame-rate spin-box: */
     667    /* Prepare frame-rate editor: */
    668668    vboxGlobal().setMinimumWidthAccordingSymbolCount(m_pEditorVideoCaptureFrameRate, 3);
    669669    m_pEditorVideoCaptureFrameRate->setMinimum(1);
    670670    m_pEditorVideoCaptureFrameRate->setMaximum(30);
    671     connect(m_pEditorVideoCaptureFrameRate, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureFrameRateSpinboxChange()));
     671    connect(m_pEditorVideoCaptureFrameRate, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureFrameRateEditorChange()));
    672672
    673673    /* Prepare quality combo-box: */
     
    685685    connect(m_pSliderVideoCaptureQuality, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureQualitySliderChange()));
    686686
    687     /* Prepare bit-rate spin-box: */
     687    /* Prepare bit-rate editor: */
    688688    vboxGlobal().setMinimumWidthAccordingSymbolCount(m_pEditorVideoCaptureBitRate, 5);
    689689    m_pEditorVideoCaptureBitRate->setMinimum(32);
    690690    m_pEditorVideoCaptureBitRate->setMaximum(2048);
    691     connect(m_pEditorVideoCaptureBitRate, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureBitRateSpinboxChange()));
     691    connect(m_pEditorVideoCaptureBitRate, SIGNAL(valueChanged(int)), this, SLOT(sltHandleVideoCaptureBitRateEditorChange()));
    692692}
    693693
  • trunk/src/VBox/Frontends/VirtualBox/src/settings/machine/UIMachineSettingsDisplay.h

    r46461 r46477  
    168168    /* Handlers: Video Capture stuff: */
    169169    void sltHandleVideoCaptureFrameSizeComboboxChange();
    170     void sltHandleVideoCaptureFrameWidthSpinboxChange();
    171     void sltHandleVideoCaptureFrameHeightSpinboxChange();
     170    void sltHandleVideoCaptureFrameWidthEditorChange();
     171    void sltHandleVideoCaptureFrameHeightEditorChange();
    172172    void sltHandleVideoCaptureFrameRateSliderChange();
    173     void sltHandleVideoCaptureFrameRateSpinboxChange();
     173    void sltHandleVideoCaptureFrameRateEditorChange();
    174174    void sltHandleVideoCaptureQualitySliderChange();
    175     void sltHandleVideoCaptureBitRateSpinboxChange();
     175    void sltHandleVideoCaptureBitRateEditorChange();
    176176
    177177private:
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