Skip to content

Instantly share code, notes, and snippets.

@SunXiaoShan
Created January 19, 2019 01:10
Show Gist options
  • Save SunXiaoShan/71adfadce2c84db558c3f91d3d1be42f to your computer and use it in GitHub Desktop.
Save SunXiaoShan/71adfadce2c84db558c3f91d3d1be42f to your computer and use it in GitHub Desktop.
class Widget {
public:
Widget();
~Widget();
public:
void setHighlighted();
void setHighlightable(bool active);
void resetHighlight();
bool isHighlighted();
vector<Widget *> getHighlightableChildren();
protected:
Widget *getHighlighChild();
public:
Rect frame;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment