mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 11:25:07 +00:00

We have a new, improved string type coming up in AK (OOM aware, no null state), and while it's going to use UTF-8, the name UTF8String is a mouthful - so let's free up the String name by renaming the existing class. Making the old one have an annoying name will hopefully also help with quick adoption :^)
58 lines
1 KiB
C++
58 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "Forward.h"
|
|
#include <AK/DeprecatedString.h>
|
|
#include <LibGUI/AbstractScrollableWidget.h>
|
|
#include <LibGfx/Color.h>
|
|
|
|
namespace Spreadsheet {
|
|
|
|
struct Format {
|
|
Optional<Color> foreground_color;
|
|
Optional<Color> background_color;
|
|
};
|
|
|
|
struct ConditionalFormat : public Format {
|
|
DeprecatedString condition;
|
|
};
|
|
|
|
enum class FormatType {
|
|
Background = 0,
|
|
Foreground = 1
|
|
};
|
|
|
|
class ConditionView : public GUI::Widget {
|
|
C_OBJECT(ConditionView)
|
|
public:
|
|
virtual ~ConditionView() override;
|
|
|
|
private:
|
|
ConditionView(ConditionalFormat&);
|
|
|
|
ConditionalFormat& m_format;
|
|
};
|
|
|
|
class ConditionsView : public GUI::Widget {
|
|
C_OBJECT(ConditionsView)
|
|
public:
|
|
virtual ~ConditionsView() override;
|
|
|
|
void set_formats(Vector<ConditionalFormat>*);
|
|
|
|
void add_format();
|
|
void remove_top();
|
|
|
|
private:
|
|
ConditionsView();
|
|
|
|
Vector<ConditionalFormat>* m_formats { nullptr };
|
|
NonnullRefPtrVector<GUI::Widget> m_widgets;
|
|
};
|
|
|
|
}
|