comparison Framework/Widgets/IWidget.h @ 386:e33659decec5

renamed UpdateContent() as DoAnimation()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 09 Nov 2018 17:06:28 +0100
parents 6cc3ce74dc05
children b70e9be013e4
comparison
equal deleted inserted replaced
385:6cc3ce74dc05 386:e33659decec5
67 67
68 virtual void KeyPressed(KeyboardKeys key, 68 virtual void KeyPressed(KeyboardKeys key,
69 char keyChar, 69 char keyChar,
70 KeyboardModifiers modifiers) = 0; 70 KeyboardModifiers modifiers) = 0;
71 71
72 virtual bool HasUpdateContent() const = 0; 72 virtual bool HasAnimation() const = 0;
73 73
74 virtual void UpdateContent() = 0; 74 virtual void DoAnimation() = 0;
75 75
76 // Subclasses can call this method to signal the display of the 76 // Subclasses can call this method to signal the display of the
77 // widget must be refreshed 77 // widget must be refreshed
78 virtual void NotifyContentChanged() = 0; 78 virtual void NotifyContentChanged() = 0;
79 }; 79 };