mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00

* Add possibility to replace text in text events (Comments and Group names) with search and replace
72 lines
2.1 KiB
C++
72 lines
2.1 KiB
C++
/*
|
|
* GDevelop Core
|
|
* Copyright 2008-2016 Florian Rival (Florian.Rival@gmail.com). All rights
|
|
* reserved. This project is released under the MIT License.
|
|
*/
|
|
#ifndef COMMENTEVENT_H
|
|
#define COMMENTEVENT_H
|
|
|
|
#include "GDCore/Events/Event.h"
|
|
#include "GDCore/Events/EventsList.h"
|
|
namespace gd {
|
|
class Layout;
|
|
class Project;
|
|
} // namespace gd
|
|
|
|
namespace gd {
|
|
|
|
/**
|
|
* \brief Allows to add a text in the events editor.
|
|
*/
|
|
class GD_CORE_API CommentEvent : public gd::BaseEvent {
|
|
public:
|
|
CommentEvent()
|
|
: BaseEvent(), r(255), v(230), b(109), textR(0), textG(0), textB(0){};
|
|
virtual ~CommentEvent(){};
|
|
virtual gd::CommentEvent* Clone() const { return new CommentEvent(*this); }
|
|
|
|
int GetBackgroundColorRed() const { return r; }
|
|
int GetBackgroundColorGreen() const { return v; }
|
|
int GetBackgroundColorBlue() const { return b; }
|
|
void SetBackgroundColor(int r_, int g_, int b_) {
|
|
r = r_;
|
|
v = g_;
|
|
b = b_;
|
|
}
|
|
|
|
int GetTextColorRed() const { return textR; }
|
|
int GetTextColorGreen() const { return textG; }
|
|
int GetTextColorBlue() const { return textB; }
|
|
void SetTextColor(int r_, int g_, int b_) {
|
|
textR = r_;
|
|
textG = g_;
|
|
textB = b_;
|
|
}
|
|
|
|
const gd::String& GetComment() const { return com1; }
|
|
void SetComment(const gd::String& comment) { com1 = comment; }
|
|
|
|
virtual std::vector<gd::String> GetAllSearchableStrings() const;
|
|
virtual bool ReplaceAllSearchableStrings(
|
|
std::vector<gd::String> newSearchableString);
|
|
|
|
virtual void SerializeTo(SerializerElement& element) const;
|
|
virtual void UnserializeFrom(gd::Project& project,
|
|
const SerializerElement& element);
|
|
|
|
int r; ///< Background color Red component
|
|
int v; ///< Background color Green component
|
|
int b; ///< Background color Blue component
|
|
|
|
int textR; ///< Text color Red component
|
|
int textG; ///< Text color Green component
|
|
int textB; ///< Text color Blue component
|
|
|
|
gd::String com1; ///< Comment
|
|
gd::String com2; ///< Optional second column comment, deprecated
|
|
};
|
|
|
|
} // namespace gd
|
|
|
|
#endif // COMMENTEVENT_H
|