A PyQT GUI application for converting InfoLease report outputs into Excel files. Handles parsing and summarizing. Learns where files are meant to be store and compiles monthly and yearly summaries.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
InfoLeaseExtract/venv/Lib/site-packages/PyQt5/bindings/QtGui/qpixelformat.sip

159 lines
5.6 KiB

// qpixelformat.sip generated by MetaSIP
//
// This file is part of the QtGui Python extension module.
//
// Copyright (c) 2022 Riverbank Computing Limited <info@riverbankcomputing.com>
//
// This file is part of PyQt5.
//
// This file may be used under the terms of the GNU General Public License
// version 3.0 as published by the Free Software Foundation and appearing in
// the file LICENSE included in the packaging of this file. Please review the
// following information to ensure the GNU General Public License version 3.0
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
//
// If you do not wish to use this file under the terms of the GPL version 3.0
// then you may purchase a commercial license. For more information contact
// info@riverbankcomputing.com.
//
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
%If (Qt_5_4_0 -)
%ModuleCode
#include <qpixelformat.h>
%End
%End
%If (Qt_5_4_0 -)
class QPixelFormat
{
%TypeHeaderCode
#include <qpixelformat.h>
%End
public:
enum ColorModel
{
RGB,
BGR,
Indexed,
Grayscale,
CMYK,
HSL,
HSV,
YUV,
%If (Qt_5_5_0 -)
Alpha,
%End
};
enum AlphaUsage
{
UsesAlpha,
IgnoresAlpha,
};
enum AlphaPosition
{
AtBeginning,
AtEnd,
};
enum AlphaPremultiplied
{
NotPremultiplied,
Premultiplied,
};
enum TypeInterpretation
{
UnsignedInteger,
UnsignedShort,
UnsignedByte,
FloatingPoint,
};
enum YUVLayout
{
YUV444,
YUV422,
YUV411,
YUV420P,
YUV420SP,
YV12,
UYVY,
YUYV,
NV12,
NV21,
IMC1,
IMC2,
IMC3,
IMC4,
Y8,
Y16,
};
enum ByteOrder
{
LittleEndian,
BigEndian,
CurrentSystemEndian,
};
QPixelFormat();
QPixelFormat(QPixelFormat::ColorModel mdl, uchar firstSize /PyInt/, uchar secondSize /PyInt/, uchar thirdSize /PyInt/, uchar fourthSize /PyInt/, uchar fifthSize /PyInt/, uchar alfa /PyInt/, QPixelFormat::AlphaUsage usage, QPixelFormat::AlphaPosition position, QPixelFormat::AlphaPremultiplied premult, QPixelFormat::TypeInterpretation typeInterp, QPixelFormat::ByteOrder byteOrder = QPixelFormat::CurrentSystemEndian, uchar subEnum /PyInt/ = 0);
QPixelFormat::ColorModel colorModel() const;
uchar channelCount() const /PyInt/;
uchar redSize() const /PyInt/;
uchar greenSize() const /PyInt/;
uchar blueSize() const /PyInt/;
uchar cyanSize() const /PyInt/;
uchar magentaSize() const /PyInt/;
uchar yellowSize() const /PyInt/;
uchar blackSize() const /PyInt/;
uchar hueSize() const /PyInt/;
uchar saturationSize() const /PyInt/;
uchar lightnessSize() const /PyInt/;
uchar brightnessSize() const /PyInt/;
uchar alphaSize() const /PyInt/;
uchar bitsPerPixel() const /PyInt/;
QPixelFormat::AlphaUsage alphaUsage() const;
QPixelFormat::AlphaPosition alphaPosition() const;
QPixelFormat::AlphaPremultiplied premultiplied() const;
QPixelFormat::TypeInterpretation typeInterpretation() const;
QPixelFormat::ByteOrder byteOrder() const;
QPixelFormat::YUVLayout yuvLayout() const;
uchar subEnum() const /PyInt/;
};
%End
%If (Qt_5_4_0 -)
bool operator==(QPixelFormat fmt1, QPixelFormat fmt2);
%End
%If (Qt_5_4_0 -)
bool operator!=(QPixelFormat fmt1, QPixelFormat fmt2);
%End
%If (Qt_5_4_0 -)
QPixelFormat qPixelFormatRgba(uchar red /PyInt/, uchar green /PyInt/, uchar blue /PyInt/, uchar alfa /PyInt/, QPixelFormat::AlphaUsage usage, QPixelFormat::AlphaPosition position, QPixelFormat::AlphaPremultiplied premultiplied = QPixelFormat::NotPremultiplied, QPixelFormat::TypeInterpretation typeInterpretation = QPixelFormat::UnsignedInteger);
%End
%If (Qt_5_4_0 -)
QPixelFormat qPixelFormatGrayscale(uchar channelSize /PyInt/, QPixelFormat::TypeInterpretation typeInterpretation = QPixelFormat::UnsignedInteger);
%End
%If (Qt_5_4_0 -)
QPixelFormat qPixelFormatCmyk(uchar channelSize /PyInt/, uchar alphaSize /PyInt/ = 0, QPixelFormat::AlphaUsage alphaUsage = QPixelFormat::IgnoresAlpha, QPixelFormat::AlphaPosition alphaPosition = QPixelFormat::AtBeginning, QPixelFormat::TypeInterpretation typeInterpretation = QPixelFormat::UnsignedInteger);
%End
%If (Qt_5_4_0 -)
QPixelFormat qPixelFormatHsl(uchar channelSize /PyInt/, uchar alphaSize /PyInt/ = 0, QPixelFormat::AlphaUsage alphaUsage = QPixelFormat::IgnoresAlpha, QPixelFormat::AlphaPosition alphaPosition = QPixelFormat::AtBeginning, QPixelFormat::TypeInterpretation typeInterpretation = QPixelFormat::FloatingPoint);
%End
%If (Qt_5_4_0 -)
QPixelFormat qPixelFormatHsv(uchar channelSize /PyInt/, uchar alphaSize /PyInt/ = 0, QPixelFormat::AlphaUsage alphaUsage = QPixelFormat::IgnoresAlpha, QPixelFormat::AlphaPosition alphaPosition = QPixelFormat::AtBeginning, QPixelFormat::TypeInterpretation typeInterpretation = QPixelFormat::FloatingPoint);
%End
%If (Qt_5_4_0 -)
QPixelFormat qPixelFormatYuv(QPixelFormat::YUVLayout layout, uchar alphaSize /PyInt/ = 0, QPixelFormat::AlphaUsage alphaUsage = QPixelFormat::IgnoresAlpha, QPixelFormat::AlphaPosition alphaPosition = QPixelFormat::AtBeginning, QPixelFormat::AlphaPremultiplied premultiplied = QPixelFormat::NotPremultiplied, QPixelFormat::TypeInterpretation typeInterpretation = QPixelFormat::UnsignedByte, QPixelFormat::ByteOrder byteOrder = QPixelFormat::LittleEndian);
%End
%If (Qt_5_5_0 -)
QPixelFormat qPixelFormatAlpha(uchar channelSize /PyInt/, QPixelFormat::TypeInterpretation typeInterpretation = QPixelFormat::UnsignedInteger);
%End