Krita Source Code Documentation
Loading...
Searching...
No Matches
KoInsets.cpp File Reference
#include "KoInsets.h"

Go to the source code of this file.

Functions

QDebug operator<< (QDebug debug, const KoInsets &insets)
 

Function Documentation

◆ operator<<()

QDebug operator<< ( QDebug debug,
const KoInsets & insets )

Definition at line 10 of file KoInsets.cpp.

11{
12#ifndef NDEBUG
13 debug.nospace() << "KoInsets [top=" << insets.top;
14 debug.nospace() << ", left=" << insets.left;
15 debug.nospace() << ", bottom=" << insets.bottom;
16 debug.nospace() << ", right=" << insets.right << ']';
17#else
18 Q_UNUSED(insets);
19#endif
20 return debug.space();
21}
PyObject * debug(PyObject *, PyObject *args)
qreal bottom
Bottom inset.
Definition KoInsets.h:50
qreal right
Right inset.
Definition KoInsets.h:52
qreal top
Top inset.
Definition KoInsets.h:49
qreal left
Left inset.
Definition KoInsets.h:51

References KoInsets::bottom, KoInsets::left, KoInsets::right, and KoInsets::top.