mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-24 05:49:58 +00:00
730 lines
19 KiB
C++
730 lines
19 KiB
C++
#pragma once
|
|
|
|
// More traditional UI framework than ui/ui.h.
|
|
|
|
// Still very simple to use.
|
|
|
|
// Works very similarly to Android, there's a Measure pass and a Layout pass which you don't
|
|
// really need to care about if you just use the standard containers and widgets.
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <cmath>
|
|
#include <cstdio>
|
|
|
|
#include "base/logging.h"
|
|
#include "base/functional.h"
|
|
#include "base/mutex.h"
|
|
#include "base/basictypes.h"
|
|
#include "base/scoped_ptr.h"
|
|
#include "gfx/texture_atlas.h"
|
|
#include "math/lin/matrix4x4.h"
|
|
#include "math/math_util.h"
|
|
#include "math/geom2d.h"
|
|
|
|
struct KeyInput;
|
|
struct TouchInput;
|
|
struct AxisInput;
|
|
struct InputState;
|
|
|
|
class DrawBuffer;
|
|
class Texture;
|
|
class UIContext;
|
|
|
|
// I don't generally like namespaces but I think we do need one for UI, so many potentially-clashing names.
|
|
namespace UI {
|
|
|
|
class View;
|
|
|
|
// The ONLY global is the currently focused item.
|
|
// Can be and often is null.
|
|
void EnableFocusMovement(bool enable);
|
|
bool IsFocusMovementEnabled();
|
|
View *GetFocusedView();
|
|
void SetFocusedView(View *view);
|
|
|
|
enum DrawableType {
|
|
DRAW_NOTHING,
|
|
DRAW_SOLID_COLOR,
|
|
DRAW_4GRID,
|
|
DRAW_STRETCH_IMAGE,
|
|
};
|
|
|
|
enum Visibility {
|
|
V_VISIBLE,
|
|
V_INVISIBLE, // Keeps position, not drawn or interacted with
|
|
V_GONE, // Does not participate in layout
|
|
};
|
|
|
|
struct Drawable {
|
|
Drawable() : type(DRAW_NOTHING), image(-1), color(0xFFFFFFFF) {}
|
|
explicit Drawable(uint32_t col) : type(DRAW_SOLID_COLOR), image(-1), color(col) {}
|
|
Drawable(DrawableType t, int img, uint32_t col = 0xFFFFFFFF) : type(t), image(img), color(col) {}
|
|
|
|
DrawableType type;
|
|
uint32_t image;
|
|
uint32_t color;
|
|
};
|
|
|
|
struct Style {
|
|
Style() : fgColor(0xFFFFFFFF), background(0xFF303030), image(-1) {}
|
|
|
|
uint32_t fgColor;
|
|
Drawable background;
|
|
int image; // where applicable.
|
|
};
|
|
|
|
struct FontStyle {
|
|
FontStyle() : atlasFont(0), sizePts(0), flags(0) {}
|
|
FontStyle(const char *name, int size) : atlasFont(0), fontName(name), sizePts(size), flags(0) {}
|
|
FontStyle(int atlasFnt, const char *name, int size) : atlasFont(atlasFnt), fontName(name), sizePts(size), flags(0) {}
|
|
|
|
int atlasFont;
|
|
// For native fonts:
|
|
std::string fontName;
|
|
int sizePts;
|
|
int flags;
|
|
};
|
|
|
|
|
|
// To use with an UI atlas.
|
|
struct Theme {
|
|
FontStyle uiFont;
|
|
FontStyle uiFontSmall;
|
|
FontStyle uiFontSmaller;
|
|
int checkOn;
|
|
int checkOff;
|
|
int sliderKnob;
|
|
int whiteImage;
|
|
int dropShadow4Grid;
|
|
|
|
Style buttonStyle;
|
|
Style buttonFocusedStyle;
|
|
Style buttonDownStyle;
|
|
Style buttonDisabledStyle;
|
|
Style buttonHighlightedStyle;
|
|
|
|
Style itemStyle;
|
|
Style itemDownStyle;
|
|
Style itemFocusedStyle;
|
|
Style itemDisabledStyle;
|
|
Style itemHighlightedStyle;
|
|
|
|
Style headerStyle;
|
|
|
|
Style popupTitle;
|
|
};
|
|
|
|
// The four cardinal directions should be enough, plus Prev/Next in "element order".
|
|
enum FocusDirection {
|
|
FOCUS_UP,
|
|
FOCUS_DOWN,
|
|
FOCUS_LEFT,
|
|
FOCUS_RIGHT,
|
|
FOCUS_NEXT,
|
|
FOCUS_PREV,
|
|
};
|
|
|
|
enum {
|
|
WRAP_CONTENT = -1,
|
|
FILL_PARENT = -2,
|
|
};
|
|
|
|
// Gravity
|
|
enum Gravity {
|
|
G_LEFT = 0,
|
|
G_RIGHT = 1,
|
|
G_HCENTER = 2,
|
|
|
|
G_HORIZMASK = 3,
|
|
|
|
G_TOP = 0,
|
|
G_BOTTOM = 4,
|
|
G_VCENTER = 8,
|
|
|
|
G_TOPLEFT = G_TOP | G_LEFT,
|
|
G_TOPRIGHT = G_TOP | G_RIGHT,
|
|
|
|
G_BOTTOMLEFT = G_BOTTOM | G_LEFT,
|
|
G_BOTTOMRIGHT = G_BOTTOM | G_RIGHT,
|
|
|
|
G_VERTMASK = 3 << 2,
|
|
};
|
|
|
|
typedef float Size; // can also be WRAP_CONTENT or FILL_PARENT.
|
|
|
|
enum Orientation {
|
|
ORIENT_HORIZONTAL,
|
|
ORIENT_VERTICAL,
|
|
};
|
|
|
|
inline Orientation Opposite(Orientation o) {
|
|
if (o == ORIENT_HORIZONTAL) return ORIENT_VERTICAL; else return ORIENT_HORIZONTAL;
|
|
}
|
|
|
|
inline FocusDirection Opposite(FocusDirection d) {
|
|
switch (d) {
|
|
case FOCUS_UP: return FOCUS_DOWN;
|
|
case FOCUS_DOWN: return FOCUS_UP;
|
|
case FOCUS_LEFT: return FOCUS_RIGHT;
|
|
case FOCUS_RIGHT: return FOCUS_LEFT;
|
|
case FOCUS_PREV: return FOCUS_NEXT;
|
|
case FOCUS_NEXT: return FOCUS_PREV;
|
|
}
|
|
return d;
|
|
}
|
|
|
|
enum MeasureSpecType {
|
|
UNSPECIFIED,
|
|
EXACTLY,
|
|
AT_MOST,
|
|
};
|
|
|
|
enum EventReturn {
|
|
EVENT_DONE,
|
|
EVENT_SKIPPED,
|
|
};
|
|
|
|
enum FocusFlags {
|
|
FF_LOSTFOCUS = 1,
|
|
FF_GOTFOCUS = 2
|
|
};
|
|
|
|
class ViewGroup;
|
|
|
|
void Fill(UIContext &dc, const Bounds &bounds, const Drawable &drawable);
|
|
|
|
struct MeasureSpec {
|
|
MeasureSpec(MeasureSpecType t, float s = 0.0f) : type(t), size(s) {}
|
|
MeasureSpec() : type(UNSPECIFIED), size(0) {}
|
|
|
|
MeasureSpec operator -(float amount) {
|
|
// TODO: Check type
|
|
return MeasureSpec(type, size - amount);
|
|
}
|
|
MeasureSpecType type;
|
|
float size;
|
|
};
|
|
|
|
class View;
|
|
|
|
|
|
// Should cover all bases.
|
|
struct EventParams {
|
|
View *v;
|
|
uint32_t a, b, x, y;
|
|
std::string s;
|
|
};
|
|
|
|
struct HandlerRegistration {
|
|
std::function<EventReturn(EventParams&)> func;
|
|
};
|
|
|
|
class Event {
|
|
public:
|
|
Event() {}
|
|
~Event() {
|
|
handlers_.clear();
|
|
}
|
|
// Call this from input thread or whatever, it doesn't matter
|
|
void Trigger(EventParams &e);
|
|
// Call this from UI thread
|
|
EventReturn Dispatch(EventParams &e);
|
|
|
|
// This is suggested for use in most cases. Autobinds, allowing for neat syntax.
|
|
template<class T>
|
|
T *Handle(T *thiz, EventReturn (T::* theCallback)(EventParams &e)) {
|
|
Add(std::bind(theCallback, thiz, placeholder::_1));
|
|
return thiz;
|
|
}
|
|
|
|
// Sometimes you have an already-bound function<>, just use this then.
|
|
void Add(std::function<EventReturn(EventParams&)> func);
|
|
|
|
private:
|
|
std::vector<HandlerRegistration> handlers_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Event);
|
|
};
|
|
|
|
struct Margins {
|
|
Margins() : top(0), bottom(0), left(0), right(0) {}
|
|
explicit Margins(int8_t all) : top(all), bottom(all), left(all), right(all) {}
|
|
Margins(int8_t horiz, int8_t vert) : top(vert), bottom(vert), left(horiz), right(horiz) {}
|
|
Margins(int8_t l, int8_t t, int8_t r, int8_t b) : top(t), bottom(b), left(l), right(r) {}
|
|
|
|
int8_t top;
|
|
int8_t bottom;
|
|
int8_t left;
|
|
int8_t right;
|
|
};
|
|
|
|
enum LayoutParamsType {
|
|
LP_PLAIN = 0,
|
|
LP_LINEAR = 1,
|
|
LP_ANCHOR = 2,
|
|
};
|
|
|
|
// Need a virtual destructor so vtables are created, otherwise RTTI can't work
|
|
class LayoutParams {
|
|
public:
|
|
LayoutParams(LayoutParamsType type = LP_PLAIN)
|
|
: width(WRAP_CONTENT), height(WRAP_CONTENT), type_(type) {}
|
|
LayoutParams(Size w, Size h, LayoutParamsType type = LP_PLAIN)
|
|
: width(w), height(h), type_(type) {}
|
|
virtual ~LayoutParams() {}
|
|
Size width;
|
|
Size height;
|
|
|
|
// Fake RTTI
|
|
bool Is(LayoutParamsType type) const { return type_ == type; }
|
|
|
|
private:
|
|
LayoutParamsType type_;
|
|
};
|
|
|
|
View *GetFocusedView();
|
|
|
|
class View {
|
|
public:
|
|
View(LayoutParams *layoutParams = 0) : layoutParams_(layoutParams), enabled_(true), visibility_(V_VISIBLE), measuredWidth_(0), measuredHeight_(0) {
|
|
if (!layoutParams)
|
|
layoutParams_.reset(new LayoutParams());
|
|
}
|
|
|
|
virtual ~View() { if (HasFocus()) SetFocusedView(0); }
|
|
|
|
// Please note that Touch is called ENTIRELY asynchronously from drawing!
|
|
// Can even be called on a different thread! This is to really minimize latency, and decouple
|
|
// touch response from the frame rate. Same with Key and Axis.
|
|
virtual void Key(const KeyInput &input) {}
|
|
virtual void Touch(const TouchInput &input) {}
|
|
virtual void Axis(const AxisInput &input) {}
|
|
virtual void Update(const InputState &input_state) {}
|
|
|
|
virtual void FocusChanged(int focusFlags) {}
|
|
|
|
void Move(Bounds bounds) {
|
|
bounds_ = bounds;
|
|
}
|
|
|
|
// Views don't do anything here in Layout, only containers implement this.
|
|
virtual void Measure(const UIContext &dc, MeasureSpec horiz, MeasureSpec vert);
|
|
virtual void Layout() {}
|
|
virtual void Draw(UIContext &dc) {}
|
|
|
|
virtual float GetMeasuredWidth() const { return measuredWidth_; }
|
|
virtual float GetMeasuredHeight() const { return measuredHeight_; }
|
|
|
|
// Override this for easy standard behaviour. No need to override Measure.
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
|
|
// Called when the layout is done.
|
|
void SetBounds(Bounds bounds) { bounds_ = bounds; }
|
|
virtual const LayoutParams *GetLayoutParams() const { return layoutParams_.get(); }
|
|
virtual void ReplaceLayoutParams(LayoutParams *newLayoutParams) { layoutParams_.reset(newLayoutParams); }
|
|
const Bounds &GetBounds() const { return bounds_; }
|
|
|
|
virtual bool SetFocus() {
|
|
if (CanBeFocused()) {
|
|
SetFocusedView(this);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
virtual bool CanBeFocused() const { return true; }
|
|
virtual bool SubviewFocused(View *view) { return false; }
|
|
bool HasFocus() const {
|
|
return GetFocusedView() == this;
|
|
}
|
|
|
|
void SetEnabled(bool enabled) { enabled_ = enabled; }
|
|
bool IsEnabled() const { return enabled_; }
|
|
|
|
void SetVisibility(Visibility visibility) { visibility_ = visibility; }
|
|
Visibility GetVisibility() const { return visibility_; }
|
|
|
|
const std::string &Tag() const { return tag_; }
|
|
void SetTag(const std::string &str) { tag_ = str; }
|
|
|
|
// Fake RTTI
|
|
virtual bool IsViewGroup() const { return false; }
|
|
|
|
Point GetFocusPosition(FocusDirection dir);
|
|
|
|
protected:
|
|
// Inputs to layout
|
|
scoped_ptr<LayoutParams> layoutParams_;
|
|
|
|
std::string tag_;
|
|
bool enabled_;
|
|
Visibility visibility_;
|
|
|
|
// Results of measure pass. Set these in Measure.
|
|
float measuredWidth_;
|
|
float measuredHeight_;
|
|
|
|
// Outputs of layout. X/Y are absolute screen coordinates, hierarchy is "gone" here.
|
|
Bounds bounds_;
|
|
|
|
scoped_ptr<Matrix4x4> transform_;
|
|
|
|
private:
|
|
DISALLOW_COPY_AND_ASSIGN(View);
|
|
};
|
|
|
|
// These don't do anything when touched.
|
|
class InertView : public View {
|
|
public:
|
|
InertView(LayoutParams *layoutParams)
|
|
: View(layoutParams) {}
|
|
|
|
virtual void Key(const KeyInput &input) {}
|
|
virtual void Touch(const TouchInput &input) {}
|
|
virtual bool CanBeFocused() const { return false; }
|
|
virtual void Update(const InputState &input_state) {}
|
|
};
|
|
|
|
|
|
// All these light up their background when touched, or have focus.
|
|
class Clickable : public View {
|
|
public:
|
|
Clickable(LayoutParams *layoutParams)
|
|
: View(layoutParams), downCountDown_(0), dragging_(false), down_(false){}
|
|
|
|
virtual void Key(const KeyInput &input);
|
|
virtual void Touch(const TouchInput &input);
|
|
|
|
virtual void FocusChanged(int focusFlags);
|
|
|
|
Event OnClick;
|
|
|
|
protected:
|
|
// Internal method that fires on a click. Default behaviour is to trigger
|
|
// the event.
|
|
// Use it for checking/unchecking checkboxes, etc.
|
|
virtual void Click();
|
|
|
|
int downCountDown_;
|
|
bool dragging_;
|
|
bool down_;
|
|
};
|
|
|
|
class Button : public Clickable {
|
|
public:
|
|
Button(const std::string &text, LayoutParams *layoutParams = 0)
|
|
: Clickable(layoutParams), text_(text) {}
|
|
|
|
virtual void Draw(UIContext &dc);
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
const std::string &GetText() const { return text_; }
|
|
|
|
private:
|
|
Style style_;
|
|
std::string text_;
|
|
};
|
|
|
|
class Slider : public Clickable {
|
|
public:
|
|
Slider(int *value, int minValue, int maxValue, LayoutParams *layoutParams = 0)
|
|
: Clickable(layoutParams), value_(value), showPercent_(false), minValue_(minValue), maxValue_(maxValue), paddingLeft_(5), paddingRight_(70) {}
|
|
virtual void Draw(UIContext &dc);
|
|
virtual void Key(const KeyInput &input);
|
|
virtual void Touch(const TouchInput &input);
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
void SetShowPercent(bool s) { showPercent_ = s; }
|
|
private:
|
|
void Clamp();
|
|
int *value_;
|
|
bool showPercent_;
|
|
int minValue_;
|
|
int maxValue_;
|
|
float paddingLeft_;
|
|
float paddingRight_;
|
|
};
|
|
|
|
class SliderFloat : public Clickable {
|
|
public:
|
|
SliderFloat(float *value, float minValue, float maxValue, LayoutParams *layoutParams = 0)
|
|
: Clickable(layoutParams), value_(value), minValue_(minValue), maxValue_(maxValue), paddingLeft_(5), paddingRight_(70) {}
|
|
virtual void Draw(UIContext &dc);
|
|
virtual void Key(const KeyInput &input);
|
|
virtual void Touch(const TouchInput &input);
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
|
|
private:
|
|
void Clamp();
|
|
float *value_;
|
|
float minValue_;
|
|
float maxValue_;
|
|
float paddingLeft_;
|
|
float paddingRight_;
|
|
};
|
|
|
|
// Basic button that modifies a bitfield based on the pressed status. Supports multitouch.
|
|
// Suitable for controller simulation (ABXY etc).
|
|
class TriggerButton : public View {
|
|
public:
|
|
TriggerButton(uint32_t *bitField, uint32_t bit, int imageBackground, int imageForeground, LayoutParams *layoutParams)
|
|
: View(layoutParams), down_(0.0), bitField_(bitField), bit_(bit), imageBackground_(imageBackground), imageForeground_(imageForeground) {}
|
|
|
|
virtual void Touch(const TouchInput &input);
|
|
virtual void Draw(UIContext &dc);
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
|
|
private:
|
|
int down_; // bitfield of pressed fingers, translates into bitField
|
|
|
|
uint32_t *bitField_;
|
|
uint32_t bit_;
|
|
|
|
int imageBackground_;
|
|
int imageForeground_;
|
|
};
|
|
|
|
|
|
// The following classes are mostly suitable as items in ListView which
|
|
// really is just a LinearLayout in a ScrollView, possibly with some special optimizations.
|
|
|
|
class Item : public InertView {
|
|
public:
|
|
Item(LayoutParams *layoutParams);
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
};
|
|
|
|
class ClickableItem : public Clickable {
|
|
public:
|
|
ClickableItem(LayoutParams *layoutParams);
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
|
|
// Draws the item background.
|
|
virtual void Draw(UIContext &dc);
|
|
};
|
|
|
|
// Use to trigger something or open a submenu screen.
|
|
class Choice : public ClickableItem {
|
|
public:
|
|
Choice(const std::string &text, LayoutParams *layoutParams = 0)
|
|
: ClickableItem(layoutParams), text_(text), smallText_(), atlasImage_(-1), selected_(false), centered_(false), highlighted_(false) {}
|
|
Choice(const std::string &text, const std::string &smallText, bool selected = false, LayoutParams *layoutParams = 0)
|
|
: ClickableItem(layoutParams), text_(text), smallText_(smallText), atlasImage_(-1), selected_(selected), centered_(false), highlighted_(false) {}
|
|
|
|
Choice(ImageID image, LayoutParams *layoutParams = 0)
|
|
: ClickableItem(layoutParams), atlasImage_(image), selected_(false), highlighted_(false) {}
|
|
|
|
virtual void HighlightChanged(bool highlighted);
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
virtual void Draw(UIContext &dc);
|
|
virtual void SetCentered(bool c) {
|
|
centered_ = c;
|
|
}
|
|
|
|
protected:
|
|
// hackery
|
|
virtual bool IsSticky() const { return false; }
|
|
|
|
std::string text_;
|
|
std::string smallText_;
|
|
ImageID atlasImage_;
|
|
bool centered_;
|
|
bool highlighted_;
|
|
|
|
private:
|
|
bool selected_;
|
|
};
|
|
|
|
// Different key handling.
|
|
class StickyChoice : public Choice {
|
|
public:
|
|
StickyChoice(const std::string &text, const std::string &smallText = "", LayoutParams *layoutParams = 0)
|
|
: Choice(text, smallText, false, layoutParams) {}
|
|
StickyChoice(ImageID buttonImage, LayoutParams *layoutParams = 0)
|
|
: Choice(buttonImage, layoutParams) {}
|
|
|
|
virtual void Key(const KeyInput &key);
|
|
virtual void Touch(const TouchInput &touch);
|
|
virtual void FocusChanged(int focusFlags);
|
|
|
|
void Press() { down_ = true; dragging_ = false; }
|
|
void Release() { down_ = false; dragging_ = false; }
|
|
bool IsDown() { return down_; }
|
|
|
|
protected:
|
|
// hackery
|
|
virtual bool IsSticky() const { return true; }
|
|
};
|
|
|
|
class InfoItem : public Item {
|
|
public:
|
|
InfoItem(const std::string &text, const std::string &rightText, LayoutParams *layoutParams = 0)
|
|
: Item(layoutParams), text_(text), rightText_(rightText) {}
|
|
|
|
virtual void Draw(UIContext &dc);
|
|
|
|
private:
|
|
std::string text_;
|
|
std::string rightText_;
|
|
};
|
|
|
|
class ItemHeader : public Item {
|
|
public:
|
|
ItemHeader(const std::string &text, LayoutParams *layoutParams = 0);
|
|
virtual void Draw(UIContext &dc);
|
|
private:
|
|
std::string text_;
|
|
};
|
|
|
|
class PopupHeader : public Item {
|
|
public:
|
|
PopupHeader(const std::string &text, LayoutParams *layoutParams = 0)
|
|
: Item(layoutParams), text_(text) {
|
|
layoutParams_->width = FILL_PARENT;
|
|
layoutParams_->height = 64;
|
|
}
|
|
virtual void Draw(UIContext &dc);
|
|
private:
|
|
std::string text_;
|
|
};
|
|
|
|
class CheckBox : public ClickableItem {
|
|
public:
|
|
CheckBox(bool *toggle, const std::string &text, const std::string &smallText = "", LayoutParams *layoutParams = 0)
|
|
: ClickableItem(layoutParams), toggle_(toggle), text_(text), smallText_(smallText) {
|
|
OnClick.Handle(this, &CheckBox::OnClicked);
|
|
}
|
|
|
|
virtual void Draw(UIContext &dc);
|
|
|
|
EventReturn OnClicked(EventParams &e) {
|
|
if (toggle_)
|
|
*toggle_ = !(*toggle_);
|
|
return EVENT_DONE;
|
|
}
|
|
|
|
private:
|
|
bool *toggle_;
|
|
std::string text_;
|
|
std::string smallText_;
|
|
};
|
|
|
|
// These are for generic use.
|
|
|
|
class Spacer : public InertView {
|
|
public:
|
|
Spacer(LayoutParams *layoutParams = 0)
|
|
: InertView(layoutParams), size_(0.0f) {}
|
|
Spacer(float size, LayoutParams *layoutParams = 0)
|
|
: InertView(layoutParams), size_(size) {}
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const {
|
|
w = size_; h = size_;
|
|
}
|
|
virtual void Draw(UIContext &dc) {}
|
|
private:
|
|
float size_;
|
|
};
|
|
|
|
class TextView : public InertView {
|
|
public:
|
|
TextView(const std::string &text, LayoutParams *layoutParams = 0)
|
|
: InertView(layoutParams), text_(text), textAlign_(0), small_(false) {}
|
|
|
|
TextView(const std::string &text, int textAlign, bool small, LayoutParams *layoutParams = 0)
|
|
: InertView(layoutParams), text_(text), textAlign_(textAlign), small_(small) {}
|
|
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
virtual void Draw(UIContext &dc);
|
|
void SetText(const std::string &text) { text_ = text; }
|
|
void SetSmall(bool small) { small_ = small; }
|
|
private:
|
|
std::string text_;
|
|
int textAlign_;
|
|
bool small_;
|
|
};
|
|
|
|
enum ImageSizeMode {
|
|
IS_DEFAULT,
|
|
};
|
|
|
|
class ImageView : public InertView {
|
|
public:
|
|
ImageView(int atlasImage, ImageSizeMode sizeMode, LayoutParams *layoutParams = 0)
|
|
: InertView(layoutParams), atlasImage_(atlasImage), sizeMode_(sizeMode) {}
|
|
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
virtual void Draw(UIContext &dc);
|
|
|
|
private:
|
|
int atlasImage_;
|
|
ImageSizeMode sizeMode_;
|
|
};
|
|
|
|
class TextureView : public InertView {
|
|
public:
|
|
TextureView(Texture *texture, ImageSizeMode sizeMode, LayoutParams *layoutParams = 0)
|
|
: InertView(layoutParams), texture_(texture), sizeMode_(sizeMode) {}
|
|
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
virtual void Draw(UIContext &dc);
|
|
|
|
void SetTexture(Texture *texture) { texture_ = texture; }
|
|
void SetColor(uint32_t color) { color_ = color; }
|
|
|
|
private:
|
|
Texture *texture_;
|
|
uint32_t color_;
|
|
ImageSizeMode sizeMode_;
|
|
};
|
|
|
|
|
|
class ProgressBar : public InertView {
|
|
public:
|
|
ProgressBar(LayoutParams *layoutParams = 0)
|
|
: InertView(layoutParams), progress_(0.0) {}
|
|
|
|
virtual void GetContentDimensions(const UIContext &dc, float &w, float &h) const;
|
|
virtual void Draw(UIContext &dc);
|
|
|
|
void SetProgress(float progress) { progress_ = progress; }
|
|
float GetProgress() const { return progress_; }
|
|
|
|
private:
|
|
float progress_;
|
|
};
|
|
|
|
|
|
|
|
// This tab strip is a little special.
|
|
/*
|
|
class TabStrip : public View {
|
|
public:
|
|
TabStrip();
|
|
|
|
virtual void Touch(const TouchInput &input);
|
|
virtual void Draw(DrawContext &dc);
|
|
|
|
void AddTab(const std::string &title, uint32_t color) {
|
|
Tab tab;
|
|
tab.title = title;
|
|
tab.color = color;
|
|
tabs_.push_back(tab);
|
|
}
|
|
|
|
private:
|
|
int selected_;
|
|
struct Tab {
|
|
std::string title;
|
|
uint32_t color;
|
|
};
|
|
std::vector<Tab> tabs_;
|
|
};*/
|
|
|
|
void MeasureBySpec(Size sz, float contentWidth, MeasureSpec spec, float *measured);
|
|
|
|
void EventTriggered(Event *e, EventParams params);
|
|
void DispatchEvents();
|
|
bool IsAcceptKeyCode(int keyCode);
|
|
bool IsEscapeKeyCode(int keyCode);
|
|
|
|
} // namespace
|