2013-01-16 13:37:48 -05:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2008-2015 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.
|
|
|
|
*/
|
2013-01-16 13:37:48 -05:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
#ifndef __gtk_ardour_nag_h__
|
|
|
|
#define __gtk_ardour_nag_h__
|
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
|
|
|
#include <gtkmm/label.h>
|
|
|
|
#include <gtkmm/radiobutton.h>
|
|
|
|
#include <gtkmm/buttonbox.h>
|
|
|
|
|
|
|
|
class NagScreen : public ArdourDialog
|
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2008-12-12 09:43:24 -05:00
|
|
|
~NagScreen();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
static NagScreen* maybe_nag (std::string context);
|
|
|
|
void nag ();
|
|
|
|
|
2017-07-01 15:11:14 -04:00
|
|
|
private:
|
2008-12-12 09:43:24 -05:00
|
|
|
NagScreen (std::string context, bool maybe_subscriber);
|
|
|
|
|
|
|
|
Gtk::Label message;
|
|
|
|
Gtk::VButtonBox button_box;
|
|
|
|
Gtk::RadioButtonGroup button_group;
|
|
|
|
Gtk::RadioButton donate_button;
|
|
|
|
Gtk::RadioButton subscribe_button;
|
|
|
|
Gtk::RadioButton existing_button;
|
|
|
|
Gtk::RadioButton next_time_button;
|
|
|
|
Gtk::RadioButton never_again_button;
|
|
|
|
|
|
|
|
void mark_never_again ();
|
|
|
|
void mark_subscriber ();
|
|
|
|
void mark_affirmed_subscriber ();
|
|
|
|
void offer_to_donate ();
|
|
|
|
void offer_to_subscribe ();
|
|
|
|
static bool is_subscribed (bool& really);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_nag_h__ */
|