/* * Copyright 2019 Michail Vourlakos * * This file is part of Latte-Dock * * Latte-Dock is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * Latte-Dock is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . * */ #ifndef GENERICSETTINGSTOOLS_H #define GENERICSETTINGSTOOLS_H // local #include "../../data/layouticondata.h" #include "../../data/viewdata.h" // Qt #include #include #include #include #include namespace Latte { bool isActive(const QStyleOption &option); bool isEnabled(const QStyleOption &option); bool isFocused(const QStyleOption &option); bool isSelected(const QStyleOption &option); bool isHovered(const QStyleOption &option); bool isTextCentered(const QStyleOptionViewItem &option); QPalette::ColorGroup colorGroup(const QStyleOption &option); //! strings that even though they were initially at original list //! now they are not present to current list QStringList subtracted(const QStringList &original, const QStringList ¤t); void drawFormattedText(QPainter *painter, const QStyleOptionViewItem &option); void drawLayoutIcon(QPainter *painter, const QStyleOption &option, const QRect &target, const Latte::Data::LayoutIcon &icon); //! simple icon QRect remainedFromIcon(const QStyleOption &option); void drawIconBackground(QPainter *painter, const QStyle *style, const QStyleOptionMenuItem &option); void drawIcon(QPainter *painter, const QStyleOption &option, const QString &icon); //! changes indicator QRect remainedFromChangesIndicator(const QStyleOptionViewItem &option); void drawChangesIndicatorBackground(QPainter *painter, const QStyleOptionViewItem &option); void drawChangesIndicator(QPainter *painter, const QStyleOptionViewItem &option); //! screen icon QRect remainedFromScreenDrawing(const QStyleOptionViewItem &option); QRect drawScreen(QPainter *painter, const QStyleOptionViewItem &option, QRect screenGeometry); // returns screen available rect void drawScreenBackground(QPainter *painter, const QStyleOptionViewItem &option); // returns option.rect remained rect void drawView(QPainter *painter, const QStyleOptionViewItem &option, const Latte::Data::View &view, const QRect &availableScreenRect); int screenMaxLength(const QStyleOptionViewItem &option); } #endif