test_sdk/gui/gtl_gui_chart_axis_x.cpp

22 lines
378 B
C++
Raw Permalink Normal View History

#include "gtl_gui_chart_axis_x.h"
namespace gtl
{
namespace gui
{
chart_axis_x::chart_axis_x()
{
}
void chart_axis_x::set_theme(bool is_dack)
{
prepareGeometryChange();
if (is_dack)
_color_labels = Qt::white;
else
_color_labels = Qt::black;
}
}
}