- Visit https://www.msys2.org/
- Click on the link next to "Download the installer"
- Run the installer
- Add "C:\msys64\usr\bin" to path
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
--------------------------------------------------------------------- | |
-- Converter between win-125x and UTF-8 strings | |
--------------------------------------------------------------------- | |
-- Written in pure Lua, compatible with Lua 5.1-5.4 | |
-- Usage example: | |
-- require("win-125x") | |
-- str_win = utf8_to_win(str_utf8) | |
-- str_utf8 = win_to_utf8(str_win) | |
--------------------------------------------------------------------- |
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
import java.awt.*; | |
import javax.swing.JScrollPane; | |
import javax.swing.SwingUtilities; | |
public class WrapLayout extends FlowLayout | |
{ | |
private Dimension preferredLayoutSize; | |
public WrapLayout() | |
{ |