diff --git a/apps/image_editor.cpp b/apps/image_editor.cpp index ac7c4f4..4dbc6a0 100644 --- a/apps/image_editor.cpp +++ b/apps/image_editor.cpp @@ -83,7 +83,7 @@ const EsStyle styleBitmapSizeTextbox = { .metrics = { .mask = ES_THEME_METRICS_PREFERRED_WIDTH, - .preferredWidth = 70, + .preferredWidth = 80, }, }; @@ -677,7 +677,7 @@ void MenuImage(Instance *instance, EsElement *element, EsCommand *) { bytes = EsStringFormat(buffer, sizeof(buffer), "%d", instance->bitmapWidth); EsTextDisplayCreate(table, ES_CELL_H_RIGHT, ES_STYLE_TEXT_LABEL, INTERFACE_STRING(ImageEditorPropertyWidth)); - textbox = EsTextboxCreate(table, ES_TEXTBOX_EDIT_BASED, &styleBitmapSizeTextbox); + textbox = EsTextboxCreate(table, ES_TEXTBOX_EDIT_BASED, ES_STYLE_TEXTBOX_BORDERED_SINGLE_MEDIUM); EsTextboxInsert(textbox, buffer, bytes, false); textbox->userData.i = 0; textbox->messageUser = BitmapSizeTextboxMessage; diff --git a/apps/installer.cpp b/apps/installer.cpp index 17c0e84..abdbee4 100644 --- a/apps/installer.cpp +++ b/apps/installer.cpp @@ -53,15 +53,6 @@ const EsStyle styleButtonsRow = { }, }; -const EsStyle styleTextboxMedium = { - .inherit = ES_STYLE_TEXTBOX_BORDERED_SINGLE, - - .metrics = { - .mask = ES_THEME_METRICS_PREFERRED_WIDTH, - .preferredWidth = 80, - }, -}; - InstallerMetadata *metadata; Array<EsMessageDevice> connectedDrives; EsListView *drivesList; @@ -1139,7 +1130,7 @@ void _start() { // TODO Make a date/time entry element or textbox overlay. EsTextDisplayCreate(table, ES_CELL_H_RIGHT, ES_STYLE_TEXT_LABEL, INTERFACE_STRING(InstallerTime)); - timeTextbox = EsTextboxCreate(table, ES_CELL_H_LEFT, &styleTextboxMedium); + timeTextbox = EsTextboxCreate(table, ES_CELL_H_LEFT, ES_STYLE_TEXTBOX_BORDERED_SINGLE_MEDIUM); EsTextboxInsert(timeTextbox, timeBuffer, timeBytes); // TODO A date field. diff --git a/desktop/api.cpp b/desktop/api.cpp index ac476c2..b2cbed4 100644 --- a/desktop/api.cpp +++ b/desktop/api.cpp @@ -1257,8 +1257,7 @@ EsMessage *EsMessageReceive() { for (uintptr_t i = 0; i < gui.allWindows.Length(); i++) { UIScaleChanged(gui.allWindows[i], &message.message); - gui.allWindows[i]->state |= UI_STATE_RELAYOUT; - UIWindowNeedsUpdate(gui.allWindows[i]); + EsElementRelayout(gui.allWindows[i]); } return &message.message; diff --git a/desktop/gui.cpp b/desktop/gui.cpp index e42b257..fb13a0c 100644 --- a/desktop/gui.cpp +++ b/desktop/gui.cpp @@ -6523,7 +6523,7 @@ void UIScaleChanged(EsElement *element, EsMessage *message) { EsMessageMutexCheck(); element->RefreshStyle(nullptr, false, true); - element->state |= UI_STATE_RELAYOUT | UI_STATE_RELAYOUT_CHILD; + element->offsetX = element->offsetY = element->width = element->height = 0; EsMessageSend(element, message); for (uintptr_t i = 0; i < element->children.Length(); i++) { @@ -6537,7 +6537,7 @@ void _EsUISetFont(EsFontFamily id) { for (uintptr_t i = 0; i < gui.allWindows.Length(); i++) { UIScaleChanged(gui.allWindows[i], &m); - UIWindowNeedsUpdate(gui.allWindows[i]); + EsElementRelayout(gui.allWindows[i]); } } @@ -7213,7 +7213,7 @@ void UIWindowPaintNow(EsWindow *window, ProcessMessageTiming *timing, bool after void UIWindowLayoutNow(EsWindow *window, ProcessMessageTiming *timing) { if (timing) timing->startLayout = EsTimeStampMs(); - window->InternalMove(window->width, window->height, 0, 0); + window->InternalMove(window->windowWidth, window->windowHeight, 0, 0); while (window->updateActions.Length()) { // TODO Preventing/detecting infinite cycles? @@ -7466,8 +7466,8 @@ void UIProcessWindowManagerMessage(EsWindow *window, EsMessage *message, Process UIRefreshPrimaryClipboard(window); // Embedded window activated. } - window->width = window->windowWidth = message->windowResized.content.r; - window->height = window->windowHeight = message->windowResized.content.b; + window->windowWidth = message->windowResized.content.r; + window->windowHeight = message->windowResized.content.b; if (window->windowStyle == ES_WINDOW_CONTAINER) { EsRectangle opaqueBounds = ES_RECT_4(CONTAINER_OPAQUE_C, window->windowWidth - CONTAINER_OPAQUE_C, diff --git a/desktop/list_view.cpp b/desktop/list_view.cpp index d23cad4..41b0cbf 100644 --- a/desktop/list_view.cpp +++ b/desktop/list_view.cpp @@ -1949,7 +1949,7 @@ struct EsListView : EsElement { selectedCellStyle = GetStyle(MakeStyleKey(ES_STYLE_LIST_SELECTED_CHOICE_CELL, 0), false); EsListViewChangeStyles(this, nullptr, nullptr, nullptr, nullptr, ES_FLAGS_DEFAULT, ES_FLAGS_DEFAULT); - } else if (message->type == ES_MSG_LIST_VIEW_GET_CONTENT) { + } else if (message->type == ES_MSG_LIST_VIEW_GET_CONTENT && activeColumns.Length()) { uintptr_t index = message->getContent.index; ListViewFixedItemData data = {}; diff --git a/desktop/settings.cpp b/desktop/settings.cpp index 7a036ce..6b257d8 100644 --- a/desktop/settings.cpp +++ b/desktop/settings.cpp @@ -91,15 +91,6 @@ const EsStyle styleSettingsGroupContainer3 = { }, }; -const EsStyle styleSettingsNumberTextbox = { - .inherit = ES_STYLE_TEXTBOX_BORDERED_SINGLE, - - .metrics = { - .mask = ES_THEME_METRICS_PREFERRED_WIDTH, - .preferredWidth = 80, - }, -}; - const EsStyle styleSettingsCheckboxGroup = { .metrics = { .mask = ES_THEME_METRICS_GAP_MAJOR | ES_THEME_METRICS_GAP_MINOR, @@ -435,7 +426,7 @@ void SettingsAddNumberBox(EsElement *table, const char *string, ptrdiff_t string control->discreteStep = discreteStep; EsTextDisplayCreate(table, ES_CELL_H_RIGHT | ES_CELL_H_PUSH, 0, string, stringBytes); - EsTextbox *textbox = EsTextboxCreate(table, ES_CELL_H_LEFT | ES_CELL_H_PUSH | ES_TEXTBOX_EDIT_BASED | ES_ELEMENT_FREE_USER_DATA, &styleSettingsNumberTextbox); + EsTextbox *textbox = EsTextboxCreate(table, ES_CELL_H_LEFT | ES_CELL_H_PUSH | ES_TEXTBOX_EDIT_BASED | ES_ELEMENT_FREE_USER_DATA, ES_STYLE_TEXTBOX_BORDERED_SINGLE_MEDIUM); EsTextboxUseNumberOverlay(textbox, false); textbox->userData = control; textbox->accessKey = accessKey; @@ -674,19 +665,19 @@ void SettingsPageKeyboard(EsElement *element, SettingsPage *page) { EsPanelSetBands(table, 2); EsTextDisplayCreate(table, ES_CELL_H_RIGHT | ES_CELL_H_PUSH, 0, INTERFACE_STRING(DesktopSettingsKeyboardKeyRepeatDelay)); // TODO. - textbox = EsTextboxCreate(table, ES_CELL_H_LEFT | ES_CELL_H_PUSH | ES_TEXTBOX_EDIT_BASED, &styleSettingsNumberTextbox); + textbox = EsTextboxCreate(table, ES_CELL_H_LEFT | ES_CELL_H_PUSH | ES_TEXTBOX_EDIT_BASED, ES_STYLE_TEXTBOX_BORDERED_SINGLE_MEDIUM); textbox->accessKey = 'D'; EsTextboxUseNumberOverlay(textbox, false); EsTextboxInsert(textbox, "400 ms"); EsTextDisplayCreate(table, ES_CELL_H_RIGHT | ES_CELL_H_PUSH, 0, INTERFACE_STRING(DesktopSettingsKeyboardKeyRepeatRate)); // TODO. - textbox = EsTextboxCreate(table, ES_CELL_H_LEFT | ES_CELL_H_PUSH | ES_TEXTBOX_EDIT_BASED, &styleSettingsNumberTextbox); + textbox = EsTextboxCreate(table, ES_CELL_H_LEFT | ES_CELL_H_PUSH | ES_TEXTBOX_EDIT_BASED, ES_STYLE_TEXTBOX_BORDERED_SINGLE_MEDIUM); textbox->accessKey = 'R'; EsTextboxUseNumberOverlay(textbox, false); EsTextboxInsert(textbox, "40 ms"); EsTextDisplayCreate(table, ES_CELL_H_RIGHT | ES_CELL_H_PUSH, 0, INTERFACE_STRING(DesktopSettingsKeyboardCaretBlinkRate)); // TODO. - textbox = EsTextboxCreate(table, ES_CELL_H_LEFT | ES_CELL_H_PUSH | ES_TEXTBOX_EDIT_BASED, &styleSettingsNumberTextbox); + textbox = EsTextboxCreate(table, ES_CELL_H_LEFT | ES_CELL_H_PUSH | ES_TEXTBOX_EDIT_BASED, ES_STYLE_TEXTBOX_BORDERED_SINGLE_MEDIUM); textbox->accessKey = 'B'; EsTextboxUseNumberOverlay(textbox, false); EsTextboxInsert(textbox, "500 ms"); diff --git a/desktop/styles.header b/desktop/styles.header index 615a2f7..3b026f2 100644 --- a/desktop/styles.header +++ b/desktop/styles.header @@ -120,3 +120,4 @@ define ES_STYLE_TOOLBAR_SPACER (ES_STYLE_CAST(5)) define ES_STYLE_TOOLBAR_BUTTON_GROUP_SEPARATOR (ES_STYLE_CAST(7)) define ES_STYLE_TOOLBAR_SPACER_SMALL (ES_STYLE_CAST(3)) define ES_STYLE_LIST_CHOICE_ITEM_2X (ES_STYLE_CAST(9)) +define ES_STYLE_TEXTBOX_BORDERED_SINGLE_MEDIUM (ES_STYLE_CAST(11)) diff --git a/res/Theme Source.dat b/res/Theme Source.dat index 6651c74..830855e 100644 Binary files a/res/Theme Source.dat and b/res/Theme Source.dat differ diff --git a/res/Theme.dat b/res/Theme.dat index 6301413..b8d4b2f 100644 Binary files a/res/Theme.dat and b/res/Theme.dat differ