summaryrefslogtreecommitdiff
path: root/Userland/Applications/PixelPaint/CreateNewImageDialog.h
blob: a407a9e9d9112c5eb60861f78c6ab9918f48c3b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Copyright (c) 2020, Ben Jilks <benjyjilks@gmail.com>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibGUI/Dialog.h>
#include <LibGfx/Color.h>

namespace PixelPaint {

class CreateNewImageDialog final : public GUI::Dialog {
    C_OBJECT(CreateNewImageDialog)

public:
    Gfx::IntSize image_size() const { return m_image_size; }
    DeprecatedString const& image_name() const { return m_image_name; }
    Gfx::Color background_color() const { return m_background_color; }

private:
    CreateNewImageDialog(GUI::Window* parent_window);

    DeprecatedString m_image_name;
    Gfx::IntSize m_image_size;
    Gfx::Color m_background_color {};

    RefPtr<GUI::TextBox> m_name_textbox;
};

}