mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
26 lines
429 B
C++
26 lines
429 B
C++
#pragma once
|
|
|
|
#include "widgets/split.hpp"
|
|
|
|
#include <vector>
|
|
|
|
namespace chatterino {
|
|
namespace helper {
|
|
|
|
class SplitColumn
|
|
{
|
|
public:
|
|
SplitColumn() = default;
|
|
|
|
void insert(widgets::Split *split, int index = -1);
|
|
void remove(int index);
|
|
double getFlex();
|
|
void setFlex(double flex);
|
|
|
|
private:
|
|
std::vector<widgets::Split> items;
|
|
};
|
|
|
|
} // namespace helper
|
|
} // namespace chatterino
|