Skip to content

Layout Visualizer for Qt and Tools for Ui debugging

License

Notifications You must be signed in to change notification settings

florianbecker/LayoutVisualizer

LayoutVisualizer

Layout Visualizer for Qt and Tools for Ui debugging

SimpleDemo

macOS light thememacOS dark theme

Usage

#include <LayoutVisualizer.h>

MyWidget::MyWidget( QWidget *_parent )
    : QWidget( _parent ) {

  // do ui stuff here

  installEventFilter( new vx::LayoutVisualizer( this ) );
}

RasterWindow

Draw directly on window with QBackingStore.

User-defined build variables

Inside cmake/env.cmake you will find some user-defined build variables for particular purposes.

Debugging

You can log the verbose build output.

# for debugging of build steps
option(CMAKE_VERBOSE_MAKEFILE "Show the complete build commands" OFF)