Files
Jungfraujoch/viewer/widgets/ToolbarIcons.h
T
leonarski_f 54c667190f
Build Packages / Unit tests (push) Successful in 1h26m8s
Build Packages / build:rpm (rocky8_nocuda) (push) Successful in 13m38s
Build Packages / build:rpm (rocky9_nocuda) (push) Successful in 13m45s
Build Packages / build:rpm (ubuntu2204_nocuda) (push) Successful in 13m39s
Build Packages / build:rpm (ubuntu2404_nocuda) (push) Successful in 12m55s
Build Packages / build:rpm (rocky8_sls9) (push) Successful in 13m51s
Build Packages / build:rpm (rocky9_sls9) (push) Successful in 14m35s
Build Packages / build:rpm (rocky8) (push) Successful in 12m28s
Build Packages / build:rpm (rocky9) (push) Successful in 13m20s
Build Packages / build:rpm (ubuntu2204) (push) Successful in 12m15s
Build Packages / build:rpm (ubuntu2404) (push) Successful in 11m43s
Build Packages / DIALS test (push) Successful in 14m21s
Build Packages / XDS test (durin plugin) (push) Successful in 7m48s
Build Packages / XDS test (JFJoch plugin) (push) Successful in 7m52s
Build Packages / XDS test (neggia plugin) (push) Successful in 7m31s
Build Packages / Generate python client (push) Successful in 15s
Build Packages / Build documentation (push) Successful in 53s
Build Packages / Create release (push) Skipped
v1.0.0-rc.155 (#65)
This is an UNSTABLE release. It includes many experimental features, as well as many AI generated fixes. We recommend using rc.152 for production use.

* jfjoch_process: Remove pixelrefine option (replaced with ProfileIntegrate2D)
* jfjoch_viewer: Some graphical improvements.
* jfjoch_viewer: Simplify und unify data analysis settings.
* jfjoch_writer: Add TCP keepalive to increase robustness if jfjoch_broker "dies" in the middle of data acquisition.

Reviewed-on: #65
2026-06-25 22:01:48 +02:00

29 lines
1.2 KiB
C++

// SPDX-FileCopyrightText: 2026 Filip Leonarski, Paul Scherrer Institute <filip.leonarski@psi.ch>
// SPDX-License-Identifier: GPL-3.0-only
#pragma once
#include <QIcon>
// Vector toolbar glyphs drawn with QPainter (Qt SVG module is not a build dependency). Toggle
// icons carry a white "On" variant so they read on the navy checked-button background; momentary
// icons are ink with a greyed disabled variant. Colours match the viewer palette.
namespace ToolbarIcons {
QIcon first();
QIcon prev();
QIcon next();
QIcon last();
QIcon movie(); // reel-on-top movie camera (distinct from the next/play triangle)
QIcon openFile(); // 5.25" diskette with an outward arrow
QIcon reanalyzeImage(); // single diffraction frame
QIcon reanalyzeDataset(); // a stack of frames
QIcon linePlot(); // line chart on axes (per-resolution plot view)
QIcon table(); // grid of rows/columns (table view)
enum class HttpState { Disconnected, Live, Frozen };
QIcon httpSync(HttpState state); // sync arrows + a status dot (grey / green / amber)
// Shared stylesheet for flat toolbar buttons (coral hover, navy checked + white content).
QString buttonStyle();
}