mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
remove unused virtual event handlers from PluginUIWindow
This commit is contained in:
parent
12d4c51023
commit
00f94a04cc
2 changed files with 0 additions and 41 deletions
|
|
@ -167,42 +167,6 @@ PluginUIWindow::~PluginUIWindow ()
|
||||||
delete _pluginui;
|
delete _pluginui;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
PluginUIWindow::on_map ()
|
|
||||||
{
|
|
||||||
Window::on_map ();
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
PluginUIWindow::on_enter_notify_event (GdkEventCrossing *ev)
|
|
||||||
{
|
|
||||||
Keyboard::the_keyboard().enter_window (ev, this);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
PluginUIWindow::on_leave_notify_event (GdkEventCrossing *ev)
|
|
||||||
{
|
|
||||||
Keyboard::the_keyboard().leave_window (ev, this);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
PluginUIWindow::on_focus_in_event (GdkEventFocus *ev)
|
|
||||||
{
|
|
||||||
Window::on_focus_in_event (ev);
|
|
||||||
//Keyboard::the_keyboard().magic_widget_grab_focus ();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool
|
|
||||||
PluginUIWindow::on_focus_out_event (GdkEventFocus *ev)
|
|
||||||
{
|
|
||||||
Window::on_focus_out_event (ev);
|
|
||||||
//Keyboard::the_keyboard().magic_widget_drop_focus ();
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
PluginUIWindow::on_show ()
|
PluginUIWindow::on_show ()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -294,15 +294,10 @@ class PluginUIWindow : public ArdourWindow
|
||||||
void set_title(const std::string& title);
|
void set_title(const std::string& title);
|
||||||
|
|
||||||
|
|
||||||
bool on_enter_notify_event (GdkEventCrossing*);
|
|
||||||
bool on_leave_notify_event (GdkEventCrossing*);
|
|
||||||
bool on_focus_in_event (GdkEventFocus*);
|
|
||||||
bool on_focus_out_event (GdkEventFocus*);
|
|
||||||
bool on_key_press_event (GdkEventKey*);
|
bool on_key_press_event (GdkEventKey*);
|
||||||
bool on_key_release_event (GdkEventKey*);
|
bool on_key_release_event (GdkEventKey*);
|
||||||
void on_show ();
|
void on_show ();
|
||||||
void on_hide ();
|
void on_hide ();
|
||||||
void on_map ();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::string _title;
|
std::string _title;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue