Some methods are marked as 'Override'
This commit is contained in:
parent
f76a9d2114
commit
70eabe93d6
|
@ -88,7 +88,7 @@ class FButton : public FWidget
|
|||
void setFocusBackgroundColor (FColor);
|
||||
void setInactiveForegroundColor (FColor);
|
||||
void setInactiveBackgroundColor (FColor);
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
bool setNoUnderline(bool);
|
||||
bool setNoUnderline();
|
||||
bool unsetNoUnderline();
|
||||
|
|
|
@ -108,7 +108,7 @@ class FDialog : public FWindow
|
|||
bool setBorder (bool);
|
||||
bool setBorder();
|
||||
bool unsetBorder();
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
virtual void setText (const FString&);
|
||||
|
||||
// Inquiries
|
||||
|
|
|
@ -120,7 +120,7 @@ class FLineEdit : public FWidget
|
|||
void setInputType (const inputType);
|
||||
void setLabelOrientation (const label_o);
|
||||
void setLabelAssociatedWidget (FWidget*);
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
void setSize (const FSize&, bool = true) override;
|
||||
void setGeometry ( const FPoint&, const FSize&
|
||||
, bool = true ) override;
|
||||
|
|
|
@ -106,7 +106,7 @@ class FMenu : public FWindow, public FMenuList
|
|||
void setStatusbarMessage (const FString&) override;
|
||||
void setMenu (FMenu*);
|
||||
void setText (const FString&);
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
|
||||
// Inquiries
|
||||
bool isSelected() const;
|
||||
|
|
|
@ -86,7 +86,7 @@ class FMenuBar : public FWindow, public FMenuList
|
|||
const FString getClassName() const override;
|
||||
|
||||
// Methods
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
void resetMenu();
|
||||
void hide() override;
|
||||
void adjustSize() override;
|
||||
|
|
|
@ -108,7 +108,7 @@ class FScrollView : public FWidget
|
|||
bool setViewportPrint (bool);
|
||||
bool setViewportPrint();
|
||||
bool unsetViewportPrint();
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
bool setBorder (bool);
|
||||
bool setBorder();
|
||||
bool unsetBorder();
|
||||
|
|
|
@ -205,7 +205,7 @@ class FStatusBar : public FWindow
|
|||
void activateKey (int);
|
||||
void deactivateKey (int);
|
||||
void setMessage (const FString&);
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
|
||||
// Inquiries
|
||||
bool isActivated (int) const;
|
||||
|
|
|
@ -100,7 +100,7 @@ class FTextView : public FWidget
|
|||
void setSize (const FSize&, bool = true) override;
|
||||
void setGeometry ( const FPoint&, const FSize&
|
||||
, bool = true ) override;
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
void setText (const FString&);
|
||||
void scrollToX (int);
|
||||
void scrollToY (int);
|
||||
|
|
|
@ -86,7 +86,7 @@ class FToggleButton : public FWidget
|
|||
void setSize (const FSize&, bool = true) override;
|
||||
void setGeometry ( const FPoint&, const FSize&
|
||||
, bool = true ) override;
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
bool setNoUnderline (bool);
|
||||
bool setNoUnderline();
|
||||
bool unsetNoUnderline();
|
||||
|
|
|
@ -85,7 +85,7 @@ class FToolTip : public FWindow
|
|||
|
||||
// Mutators
|
||||
void setText (const FString&);
|
||||
void resetColors();
|
||||
void resetColors() override;
|
||||
bool setBorder (bool);
|
||||
bool setBorder();
|
||||
bool unsetBorder();
|
||||
|
|
Loading…
Reference in New Issue