mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-05 06:25:16 +00:00
customizable font sizes on graphs
This commit is contained in:
parent
2cf4c5a311
commit
d7830de8d1
9 changed files with 133 additions and 55 deletions
|
|
@ -95,6 +95,10 @@ public:
|
|||
GraphDomainChangeBehavior domainChangeBehavior;
|
||||
|
||||
double lineWidth;
|
||||
int fontSizeAxis;
|
||||
int fontSizeMarkerData;
|
||||
int fontSizeTraceNames;
|
||||
int fontSizeCursorOverlay;
|
||||
} Graphs;
|
||||
struct {
|
||||
struct {
|
||||
|
|
@ -163,6 +167,10 @@ private:
|
|||
{&Graphs.Color.Ticks.divisions, "Graphs.Color.Ticks.divisions", QColor(Qt::gray)},
|
||||
{&Graphs.domainChangeBehavior, "Graphs.domainChangeBehavior", GraphDomainChangeBehavior::AdjustGraphs},
|
||||
{&Graphs.lineWidth, "Graphs.lineWidth", 1.0},
|
||||
{&Graphs.fontSizeAxis, "Graphs.fontSizeAxis", 10},
|
||||
{&Graphs.fontSizeCursorOverlay, "Graphs.fontSizeCursorOverlay", 12},
|
||||
{&Graphs.fontSizeMarkerData, "Graphs.fontSizeMarkerData", 12},
|
||||
{&Graphs.fontSizeTraceNames, "Graphs.fontSizeTraceNames", 12},
|
||||
{&Marker.defaultBehavior.showDataOnGraphs, "Marker.defaultBehavior.ShowDataOnGraphs", true},
|
||||
{&Marker.defaultBehavior.showAllData, "Marker.defaultBehavior.ShowAllData", false},
|
||||
{&Marker.interpolatePoints, "Marker.interpolatePoints", false},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue