Commit a68ca69e authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: main interface: add some better debugging

parent d80d6da7
...@@ -529,7 +529,11 @@ inline void MainInterface::restoreStackOldWidget() ...@@ -529,7 +529,11 @@ inline void MainInterface::restoreStackOldWidget()
inline void MainInterface::showTab( QWidget *widget ) inline void MainInterface::showTab( QWidget *widget )
{ {
#ifdef DEBUG_INTF #ifdef DEBUG_INTF
msg_Warn( p_intf, "Old stackCentralOldWidget %i", stackCentralW->indexOf( stackCentralOldWidget ) ); if ( stackCentralOldWidget )
msg_Dbg( p_intf, "Old stackCentralOldWidget %s at index %i",
stackCentralOldWidget->metaObject()->className(),
stackCentralW->indexOf( stackCentralOldWidget ) );
msg_Dbg( p_intf, "ShowTab request for %s", widget->metaObject()->className() );
#endif #endif
stackCentralOldWidget = stackCentralW->currentWidget(); stackCentralOldWidget = stackCentralW->currentWidget();
...@@ -570,8 +574,12 @@ inline void MainInterface::showTab( QWidget *widget ) ...@@ -570,8 +574,12 @@ inline void MainInterface::showTab( QWidget *widget )
resizeStack( stackWidgetsSizes[widget].width(), stackWidgetsSizes[widget].height() ); resizeStack( stackWidgetsSizes[widget].width(), stackWidgetsSizes[widget].height() );
#ifdef DEBUG_INTF #ifdef DEBUG_INTF
msg_Warn( p_intf, "State change %i", stackCentralW->currentIndex() ); msg_Dbg( p_intf, "Stack state changed to %s, index %i",
msg_Warn( p_intf, "New stackCentralOldWidget %i", stackCentralW->indexOf( stackCentralOldWidget ) ); stackCentralW->currentWidget()->metaObject()->className(),
stackCentralW->currentIndex() );
msg_Dbg( p_intf, "New stackCentralOldWidget %s at index %i",
stackCentralOldWidget->metaObject()->className(),
stackCentralW->indexOf( stackCentralOldWidget ) );
#endif #endif
/* This part is done later, to account for the new pl size */ /* This part is done later, to account for the new pl size */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment