add new floating text entry class (ported from Tracks)

This commit is contained in:
Paul Davis 2014-10-31 12:26:57 -04:00
parent 90872c2b31
commit cbb4be908a
3 changed files with 123 additions and 0 deletions

View File

@ -0,0 +1,77 @@
/*
Copyright (C) 2014 Paul Davis
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "floating_text_entry.h"
#include "gtkmm2ext/doi.h"
#include "i18n.h"
FloatingTextEntry::FloatingTextEntry ()
: ArdourWindow ("")
{
set_name (X_("FloatingTextEntry"));
set_position (Gtk::WIN_POS_MOUSE);
set_border_width (0);
entry.show ();
entry.signal_activate().connect (sigc::mem_fun (*this, &FloatingTextEntry::activated));
entry.signal_key_press_event().connect (sigc::mem_fun (*this, &FloatingTextEntry::key_press));
add (entry);
}
void
FloatingTextEntry::on_realize ()
{
ArdourWindow::on_realize ();
get_window()->set_decorations (Gdk::WMDecoration (0));
}
void
FloatingTextEntry::activated ()
{
use_text (entry.get_text()); // EMIT SIGNAL
delete_when_idle (this);
}
bool
FloatingTextEntry::key_press (GdkEventKey* ev)
{
switch (ev->keyval) {
case GDK_Escape:
delete_when_idle (this);
return true;
break;
default:
break;
}
return false;
}
void
FloatingTextEntry::on_hide ()
{
/* No hide button is shown (no decoration on the window),
so being hidden is equivalent to the Escape key or any other
method of cancelling the edit.
*/
delete_when_idle (this);
ArdourWindow::on_hide ();
}

View File

@ -0,0 +1,45 @@
/*
Copyright (C) 2014 Paul Davis
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __floating_text_entry_h__
#define __floating_text_entry_h__
#include <gtkmm/entry.h>
#include "ardour_window.h"
class FloatingTextEntry : public ArdourWindow
{
public:
FloatingTextEntry ();
sigc::signal1<void,std::string> use_text;
private:
Gtk::Entry entry;
bool key_press (GdkEventKey*);
void on_realize ();
void on_hide ();
void activated ();
};
#endif // __ardour_window_h__

View File

@ -98,6 +98,7 @@ gtk2_ardour_sources = [
'fft.cc',
'fft_graph.cc',
'fft_result.cc',
'floating_text_entry.cc',
'sfdb_freesound_mootcher.cc',
'gain_meter.cc',
'generic_pluginui.cc',