File indexing completed on 2024-06-16 05:24:56

0001 /*
0002     This file is part of the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2009 Friedrich W. H. Kossebau <kossebau@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #ifndef KASTEN_PRINTCOLUMNSTYLIST_HPP
0010 #define KASTEN_PRINTCOLUMNSTYLIST_HPP
0011 
0012 // Okteta gui
0013 #include <Okteta/AbstractColumnStylist>
0014 // Qt
0015 #include <QPalette>
0016 
0017 namespace Okteta {
0018 
0019 class PrintColumnStylist : public Okteta::AbstractColumnStylist
0020 {
0021 public:
0022     PrintColumnStylist();
0023     ~PrintColumnStylist() override;
0024 
0025 public: // AbstractColumnStylist API
0026     const QPalette& palette() const override;
0027 
0028 private:
0029     QPalette mPalette = {Qt::white};
0030 };
0031 
0032 }
0033 
0034 #endif