mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 16:57:46 +00:00
Begin working on a graphical TextEditor.
It's gonna be a wrapper around a new GTextEditor widget so I can easily reuse the functionality anywhere I need it. :^)
This commit is contained in:
parent
67ee579113
commit
9158de6c41
9 changed files with 434 additions and 1 deletions
|
@ -27,7 +27,8 @@
|
|||
#define SPAWN_LAUNCHER
|
||||
//#define SPAWN_GUITEST2
|
||||
//#define SPAWN_FILE_MANAGER
|
||||
#define SPAWN_PROCESS_MANAGER
|
||||
//#define SPAWN_PROCESS_MANAGER
|
||||
#define SPAWN_TEXT_EDITOR
|
||||
//#define SPAWN_FONTEDITOR
|
||||
//#define SPAWN_MULTIPLE_SHELLS
|
||||
//#define STRESS_TEST_SPAWNING
|
||||
|
@ -102,6 +103,9 @@ VFS* vfs;
|
|||
#ifdef SPAWN_PROCESS_MANAGER
|
||||
Process::create_user_process("/bin/ProcessManager", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, { }, tty0);
|
||||
#endif
|
||||
#ifdef SPAWN_TEXT_EDITOR
|
||||
Process::create_user_process("/bin/TextEditor", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, { }, tty0);
|
||||
#endif
|
||||
#ifdef SPAWN_FONTEDITOR
|
||||
Process::create_user_process("/bin/FontEditor", (uid_t)100, (gid_t)100, (pid_t)0, error, { }, move(environment), tty0);
|
||||
#endif
|
||||
|
|
|
@ -28,6 +28,8 @@ $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 clean &&\
|
||||
|
|
|
@ -35,6 +35,7 @@ cp -vR ../Base/* mnt/
|
|||
cp -vR ../Root/* mnt/
|
||||
mkdir mnt/home/anon
|
||||
mkdir mnt/home/nona
|
||||
cp ../ReadMe.md mnt/home/anon/
|
||||
chown -vR 100:100 mnt/home/anon
|
||||
chown -vR 200:200 mnt/home/nona
|
||||
cp -v ../Userland/sh mnt/bin/sh
|
||||
|
@ -80,6 +81,7 @@ cp -v ../Applications/Launcher/Launcher mnt/bin/Launcher
|
|||
cp -v ../Applications/FileManager/FileManager mnt/bin/FileManager
|
||||
cp -v ../Applications/ProcessManager/ProcessManager mnt/bin/ProcessManager
|
||||
cp -v ../Applications/About/About mnt/bin/About
|
||||
cp -v ../Applications/TextEditor/TextEditor mnt/bin/TextEditor
|
||||
cp -v ../WindowServer/WindowServer mnt/bin/WindowServer
|
||||
cp -v kernel.map mnt/
|
||||
sh sync-local.sh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue