mirror of
https://github.com/nicbarker/clay.git
synced 2025-04-18 20:28:01 +00:00
Switch to macro
This commit is contained in:
parent
1e411dd76c
commit
225118a5a7
@ -4,7 +4,6 @@
|
|||||||
|
|
||||||
const int FONT_ID_BODY_16 = 0;
|
const int FONT_ID_BODY_16 = 0;
|
||||||
Clay_Color COLOR_WHITE = { 255, 255, 255, 255};
|
Clay_Color COLOR_WHITE = { 255, 255, 255, 255};
|
||||||
Clay_Padding outerPadding16 = { 16, 16, 16, 16 };
|
|
||||||
|
|
||||||
void RenderHeaderButton(Clay_String text) {
|
void RenderHeaderButton(Clay_String text) {
|
||||||
CLAY(
|
CLAY(
|
||||||
@ -23,7 +22,7 @@ void RenderHeaderButton(Clay_String text) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void RenderDropdownMenuItem(Clay_String text) {
|
void RenderDropdownMenuItem(Clay_String text) {
|
||||||
CLAY(CLAY_LAYOUT({ .padding = outerPadding16})) {
|
CLAY(CLAY_LAYOUT({ .padding = CLAY_PADDING_ALL(16)})) {
|
||||||
CLAY_TEXT(text, CLAY_TEXT_CONFIG({
|
CLAY_TEXT(text, CLAY_TEXT_CONFIG({
|
||||||
.fontId = FONT_ID_BODY_16,
|
.fontId = FONT_ID_BODY_16,
|
||||||
.fontSize = 16,
|
.fontSize = 16,
|
||||||
@ -129,7 +128,7 @@ int main(void) {
|
|||||||
CLAY_LAYOUT({
|
CLAY_LAYOUT({
|
||||||
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
||||||
.sizing = layoutExpand,
|
.sizing = layoutExpand,
|
||||||
.padding = outerPadding16,
|
.padding = CLAY_PADDING_ALL(16),
|
||||||
.childGap = 16
|
.childGap = 16
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
@ -217,7 +216,7 @@ int main(void) {
|
|||||||
CLAY_RECTANGLE(contentBackgroundConfig),
|
CLAY_RECTANGLE(contentBackgroundConfig),
|
||||||
CLAY_LAYOUT({
|
CLAY_LAYOUT({
|
||||||
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
||||||
.padding = outerPadding16,
|
.padding = CLAY_PADDING_ALL(16),
|
||||||
.childGap = 8,
|
.childGap = 8,
|
||||||
.sizing = {
|
.sizing = {
|
||||||
.width = CLAY_SIZING_FIXED(250),
|
.width = CLAY_SIZING_FIXED(250),
|
||||||
@ -229,7 +228,7 @@ int main(void) {
|
|||||||
Document document = documents.documents[i];
|
Document document = documents.documents[i];
|
||||||
Clay_LayoutConfig sidebarButtonLayout = {
|
Clay_LayoutConfig sidebarButtonLayout = {
|
||||||
.sizing = { .width = CLAY_SIZING_GROW(0) },
|
.sizing = { .width = CLAY_SIZING_GROW(0) },
|
||||||
.padding = outerPadding16
|
.padding = CLAY_PADDING_ALL(16)
|
||||||
};
|
};
|
||||||
|
|
||||||
if (i == selectedDocumentIndex) {
|
if (i == selectedDocumentIndex) {
|
||||||
@ -274,7 +273,7 @@ int main(void) {
|
|||||||
CLAY_LAYOUT({
|
CLAY_LAYOUT({
|
||||||
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
||||||
.childGap = 16,
|
.childGap = 16,
|
||||||
.padding = outerPadding16,
|
.padding = CLAY_PADDING_ALL(16),
|
||||||
.sizing = layoutExpand
|
.sizing = layoutExpand
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
|
@ -4,7 +4,6 @@
|
|||||||
|
|
||||||
const int FONT_ID_BODY_16 = 0;
|
const int FONT_ID_BODY_16 = 0;
|
||||||
Clay_Color COLOR_WHITE = { 255, 255, 255, 255};
|
Clay_Color COLOR_WHITE = { 255, 255, 255, 255};
|
||||||
Clay_Padding outerPadding16 = { 16, 16, 16, 16 };
|
|
||||||
|
|
||||||
void RenderHeaderButton(Clay_String text) {
|
void RenderHeaderButton(Clay_String text) {
|
||||||
CLAY(
|
CLAY(
|
||||||
@ -23,7 +22,7 @@ void RenderHeaderButton(Clay_String text) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void RenderDropdownMenuItem(Clay_String text) {
|
void RenderDropdownMenuItem(Clay_String text) {
|
||||||
CLAY(CLAY_LAYOUT({ .padding = outerPadding16})) {
|
CLAY(CLAY_LAYOUT({ .padding = CLAY_PADDING_ALL(16)})) {
|
||||||
CLAY_TEXT(text, CLAY_TEXT_CONFIG({
|
CLAY_TEXT(text, CLAY_TEXT_CONFIG({
|
||||||
.fontId = FONT_ID_BODY_16,
|
.fontId = FONT_ID_BODY_16,
|
||||||
.fontSize = 16,
|
.fontSize = 16,
|
||||||
@ -122,7 +121,7 @@ Clay_RenderCommandArray CreateLayout(Clay_Context* context, float yOffset, int32
|
|||||||
CLAY_LAYOUT({
|
CLAY_LAYOUT({
|
||||||
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
||||||
.sizing = layoutExpand,
|
.sizing = layoutExpand,
|
||||||
.padding = outerPadding16,
|
.padding = CLAY_PADDING_ALL(16),
|
||||||
.childGap = 16
|
.childGap = 16
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
@ -135,7 +134,7 @@ Clay_RenderCommandArray CreateLayout(Clay_Context* context, float yOffset, int32
|
|||||||
CLAY_RECTANGLE(contentBackgroundConfig),
|
CLAY_RECTANGLE(contentBackgroundConfig),
|
||||||
CLAY_LAYOUT({
|
CLAY_LAYOUT({
|
||||||
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
||||||
.padding = outerPadding16,
|
.padding = CLAY_PADDING_ALL(16),
|
||||||
.childGap = 8,
|
.childGap = 8,
|
||||||
.sizing = {
|
.sizing = {
|
||||||
.width = CLAY_SIZING_FIXED(250),
|
.width = CLAY_SIZING_FIXED(250),
|
||||||
@ -147,7 +146,7 @@ Clay_RenderCommandArray CreateLayout(Clay_Context* context, float yOffset, int32
|
|||||||
Document document = documents.documents[i];
|
Document document = documents.documents[i];
|
||||||
Clay_LayoutConfig sidebarButtonLayout = {
|
Clay_LayoutConfig sidebarButtonLayout = {
|
||||||
.sizing = { .width = CLAY_SIZING_GROW() },
|
.sizing = { .width = CLAY_SIZING_GROW() },
|
||||||
.padding = outerPadding16
|
.padding = CLAY_PADDING_ALL(16)
|
||||||
};
|
};
|
||||||
|
|
||||||
if (i == *documentIndex) {
|
if (i == *documentIndex) {
|
||||||
@ -195,7 +194,7 @@ Clay_RenderCommandArray CreateLayout(Clay_Context* context, float yOffset, int32
|
|||||||
CLAY_LAYOUT({
|
CLAY_LAYOUT({
|
||||||
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
.layoutDirection = CLAY_TOP_TO_BOTTOM,
|
||||||
.childGap = 16,
|
.childGap = 16,
|
||||||
.padding = outerPadding16,
|
.padding = CLAY_PADDING_ALL(16),
|
||||||
.sizing = layoutExpand
|
.sizing = layoutExpand
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
|
Loading…
Reference in New Issue
Block a user