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