mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:28:11 +00:00
PDFViewer: Add a toolbar
The toolbar has an option to toggle the sidebar, a number input to set the current page, and two buttons to go up and down by one page
This commit is contained in:
parent
cea7dbce42
commit
cf3eb27108
6 changed files with 186 additions and 10 deletions
31
Userland/Applications/PDFViewer/NumericInput.h
Normal file
31
Userland/Applications/PDFViewer/NumericInput.h
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Matthew Olsson <mattco@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/NumericLimits.h>
|
||||
#include <LibGUI/TextBox.h>
|
||||
|
||||
class NumericInput final : public GUI::TextBox {
|
||||
C_OBJECT(NumericInput)
|
||||
public:
|
||||
NumericInput();
|
||||
virtual ~NumericInput() override = default;
|
||||
|
||||
Function<void(i32)> on_number_changed;
|
||||
|
||||
void set_min_number(i32 number);
|
||||
void set_max_number(i32 number);
|
||||
void set_current_number(i32 number, bool call_change_handler = true);
|
||||
|
||||
private:
|
||||
void on_focus_lost();
|
||||
|
||||
bool m_needs_text_reset { false };
|
||||
i32 m_current_number { 0 };
|
||||
i32 m_min_number { NumericLimits<i32>::min() };
|
||||
i32 m_max_number { NumericLimits<i32>::max() };
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue