summaryrefslogtreecommitdiff
path: root/plugins/Skins/SkinLib/BorderState.h
blob: 2cac3c1aa5382cba28b1d9e2d728cbe9b67ae5c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#pragma once

class BorderState
{
public:
	BorderState(int left, int right, int top, int bottom);
	~BorderState();

	int getLeft() const;
	void setLeft(int left);

	int getRight() const;
	void setRight(int right);

	int getTop() const;
	void setTop(int top);

	int getBottom() const;
	void setBottom(int bottom);

	void setAll(int border);

private:
	int left;
	int right;
	int top;
	int bottom;
};