Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/florianbecker/layoutvisualizer

Layout Visualizer for Qt and Tools for Ui debugging
https://github.com/florianbecker/layoutvisualizer

cpp cpp11 cpp14 cpp17 layout-visualizer qt qt5-gui qt5-widgets qt6

Last synced: 3 months ago
JSON representation

Layout Visualizer for Qt and Tools for Ui debugging

Awesome Lists containing this project

README

        

# LayoutVisualizer
Layout Visualizer for Qt and Tools for Ui debugging
## SimpleDemo
macOS light thememacOS dark theme

### Usage
```cpp
#include

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.
```cmake
# for debugging of build steps
option(CMAKE_VERBOSE_MAKEFILE "Show the complete build commands" OFF)
```