mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
57ff293a51
This patch adds a simple GMessageBox that can run in a nested event loop. Here's how you use it: GMessageBox box("Message text here", "Message window title"); int result = box.exec(); The next step is to make the WindowServer respect the modality flag of these windows and prevent interaction with other windows in the same process until the modal window has been closed.
41 lines
1.3 KiB
Bash
Executable File
41 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
sudo id
|
|
|
|
make_cmd="make -j3"
|
|
|
|
$make_cmd -C ../LibC clean && \
|
|
$make_cmd -C ../LibC && \
|
|
(cd ../LibC && ./install.sh) && \
|
|
$make_cmd -C ../LibM clean && \
|
|
$make_cmd -C ../LibM && \
|
|
(cd ../LibM && ./install.sh) && \
|
|
$make_cmd -C ../LibM clean && \
|
|
$make_cmd -C ../LibM clean && \
|
|
$make_cmd -C ../WindowServer clean && \
|
|
$make_cmd -C ../WindowServer && \
|
|
$make_cmd -C ../LibGUI clean && \
|
|
$make_cmd -C ../LibGUI && \
|
|
$make_cmd -C ../Userland clean && \
|
|
$make_cmd -C ../Userland && \
|
|
$make_cmd -C ../Applications/Terminal clean && \
|
|
$make_cmd -C ../Applications/Terminal && \
|
|
$make_cmd -C ../Applications/FontEditor clean && \
|
|
$make_cmd -C ../Applications/FontEditor && \
|
|
$make_cmd -C ../Applications/Launcher clean && \
|
|
$make_cmd -C ../Applications/Launcher && \
|
|
$make_cmd -C ../Applications/FileManager clean && \
|
|
$make_cmd -C ../Applications/FileManager && \
|
|
$make_cmd -C ../Applications/ProcessManager clean && \
|
|
$make_cmd -C ../Applications/ProcessManager && \
|
|
$make_cmd -C ../Applications/TextEditor clean && \
|
|
$make_cmd -C ../Applications/TextEditor && \
|
|
$make_cmd -C ../Applications/About clean && \
|
|
$make_cmd -C ../Applications/About && \
|
|
$make_cmd -C ../Applications/IRCClient clean && \
|
|
$make_cmd -C ../Applications/IRCClient && \
|
|
$make_cmd clean &&\
|
|
$make_cmd && \
|
|
sudo ./sync.sh
|
|
|