@@ -795,8 +795,8 @@ public static ImDrawList GetWindowDrawList() {
795
795
// Parameters stacks (current window)
796
796
797
797
/**
798
- * Set width of items for common large "item+label" widgets. > 0.0f: width in pixels,
799
- * <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side). 0.0f = default to ~2/3 of windows width,
798
+ * Set width of items for common large "item+label" widgets. {@code > 0.0f} : width in pixels,
799
+ * {@code <0.0f} align xx pixels to the right of window (so -1.0f always align width to the right side). 0.0f = default to ~2/3 of windows width,
800
800
*/
801
801
public static native void PushItemWidth (float item_width ); /*
802
802
ImGui::PushItemWidth(item_width);
@@ -807,8 +807,8 @@ public static ImDrawList GetWindowDrawList() {
807
807
*/
808
808
809
809
/**
810
- * Set width of the _next_ common large "item+label" widget. > 0.0f: width in pixels,
811
- * <0.0f align xx pixels to the right of window (so -1.0f always align width to the right side)
810
+ * Set width of the _next_ common large "item+label" widget. {@code > 0.0f} : width in pixels,
811
+ * {@code <0.0f} align xx pixels to the right of window (so -1.0f always align width to the right side)
812
812
*/
813
813
public static native void SetNextItemWidth (float item_width ); /*
814
814
ImGui::SetNextItemWidth(item_width);
@@ -822,15 +822,15 @@ public static ImDrawList GetWindowDrawList() {
822
822
*/
823
823
824
824
/**
825
- * Word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x'
825
+ * Word-wrapping for Text*() commands. {@code < 0.0f} : no wrapping; 0.0f: wrap to end of window (or column); {@code > 0.0f} : wrap at 'wrap_pos_x'
826
826
* position in window local space
827
827
*/
828
828
public static native void PushTextWrapPos (); /*
829
829
ImGui::PushTextWrapPos();
830
830
*/
831
831
832
832
/**
833
- * Word-wrapping for Text*() commands. < 0.0f: no wrapping; 0.0f: wrap to end of window (or column); > 0.0f: wrap at 'wrap_pos_x'
833
+ * Word-wrapping for Text*() commands. {@code < 0.0f} : no wrapping; 0.0f: wrap to end of window (or column); {@code > 0.0f} : wrap at 'wrap_pos_x'
834
834
* position in window local space
835
835
*/
836
836
public static native void PushTextWrapPos (float wrap_local_pos_x ); /*
@@ -1223,21 +1223,21 @@ public static ImDrawList GetWindowDrawList() {
1223
1223
*/
1224
1224
1225
1225
/**
1226
- * <0 frame_padding uses default frame padding settings. 0 for no padding
1226
+ * {@code <0} frame_padding uses default frame padding settings. 0 for no padding
1227
1227
*/
1228
1228
public static native boolean ImageButton (int textureID , float sizeX , float sizeY ); /*
1229
1229
return ImGui::ImageButton((ImTextureID)textureID, ImVec2(sizeX, sizeY));
1230
1230
*/
1231
1231
1232
1232
/**
1233
- * <0 frame_padding uses default frame padding settings. 0 for no padding
1233
+ * {@code <0} frame_padding uses default frame padding settings. 0 for no padding
1234
1234
*/
1235
1235
public static native boolean ImageButton (int textureID , float sizeX , float sizeY , float uv0_x , float uv0_y , float uv1_x , float uv1_y , int frame_padding ); /*
1236
1236
return ImGui::ImageButton((ImTextureID)textureID, ImVec2(sizeX, sizeY), ImVec2(uv0_x, uv0_y), ImVec2(uv1_x, uv1_y), frame_padding);
1237
1237
*/
1238
1238
1239
1239
/**
1240
- * <0 frame_padding uses default frame padding settings. 0 for no padding
1240
+ * {@code <0} frame_padding uses default frame padding settings. 0 for no padding
1241
1241
*/
1242
1242
public static native boolean ImageButton (int textureID , float sizeX , float sizeY , float uv0_x , float uv0_y , float uv1_x , float uv1_y , int frame_padding , float bg_color_r , float bg_color_g , float bg_color_b , float bg_color_a , float tint_col_r , float tint_col_g , float tint_col_b , float tint_col_a ); /*
1243
1243
return ImGui::ImageButton((ImTextureID)textureID, ImVec2(sizeX, sizeY), ImVec2(uv0_x, uv0_y), ImVec2(uv1_x, uv1_y), frame_padding, ImVec4(bg_color_r, bg_color_g, bg_color_b, bg_color_a), ImVec4(tint_col_r, tint_col_g, tint_col_b, tint_col_a));
@@ -1365,21 +1365,21 @@ public static boolean Combo(String label, ImInt current_item, String items_separ
1365
1365
*/
1366
1366
1367
1367
/**
1368
- * If v_min >= v_max we have no bound
1368
+ * If {@code v_min >= v_max} we have no bound
1369
1369
*/
1370
1370
public static native boolean DragFloat (String label , float [] v , float v_speed , float v_min , float v_max ); /*
1371
1371
return ImGui::DragFloat(label, &v[0], v_speed, v_min, v_max);
1372
1372
*/
1373
1373
1374
1374
/**
1375
- * If v_min >= v_max we have no bound
1375
+ * If {@code v_min >= v_max} we have no bound
1376
1376
*/
1377
1377
public static native boolean DragFloat (String label , float [] v , float v_speed , float v_min , float v_max , String format ); /*
1378
1378
return ImGui::DragFloat(label, &v[0], v_speed, v_min, v_max, format);
1379
1379
*/
1380
1380
1381
1381
/**
1382
- * If v_min >= v_max we have no bound
1382
+ * If {@code v_min >= v_max} we have no bound
1383
1383
*/
1384
1384
public static native boolean DragFloat (String label , float [] v , float v_speed , float v_min , float v_max , String format , float power ); /*
1385
1385
return ImGui::DragFloat(label, &v[0], v_speed, v_min, v_max, format, power);
@@ -1498,14 +1498,14 @@ public static boolean Combo(String label, ImInt current_item, String items_separ
1498
1498
*/
1499
1499
1500
1500
/**
1501
- * If v_min >= v_max we have no bound
1501
+ * If {@code v_min >= v_max} we have no bound
1502
1502
*/
1503
1503
public static native boolean DragInt (String label , int [] v , float v_speed , float v_min , float v_max ); /*
1504
1504
return ImGui::DragInt(label, &v[0], v_speed, v_min, v_max);
1505
1505
*/
1506
1506
1507
1507
/**
1508
- * If v_min >= v_max we have no bound
1508
+ * If {@code v_min >= v_max} we have no bound
1509
1509
*/
1510
1510
public static native boolean DragInt (String label , int [] v , float v_speed , float v_min , float v_max , String format ); /*
1511
1511
return ImGui::DragInt(label, &v[0], v_speed, v_min, v_max, format);
@@ -4060,14 +4060,14 @@ public static byte[] AcceptDragDropPayload(String type, int imGuiDragDropFlags)
4060
4060
*/
4061
4061
4062
4062
/**
4063
- * Is the last item clicked? (e.g. button/node just clicked on) == IsMouseClicked(mouse_button) && IsItemHovered()
4063
+ * Is the last item clicked? (e.g. button/node just clicked on) == {@code IsMouseClicked(mouse_button) && IsItemHovered()}
4064
4064
*/
4065
4065
public static native boolean IsItemClicked (); /*
4066
4066
return ImGui::IsItemClicked();
4067
4067
*/
4068
4068
4069
4069
/**
4070
- * Is the last item clicked? (e.g. button/node just clicked on) == IsMouseClicked(mouse_button) && IsItemHovered()
4070
+ * Is the last item clicked? (e.g. button/node just clicked on) == {@code IsMouseClicked(mouse_button) && IsItemHovered()}
4071
4071
*/
4072
4072
public static native boolean IsItemClicked (int mouse_button ); /*
4073
4073
return ImGui::IsItemClicked(mouse_button);
@@ -4326,7 +4326,8 @@ public static ImDrawList GetForegroundDrawList() {
4326
4326
*/
4327
4327
4328
4328
/**
4329
- * uUses provided repeat rate/delay. return a count, most often 0 or 1 but might be >1 if RepeatRate is small enough that DeltaTime > RepeatRate
4329
+ * Uses provided repeat rate/delay.
4330
+ * Return a count, most often 0 or 1 but might be {@code >1} if RepeatRate is small enough that {@code DeltaTime > RepeatRate}
4330
4331
*/
4331
4332
public static native boolean GetKeyPressedAmount (int key_index , float repeat_delay , float rate ); /*
4332
4333
return ImGui::GetKeyPressedAmount(key_index, repeat_delay, rate);
@@ -4372,21 +4373,21 @@ public static ImDrawList GetForegroundDrawList() {
4372
4373
*/
4373
4374
4374
4375
/**
4375
- * Is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold
4376
+ * Is mouse dragging. if lock_threshold {@code < -1.0f} uses io.MouseDraggingThreshold
4376
4377
*/
4377
4378
public static native boolean IsMouseDragging (); /*
4378
4379
return ImGui::IsMouseDragging();
4379
4380
*/
4380
4381
4381
4382
/**
4382
- * Is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold
4383
+ * Is mouse dragging. if lock_threshold {@code < -1.0f} uses io.MouseDraggingThreshold
4383
4384
*/
4384
4385
public static native boolean IsMouseDragging (int button ); /*
4385
4386
return ImGui::IsMouseDragging(button);
4386
4387
*/
4387
4388
4388
4389
/**
4389
- * Is mouse dragging. if lock_threshold < -1.0f uses io.MouseDraggingThreshold
4390
+ * Is mouse dragging. if lock_threshold {@code < -1.0f} uses io.MouseDraggingThreshold
4390
4391
*/
4391
4392
public static native boolean IsMouseDragging (int button , float lock_threshold ); /*
4392
4393
return ImGui::IsMouseDragging(button, lock_threshold);
@@ -4437,23 +4438,23 @@ public static ImDrawList GetForegroundDrawList() {
4437
4438
4438
4439
/**
4439
4440
* Return the delta from the initial clicking position while the mouse button is pressed or was just released.
4440
- * This is locked and return 0.0f until the mouse moves past a distance threshold at least once. If lock_threshold < -1.0f uses io.MouseDraggingThreshold.
4441
+ * This is locked and return 0.0f until the mouse moves past a distance threshold at least once. If lock_threshold {@code < -1.0f} uses io.MouseDraggingThreshold.
4441
4442
*/
4442
4443
public static native void GetMouseDragDelta (ImVec2 dstImVec2 ); /*
4443
4444
Jni::ImVec2Cpy(env, ImGui::GetMouseDragDelta(), dstImVec2);
4444
4445
*/
4445
4446
4446
4447
/**
4447
4448
* Return the delta from the initial clicking position while the mouse button is pressed or was just released.
4448
- * This is locked and return 0.0f until the mouse moves past a distance threshold at least once. If lock_threshold < -1.0f uses io.MouseDraggingThreshold.
4449
+ * This is locked and return 0.0f until the mouse moves past a distance threshold at least once. If lock_threshold {@code < -1.0f} uses io.MouseDraggingThreshold.
4449
4450
*/
4450
4451
public static native void GetMouseDragDelta (ImVec2 dstImVec2 , int button ); /*
4451
4452
Jni::ImVec2Cpy(env, ImGui::GetMouseDragDelta(button), dstImVec2);
4452
4453
*/
4453
4454
4454
4455
/**
4455
4456
* Return the delta from the initial clicking position while the mouse button is pressed or was just released.
4456
- * This is locked and return 0.0f until the mouse moves past a distance threshold at least once. If lock_threshold < -1.0f uses io.MouseDraggingThreshold.
4457
+ * This is locked and return 0.0f until the mouse moves past a distance threshold at least once. If lock_threshold {@code < -1.0f} uses io.MouseDraggingThreshold.
4457
4458
*/
4458
4459
public static native void GetMouseDragDelta (ImVec2 dstImVec2 , int button , float lock_threshold ); /*
4459
4460
Jni::ImVec2Cpy(env, ImGui::GetMouseDragDelta(button, lock_threshold), dstImVec2);
0 commit comments