50 lines
1 KiB
C++
50 lines
1 KiB
C++
// -*- C++ -*-
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
// Copyright Jean Pierre Cimalando 2019-2020.
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#pragma once
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
struct LayoutImage {
|
|
std::string filepath;
|
|
int x = 0;
|
|
int y = 0;
|
|
int w = 0;
|
|
int h = 0;
|
|
};
|
|
|
|
struct LayoutItem {
|
|
std::string id;
|
|
std::string classname;
|
|
std::string label;
|
|
int x = 0;
|
|
int y = 0;
|
|
int w = 0;
|
|
int h = 0;
|
|
std::string box;
|
|
std::string down_box;
|
|
int labelfont = 0;
|
|
int labelsize = 14;
|
|
std::string labeltype;
|
|
int textsize = 14;
|
|
int align = 0;
|
|
double value = 0;
|
|
double minimum = 0;
|
|
double maximum = 0;
|
|
double step = 0;
|
|
std::string type;
|
|
std::string callback;
|
|
LayoutImage image;
|
|
bool hidden = false;
|
|
std::string comment;
|
|
std::vector<LayoutItem> items;
|
|
};
|
|
|
|
struct Layout {
|
|
std::vector<LayoutItem> items;
|
|
};
|