Andreas Kling
f352a5094d
ls: Fix build and tidy up coding style.
2019-05-27 15:04:23 +02:00
faissaloo
f28cc2e2e0
Ls: Cleanup
2019-05-27 14:53:16 +02:00
faissaloo
4c410f3de6
Ls: Support multiple files
2019-05-27 14:53:16 +02:00
faissaloo
776a359a17
Ls: Support single files in long mode
2019-05-27 14:53:16 +02:00
faissaloo
fee686e2cd
Ls: Refactor long directory listings
2019-05-27 14:53:16 +02:00
faissaloo
07c356ce64
Ls: Add single file support in short mode
2019-05-27 14:53:16 +02:00
Andreas Kling
b311257098
Applications: Let's put spaces in app names
...
"FileManager" => "File Manager"
"FontEditor" => "Font Editor"
"ProcessManager" => "Process Manager"
"TextEditor" => "Text Editor"
2019-05-27 13:52:28 +02:00
Andreas Kling
12120167a9
AK: Add ensure_capacity() for HashMap and HashTable.
...
These functions make sure that the underlying table can accomodate at least
'capacity' entries before needing a rehash.
2019-05-27 13:07:20 +02:00
Andreas Kling
4fb2e5d8af
SharedGraphics: Make Rect::shatter() return a Vector<Rect, 4>.
...
We know that shatter() will never return more than four rects, so we can
use vector inline capacity to always avoid heap allocation here.
2019-05-27 12:50:18 +02:00
Andreas Kling
3873c51781
LibCore: Add CObject::for_each_child_of_type<T>()
...
Use this to iterate over all the GRadioButtons in a group.
2019-05-27 04:18:24 +02:00
Andreas Kling
0c85d3dba9
LibCore+LibGUI: Add is<T>(CObject&) and to<T>(CObject&) helpers.
2019-05-27 04:06:01 +02:00
Andreas Kling
723ba91f74
LibGUI: Add GWidget::for_each_child_widget(callback).
2019-05-27 03:52:33 +02:00
Andreas Kling
906fde8f8c
LibCore: Add CObject::for_each_child(callback).
2019-05-27 03:52:19 +02:00
Andreas Kling
3654c33c56
GFilePicker: Add a preview pane on the right-hand side for image previews.
...
Currently the preview pane is always open, but maybe it should be something
you can configure, or something that happens automagically.
2019-05-27 01:55:04 +02:00
Andreas Kling
5ba2dba392
FileSystemPath: Add a has_extension() helper.
...
This code:
if (path.string().to_lowercase().ends_with(".foo"))
Can now be written as:
if (path.has_extension(".foo"))
2019-05-27 01:53:42 +02:00
faissaloo
6ac8aab941
GFilePicker: Return paths as FileSystemPath rather than String
2019-05-26 22:52:09 +02:00
Robin Burchell
9b86eb9fad
WSCompositor: Allow a compose to bypass the timer when it first happens
...
d66fa60fcf
introduced the use of a timer
to coalesce screen updates. This is OK, but it does introduce update
latency.
To help mitigate the impact of this, we now have a second (immediate)
timer. When a compose pass is first triggered, the immediate timer will
allow the compose to happen on the next spin of the event loop (so, only
coalescing updates across a single event loop pass). Any updates that
trigger while the delayed timer is running, though, will be delayed to
that (~60fps) timer.
This fixes #103 .
2019-05-26 18:22:33 +02:00
Robin Burchell
8df3e2516f
CEventLoop: Make it possible to determine running/quit state without using exec()
...
... by removing a redundant member that nothing uses (running), and
exposing whether or not quit has been requested.
2019-05-26 18:17:40 +02:00
Andreas Kling
bb288c1baf
IDEDiskDevice: Implement basic DMA writes.
...
This could share more code with reads, and generally be better. But it works
and it's considerably faster than PIO, so let's use it. :^)
2019-05-26 14:58:21 +02:00
Andreas Kling
dd595fe865
Shell: A '>' redirection target should be truncated.
2019-05-26 14:57:12 +02:00
Robin Burchell
d66fa60fcf
WSCompositor: Use a timer to schedule compose rather than an event
...
Really poor man's vsync. Still not actual vsync, but at least we won't
constantly spin buffers if we get many dirty rects.
2019-05-26 04:10:05 +02:00
Faissal Bensefia
411cdf067b
AK: Implement String::to_int ( #99 )
2019-05-26 04:08:36 +02:00
Robin Burchell
79dba9a545
WSEventLoop: Don't assert when being told to construct a crazy window type
...
Seriously non-cool :(
2019-05-26 03:41:53 +02:00
Robin Burchell
9b2fb47136
GTextEditor: Take frame size into account when setting clip rect
...
The ruler right does not include the (already translated) frame size.
Take that into account too, otherwise we overdraw the ruler.
Fixes #23 .
2019-05-26 02:46:26 +02:00
Andreas Kling
9308ce071f
Userland: Add a helpful little program for provoking different crashes.
...
Currently supported crash types:
-s : Segmentation violation
-d : Division by zero
-i : Illegal instruction
-a : Abort
2019-05-26 02:35:25 +02:00
Andreas Kling
cde3274ffb
LibC: Implement abort() as raise(SIGABRT).
2019-05-26 02:35:25 +02:00
Andreas Kling
0cac84d6bd
Kernel: Sending a signal to yourself should block until dispatch.
...
By moving the sending (and receiving) thread into the BlockedSignal state,
we ensure that the thread doesn't continue executing until the signal
has been dispatched.
2019-05-26 02:35:25 +02:00
Andreas Kling
6ffcee9176
Kernel: Send more specific signals when crashing due to CPU exceptions.
...
- For division by zero, send SIGFPE.
- For illegal instruction, send SIGILL.
- For the rest, default to SIGSEGV.
2019-05-26 02:35:25 +02:00
Andreas Kling
0fa098845f
Shell: When a command is terminated by a signal, print signal description.
...
Previously we were only printing the signal number (except for SIGINT.)
2019-05-26 02:35:25 +02:00
Andreas Kling
7c37ffd9d8
LibC: Let the string for SIGFPE be "Division by zero".
...
That's really what we send this signal for, so let's call it that.
2019-05-26 02:35:25 +02:00
Robin Burchell
23a5ce3319
QuickSort: Don't sort a single item, nothing to do
2019-05-26 01:47:41 +02:00
Robin Burchell
eeab2e8bb5
ReadMe: Add myself to authors section while I'm doing something useful
2019-05-26 01:32:05 +02:00
Robin Burchell
aee99b05a6
Shell: Add append operator (>>)
...
Fixes #93 .
2019-05-26 01:32:05 +02:00
Robin Burchell
c6e79bd53a
Kernel: Support O_APPEND
...
As per the manpage, this acts as a transparent lseek() before write.
2019-05-26 01:32:05 +02:00
Andreas Kling
90dbf689c0
LibGUI: Unbreak popup menus, now that invalid menus have ID -1.
2019-05-26 01:07:56 +02:00
Andreas Kling
41ebb3eba3
WindowServer: Tweak window titlebar look somewhat.
...
Add a subtle shadow to the titlebar text. Also make the titlebar one pixel
taller to fully accomodate the 90s "3D frame" effect. :^)
2019-05-25 21:55:53 +02:00
Andreas Kling
34150f0836
WindowServer: Remove unused old "middle border" color.
2019-05-25 21:19:42 +02:00
Andreas Kling
cca510162e
GButton: Align the button text according to text_alignment().
...
Added a Rect::align_within(other_rect, alignment) helper that seemed useful.
2019-05-25 20:15:52 +02:00
Andreas Kling
75b0e5cce5
Ext2FS: Block #0 can terminate an inode block list early.
...
We were already handling this for the indirect blocks, but the direct ones
would happily consider #0 to be a valid block list entry.
2019-05-25 19:19:43 +02:00
Andreas Kling
e1f922ded2
Base: Add a 32x32 icon for Minesweeper.
2019-05-25 18:46:25 +02:00
Andreas Kling
10391bd82b
Base: Tweak the small Terminal icon slightly.
2019-05-25 18:23:12 +02:00
Andreas Kling
728327df8a
Ext2FS: Fix build with EXT2_DEBUG enabled, and tweak some variable names.
2019-05-25 17:23:17 +02:00
Andreas Kling
9cfd674a75
Base: Make a 32x32 icon for Snake.
2019-05-25 14:21:08 +02:00
Andreas Kling
83aa785c57
GSlider: Oops, fix typo in previous commit.
2019-05-25 13:44:37 +02:00
Andreas Kling
d12857fc36
LibGUI: Notify widgets when their enabled state changes.
...
This is done by dispatching a (synchronous) "EnabledChange" event that can
be picked up in change_event(). Use this event to kick widgets out of their
"being pressed"-type modes if the user is interacting with them while the
state is programmatically changed.
2019-05-25 13:40:57 +02:00
Andreas Kling
e478a2fb0a
WindowServer: Don't draw titlebar separator for titlebar-less windows.
2019-05-25 04:17:21 +02:00
Andreas Kling
817ac9c22b
LibGUI: Elide the text in GCheckBox and GRadioButton when low on space.
2019-05-25 04:01:22 +02:00
Andreas Kling
be62b42352
StylePainter: Remove some unused code.
2019-05-25 03:29:37 +02:00
Christopher Dumas
957f8b84f2
WindowServer: Make it possible to turn off window title bars ( #88 )
...
Also, Launcher now does not use titlebars.
Only check if titlebar should be shown if the window type works with that.
2019-05-24 23:37:23 +02:00
Andreas Kling
cb9134a2ca
GSlider: Ignore mouse events when disabled.
2019-05-24 23:03:11 +02:00