本文整理汇总了C++中QWidget::isDialog方法的典型用法代码示例。如果您正苦于以下问题:C++ QWidget::isDialog方法的具体用法?C++ QWidget::isDialog怎么用?C++ QWidget::isDialog使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QWidget
的用法示例。
在下文中一共展示了QWidget::isDialog方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: correctSubWindow
/*
\internal
Returns TRUE if the accel is in the current subwindow, else FALSE.
*/
bool QAccelManager::correctSubWindow( QWidget* w, QAccelPrivate* d ) {
#if !defined ( Q_OS_MACX )
if ( !d->watch || !d->watch->isVisible() || !d->watch->isEnabled() )
#else
if ( !d->watch || (!d->watch->isVisible() && !d->watch->inherits( "QMenuBar" )) || !d->watch->isEnabled() )
#endif
return FALSE;
QWidget* tlw = w->topLevelWidget();
QWidget* wtlw = d->watch->topLevelWidget();
/* if we live in a floating dock window, keep our parent's
* accelerators working */
#ifndef QT_NO_MAINWINDOW
if ( tlw->isDialog() && tlw->parentWidget() && ::qt_cast<QDockWindow*>(tlw) )
return tlw->parentWidget()->topLevelWidget() == wtlw;
if ( wtlw != tlw )
return FALSE;
#endif
/* if we live in a MDI subwindow, ignore the event if we are
not the active document window */
QWidget* sw = d->watch;
while ( sw && !sw->testWFlags( WSubWindow ) )
sw = sw->parentWidget( TRUE );
if ( sw ) { // we are in a subwindow indeed
QWidget* fw = w;
while ( fw && fw != sw )
fw = fw->parentWidget( TRUE );
if ( fw != sw ) // focus widget not in our subwindow
return FALSE;
}
return TRUE;
}