VirtualBox

Changeset 77030 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Jan 29, 2019 1:10:40 PM (6 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
128463
Message:

FE/Qt: bugref:9072 Moving info label of search panel to the left of checkboxes. Still not happy with it. I will try to find some other solution

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/logviewer/UIVMLogViewerSearchPanel.cpp

    r76954 r77030  
    255255    }
    256256
    257     /* Create case-sensitive check-box: */
    258     m_pCaseSensitiveCheckBox = new QCheckBox;
    259     if (m_pCaseSensitiveCheckBox)
    260     {
    261         mainLayout()->addWidget(m_pCaseSensitiveCheckBox);
    262     }
    263 
    264     /* Create whole-word check-box: */
    265     m_pMatchWholeWordCheckBox = new QCheckBox;
    266     if (m_pMatchWholeWordCheckBox)
    267     {
    268         setFocusProxy(m_pMatchWholeWordCheckBox);
    269         mainLayout()->addWidget(m_pMatchWholeWordCheckBox);
    270     }
    271 
    272     /* Create highlight-all check-box: */
    273     m_pHighlightAllCheckBox = new QCheckBox;
    274     if (m_pHighlightAllCheckBox)
    275     {
    276         mainLayout()->addWidget(m_pHighlightAllCheckBox);
    277     }
    278 
    279257    /* Create search field layout: */
    280258    QHBoxLayout *pSearchErrorLayout = new QHBoxLayout;
     
    308286
    309287        mainLayout()->addLayout(pSearchErrorLayout);
     288    }
     289
     290    /* Create case-sensitive check-box: */
     291    m_pCaseSensitiveCheckBox = new QCheckBox;
     292    if (m_pCaseSensitiveCheckBox)
     293    {
     294        mainLayout()->addWidget(m_pCaseSensitiveCheckBox);
     295    }
     296
     297    /* Create whole-word check-box: */
     298    m_pMatchWholeWordCheckBox = new QCheckBox;
     299    if (m_pMatchWholeWordCheckBox)
     300    {
     301        setFocusProxy(m_pMatchWholeWordCheckBox);
     302        mainLayout()->addWidget(m_pMatchWholeWordCheckBox);
     303    }
     304
     305    /* Create highlight-all check-box: */
     306    m_pHighlightAllCheckBox = new QCheckBox;
     307    if (m_pHighlightAllCheckBox)
     308    {
     309        mainLayout()->addWidget(m_pHighlightAllCheckBox);
    310310    }
    311311}
Note: See TracChangeset for help on using the changeset viewer.

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