Euphoria
layoutdata.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace eu::gui
4 {
5  struct LayoutData
6  {
7  int column = 0;
8  int row = 0;
9  float preferred_width = 0.0f;
10  float preferred_height = 0.0f;
11 
12  LayoutData() = default;
13  };
14 }