2016-07-10 12:38:36 -04:00
|
|
|
/*
|
2019-08-03 08:34:29 -04:00
|
|
|
* Copyright (C) 2016-2018 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
*
|
|
|
|
* 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.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2016-07-10 12:38:36 -04:00
|
|
|
|
|
|
|
#ifndef __ardour_push2_scale_layout_h__
|
|
|
|
#define __ardour_push2_scale_layout_h__
|
|
|
|
|
2016-09-21 16:25:24 -04:00
|
|
|
#include <vector>
|
|
|
|
|
2016-07-10 12:38:36 -04:00
|
|
|
#include "layout.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Stripable;
|
|
|
|
}
|
|
|
|
|
2016-09-21 16:25:24 -04:00
|
|
|
namespace ArdourCanvas {
|
|
|
|
class Rectangle;
|
|
|
|
}
|
|
|
|
|
2016-07-10 12:38:36 -04:00
|
|
|
namespace ArdourSurface {
|
|
|
|
|
|
|
|
class ScaleLayout : public Push2Layout
|
|
|
|
{
|
|
|
|
public:
|
2016-09-27 15:31:17 -04:00
|
|
|
ScaleLayout (Push2& p, ARDOUR::Session&, std::string const &);
|
2016-07-10 12:38:36 -04:00
|
|
|
~ScaleLayout ();
|
|
|
|
|
2016-09-16 09:39:28 -04:00
|
|
|
void render (ArdourCanvas::Rect const &, Cairo::RefPtr<Cairo::Context>) const;
|
2016-07-10 12:38:36 -04:00
|
|
|
|
2016-09-21 16:25:24 -04:00
|
|
|
void show ();
|
|
|
|
|
2016-07-10 12:38:36 -04:00
|
|
|
void button_upper (uint32_t n);
|
|
|
|
void button_lower (uint32_t n);
|
2016-09-21 16:25:24 -04:00
|
|
|
void button_up ();
|
|
|
|
void button_down ();
|
|
|
|
void button_left ();
|
|
|
|
void button_right ();
|
2016-07-10 12:38:36 -04:00
|
|
|
void strip_vpot (int, int);
|
2016-09-21 16:25:24 -04:00
|
|
|
|
|
|
|
void strip_vpot_touch (int, bool) {}
|
2016-07-10 12:38:36 -04:00
|
|
|
|
|
|
|
private:
|
2016-09-21 16:25:24 -04:00
|
|
|
ArdourCanvas::Rectangle* bg;
|
|
|
|
std::vector<ArdourCanvas::Text*> upper_text;
|
|
|
|
std::vector<ArdourCanvas::Text*> lower_text;
|
|
|
|
ArdourCanvas::Text* left_scroll_text;
|
|
|
|
ArdourCanvas::Text* right_scroll_text;
|
|
|
|
ArdourCanvas::Text* inkey_text;
|
|
|
|
ArdourCanvas::Text* chromatic_text;
|
|
|
|
ArdourCanvas::Text* close_text;
|
2016-07-10 12:38:36 -04:00
|
|
|
Push2Menu* scale_menu;
|
2016-09-21 16:25:24 -04:00
|
|
|
int last_vpot;
|
|
|
|
int vpot_delta_cnt;
|
2018-09-02 13:23:36 -04:00
|
|
|
boost::shared_ptr<Push2::Button> root_button;
|
2016-09-21 16:25:24 -04:00
|
|
|
|
2016-09-16 09:39:28 -04:00
|
|
|
void build_scale_menu ();
|
2016-09-21 16:25:24 -04:00
|
|
|
PBD::ScopedConnectionList menu_connections;
|
|
|
|
PBD::ScopedConnectionList p2_connections;
|
|
|
|
void mode_changed ();
|
|
|
|
void menu_rearranged ();
|
|
|
|
void show_root_state ();
|
|
|
|
void update_cursor_buttons ();
|
2016-07-10 12:38:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace */
|
|
|
|
|
|
|
|
#endif /* __ardour_push2_scale_layout_h__ */
|