mirror of https://github.com/AxioDL/metaforce.git
55 lines
1.5 KiB
C++
55 lines
1.5 KiB
C++
#ifndef SPECTER_TEXTFIELD_HPP
|
|
#define SPECTER_TEXTFIELD_HPP
|
|
|
|
#include "View.hpp"
|
|
#include "TextView.hpp"
|
|
|
|
namespace Specter
|
|
{
|
|
|
|
class TextField : public View
|
|
{
|
|
std::string m_textStr;
|
|
std::unique_ptr<TextView> m_text;
|
|
|
|
SolidShaderVert m_verts[28];
|
|
boo::IGraphicsBufferD* m_bVertsBuf = nullptr;
|
|
boo::IVertexFormat* m_bVtxFmt = nullptr; /* OpenGL only */
|
|
boo::IShaderDataBinding* m_bShaderBinding = nullptr;
|
|
|
|
int m_nomWidth = 0;
|
|
int m_nomHeight = 0;
|
|
|
|
void setInactive();
|
|
void setHover();
|
|
void setDisabled();
|
|
|
|
public:
|
|
TextField(ViewResources& res, View& parentView);
|
|
|
|
void setText(const std::string& str);
|
|
|
|
void mouseDown(const boo::SWindowCoord&, boo::EMouseButton, boo::EModifierKey);
|
|
void mouseUp(const boo::SWindowCoord&, boo::EMouseButton, boo::EModifierKey);
|
|
void mouseMove(const boo::SWindowCoord&);
|
|
void mouseEnter(const boo::SWindowCoord&);
|
|
void mouseLeave(const boo::SWindowCoord&coord);
|
|
void resized(const boo::SWindowRect& rootView, const boo::SWindowRect& sub);
|
|
void draw(boo::IGraphicsCommandQueue* gfxQ);
|
|
|
|
int nominalWidth() const {return m_nomWidth;}
|
|
int nominalHeight() const {return m_nomHeight;}
|
|
|
|
void setMultiplyColor(const Zeus::CColor& color)
|
|
{
|
|
View::setMultiplyColor(color);
|
|
m_viewVertBlock.m_color = color;
|
|
m_viewVertBlockBuf->load(&m_viewVertBlock, sizeof(ViewBlock));
|
|
m_text->setMultiplyColor(color);
|
|
}
|
|
};
|
|
|
|
}
|
|
|
|
#endif // SPECTER_TEXTFIELD_HPP
|