[DEV] remove get title in the list ==> never used
This commit is contained in:
parent
3da1b84016
commit
4dee6004c3
@ -63,10 +63,6 @@ namespace ewol {
|
|||||||
return etk::Color<>(0xFF, 0xFF, 0xFF, 0xFF);
|
return etk::Color<>(0xFF, 0xFF, 0xFF, 0xFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual bool getTitle(int32_t _colomn, etk::String& _myTitle, etk::Color<> &_fg, etk::Color<> &_bg) {
|
|
||||||
_myTitle = "";
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the number of colomn and row availlable in the list
|
* @brief Get the number of colomn and row availlable in the list
|
||||||
* @return Number of colomn and row
|
* @return Number of colomn and row
|
||||||
@ -102,7 +98,6 @@ namespace ewol {
|
|||||||
* @return The estimate size of the element.
|
* @return The estimate size of the element.
|
||||||
*/
|
*/
|
||||||
virtual void drawElement(const ivec2& _pos, const vec2& _start, const vec2& _size);
|
virtual void drawElement(const ivec2& _pos, const vec2& _start, const vec2& _size);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Draw the background
|
* @brief Draw the background
|
||||||
*/
|
*/
|
||||||
|
@ -124,11 +124,6 @@ ivec2 ewol::widget::ListFileSystem::getMatrixSize() const {
|
|||||||
return ivec2(1, m_list.size() + offset);
|
return ivec2(1, m_list.size() + offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ewol::widget::ListFileSystem::getTitle(int32_t _colomn, etk::String &_myTitle, etk::Color<>& _fg, etk::Color<>& _bg) {
|
|
||||||
_myTitle = "title";
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
fluorine::Variant ewol::widget::ListFileSystem::getData(int32_t _role, const ivec2& _pos) {
|
fluorine::Variant ewol::widget::ListFileSystem::getData(int32_t _role, const ivec2& _pos) {
|
||||||
switch (_role) {
|
switch (_role) {
|
||||||
case ListRole::Text:
|
case ListRole::Text:
|
||||||
|
@ -44,7 +44,6 @@ namespace ewol {
|
|||||||
int32_t m_colorIdBackgroundSelected; //!< Color of line selected.
|
int32_t m_colorIdBackgroundSelected; //!< Color of line selected.
|
||||||
protected:
|
protected:
|
||||||
etk::Color<> getBasicBG() override;
|
etk::Color<> getBasicBG() override;
|
||||||
bool getTitle(int32_t _colomn, etk::String& _myTitle, etk::Color<>& _fg, etk::Color<>& _bg) override;
|
|
||||||
ivec2 getMatrixSize() const override;
|
ivec2 getMatrixSize() const override;
|
||||||
fluorine::Variant getData(int32_t _role, const ivec2& _pos) override;
|
fluorine::Variant getData(int32_t _role, const ivec2& _pos) override;
|
||||||
bool onItemEvent(int32_t _IdInput, enum gale::key::status _typeEvent, const ivec2& _pos, const vec2& _mousePosition) override;
|
bool onItemEvent(int32_t _IdInput, enum gale::key::status _typeEvent, const ivec2& _pos, const vec2& _mousePosition) override;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user