Files
Upsilon/apps/code/test/toolbox_ion_keys_dummy.cpp
Yaya.Cout f174fbc3f5 [apps/code] Fix Key selector in auto completion
Scenario: Go in the Python editor and type "from ion import *",
          then type "K" and see what happens.
This fix UpsilonNumworks#198
2022-04-15 17:05:19 +02:00

28 lines
456 B
C++

#include "../toolbox_ion_keys.h"
namespace Code {
ToolboxIonKeys::ToolboxIonKeys() :
ViewController(nullptr),
m_view()
{
}
bool ToolboxIonKeys::handleEvent(Ion::Events::Event e) {
return false;
}
ToolboxIonKeys::toolboxIonView::toolboxIonView():
View()
{
}
void ToolboxIonKeys::toolboxIonView::drawRect(KDContext * ctx, KDRect rect) const {
return;
}
View * ToolboxIonKeys::view(){
return &m_view;
}
}