設定画面 (General) のヘルプテキストに出力例を追加 - #5
Open
kkofu wants to merge 3 commits into
Open
Conversation
設定画面のテキストフィールドにおけるIME (日本語入力) 対応とプレビュー表示 - 設定ウィンドウ生成時に `window.set_ime_allowed(true)` を呼び出し、IME入力を有効化 - `WindowEvent::Ime(Commit)` による確定文字列の挿入処理を追加 - `WindowEvent::Ime(Preedit)` による変換中 (未確定) テキストのリアルタイムインライン描画と下線表示に対応 - `window.set_ime_cursor_area` を呼び出し、フォーカス中の入力欄のカーソル直下にIME変換候補ポップアップが表示されるよう位置を同期 - IME座標計算のため、各タブのレイアウト関数 (`filename_format_row_layout` 等) の可視性を `pub(super)` に調整
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat
chrono::Local::now()を使用して描画時点の現在時刻の出力例 (デフォルトだと(="YYYY MM DD HH MM SS")) を追加%04nの出力例(="0001")を追加render_filename_preview()を追加して呼び出しfix
window.set_ime_allowed(true)を呼び出してIME入力を有効化WindowEvent::Ime(Commit)による確定テキストの挿入処理を追加WindowEvent::Ime(Preedit)による変換中テキストのリアルタイムインライン描画と下線表示に対応window.set_ime_cursor_areaを呼び出してフォーカス中の入力欄のカーソル直下にIME変換候補ポップアップが表示されるよう位置を同期filename_format_row_layout等) の可視性をpub(super)に調整