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 setFocusBackgroundColor (FColor);
|
||||||
void setInactiveForegroundColor (FColor);
|
void setInactiveForegroundColor (FColor);
|
||||||
void setInactiveBackgroundColor (FColor);
|
void setInactiveBackgroundColor (FColor);
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
bool setNoUnderline(bool);
|
bool setNoUnderline(bool);
|
||||||
bool setNoUnderline();
|
bool setNoUnderline();
|
||||||
bool unsetNoUnderline();
|
bool unsetNoUnderline();
|
||||||
|
|
|
@ -108,7 +108,7 @@ class FDialog : public FWindow
|
||||||
bool setBorder (bool);
|
bool setBorder (bool);
|
||||||
bool setBorder();
|
bool setBorder();
|
||||||
bool unsetBorder();
|
bool unsetBorder();
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
virtual void setText (const FString&);
|
virtual void setText (const FString&);
|
||||||
|
|
||||||
// Inquiries
|
// Inquiries
|
||||||
|
|
|
@ -120,7 +120,7 @@ class FLineEdit : public FWidget
|
||||||
void setInputType (const inputType);
|
void setInputType (const inputType);
|
||||||
void setLabelOrientation (const label_o);
|
void setLabelOrientation (const label_o);
|
||||||
void setLabelAssociatedWidget (FWidget*);
|
void setLabelAssociatedWidget (FWidget*);
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
void setSize (const FSize&, bool = true) override;
|
void setSize (const FSize&, bool = true) override;
|
||||||
void setGeometry ( const FPoint&, const FSize&
|
void setGeometry ( const FPoint&, const FSize&
|
||||||
, bool = true ) override;
|
, bool = true ) override;
|
||||||
|
|
|
@ -106,7 +106,7 @@ class FMenu : public FWindow, public FMenuList
|
||||||
void setStatusbarMessage (const FString&) override;
|
void setStatusbarMessage (const FString&) override;
|
||||||
void setMenu (FMenu*);
|
void setMenu (FMenu*);
|
||||||
void setText (const FString&);
|
void setText (const FString&);
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
|
|
||||||
// Inquiries
|
// Inquiries
|
||||||
bool isSelected() const;
|
bool isSelected() const;
|
||||||
|
|
|
@ -86,7 +86,7 @@ class FMenuBar : public FWindow, public FMenuList
|
||||||
const FString getClassName() const override;
|
const FString getClassName() const override;
|
||||||
|
|
||||||
// Methods
|
// Methods
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
void resetMenu();
|
void resetMenu();
|
||||||
void hide() override;
|
void hide() override;
|
||||||
void adjustSize() override;
|
void adjustSize() override;
|
||||||
|
|
|
@ -108,7 +108,7 @@ class FScrollView : public FWidget
|
||||||
bool setViewportPrint (bool);
|
bool setViewportPrint (bool);
|
||||||
bool setViewportPrint();
|
bool setViewportPrint();
|
||||||
bool unsetViewportPrint();
|
bool unsetViewportPrint();
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
bool setBorder (bool);
|
bool setBorder (bool);
|
||||||
bool setBorder();
|
bool setBorder();
|
||||||
bool unsetBorder();
|
bool unsetBorder();
|
||||||
|
|
|
@ -205,7 +205,7 @@ class FStatusBar : public FWindow
|
||||||
void activateKey (int);
|
void activateKey (int);
|
||||||
void deactivateKey (int);
|
void deactivateKey (int);
|
||||||
void setMessage (const FString&);
|
void setMessage (const FString&);
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
|
|
||||||
// Inquiries
|
// Inquiries
|
||||||
bool isActivated (int) const;
|
bool isActivated (int) const;
|
||||||
|
|
|
@ -100,7 +100,7 @@ class FTextView : public FWidget
|
||||||
void setSize (const FSize&, bool = true) override;
|
void setSize (const FSize&, bool = true) override;
|
||||||
void setGeometry ( const FPoint&, const FSize&
|
void setGeometry ( const FPoint&, const FSize&
|
||||||
, bool = true ) override;
|
, bool = true ) override;
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
void setText (const FString&);
|
void setText (const FString&);
|
||||||
void scrollToX (int);
|
void scrollToX (int);
|
||||||
void scrollToY (int);
|
void scrollToY (int);
|
||||||
|
|
|
@ -86,7 +86,7 @@ class FToggleButton : public FWidget
|
||||||
void setSize (const FSize&, bool = true) override;
|
void setSize (const FSize&, bool = true) override;
|
||||||
void setGeometry ( const FPoint&, const FSize&
|
void setGeometry ( const FPoint&, const FSize&
|
||||||
, bool = true ) override;
|
, bool = true ) override;
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
bool setNoUnderline (bool);
|
bool setNoUnderline (bool);
|
||||||
bool setNoUnderline();
|
bool setNoUnderline();
|
||||||
bool unsetNoUnderline();
|
bool unsetNoUnderline();
|
||||||
|
|
|
@ -85,7 +85,7 @@ class FToolTip : public FWindow
|
||||||
|
|
||||||
// Mutators
|
// Mutators
|
||||||
void setText (const FString&);
|
void setText (const FString&);
|
||||||
void resetColors();
|
void resetColors() override;
|
||||||
bool setBorder (bool);
|
bool setBorder (bool);
|
||||||
bool setBorder();
|
bool setBorder();
|
||||||
bool unsetBorder();
|
bool unsetBorder();
|
||||||
|
|
Loading…
Reference in New Issue