From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- ui/qt/utils/stock_icon.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 ui/qt/utils/stock_icon.h (limited to 'ui/qt/utils/stock_icon.h') diff --git a/ui/qt/utils/stock_icon.h b/ui/qt/utils/stock_icon.h new file mode 100644 index 00000000..5b333736 --- /dev/null +++ b/ui/qt/utils/stock_icon.h @@ -0,0 +1,40 @@ +/** @file + * + * Wireshark - Network traffic analyzer + * By Gerald Combs + * Copyright 1998 Gerald Combs + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef STOCK_ICON_H +#define STOCK_ICON_H + +#include + +/** @file + * Goal: Beautiful icons appropriate for each of our supported platforms. + */ + +// Supported standard names: +// document-open + +// Supported custom names (see images/toolbar): +// x-capture-file-close +// x-capture-file-save + +class StockIcon : public QIcon +{ +public: + explicit StockIcon(const QString icon_name); + + static QIcon colorIcon(const QRgb bg_color, const QRgb fg_color, const QString glyph = QString()); + static QIcon colorIconTriangle(const QRgb bg_color, const QRgb fg_color); + static QIcon colorIconCross(const QRgb bg_color, const QRgb fg_color); + static QIcon colorIconCircle(const QRgb bg_color, const QRgb fg_color); + +private: + void fillIconNameMap(); +}; + +#endif // STOCK_ICON_H -- cgit v1.2.3